alqages/packages/amadaluzian-niri/default.nix

20 lines
364 B
Nix
Raw Normal View History

{
niri,
fetchFromGitHub,
...
}:
niri.overrideAttrs (finalAttrs: {
src = fetchFromGitHub {
owner = "YaLTeR";
repo = "niri";
rev = "master";
hash = "sha256-BVTlrmelSAq+rlxwlRvsyZxHrmcviRu3aHJYG37Yq8c=";
};
patches =
(finalAttrs.patches or [])
++ [
./0001-ipc-_-90-180-270-Normal-90-180-270.patch
];
cargoHash = "";
})