19 lines
364 B
Nix
19 lines
364 B
Nix
{
|
|
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 = "";
|
|
})
|