fix(goose): manual overlay of goose-cli to 1.12
This commit is contained in:
parent
4b995f072e
commit
98168f28b3
1 changed files with 17 additions and 0 deletions
17
flake.nix
17
flake.nix
|
|
@ -70,6 +70,7 @@
|
||||||
packages = {
|
packages = {
|
||||||
inherit
|
inherit
|
||||||
(pkgs)
|
(pkgs)
|
||||||
|
goose-cli
|
||||||
keyboard-switch
|
keyboard-switch
|
||||||
wl-clipedit
|
wl-clipedit
|
||||||
wl-lockscreen
|
wl-lockscreen
|
||||||
|
|
@ -153,6 +154,22 @@
|
||||||
libfprint = super.libfprint.overrideAttrs (oldAttrs: {
|
libfprint = super.libfprint.overrideAttrs (oldAttrs: {
|
||||||
buildInputs = oldAttrs.buildInputs ++ [ super.nss ];
|
buildInputs = oldAttrs.buildInputs ++ [ super.nss ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
goose-cli = super.goose-cli.overrideAttrs (oldAttrs: rec {
|
||||||
|
version = "1.12.0";
|
||||||
|
name = "${oldAttrs.pname}-${version}";
|
||||||
|
src = oldAttrs.src.override {
|
||||||
|
tag = "v${version}";
|
||||||
|
hash = "sha256-L4bk5gU1rDNEiborsjmGdHOA457zbvw2MDs57+/54Nw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoDeps = super.rustPlatform.fetchCargoVendor {
|
||||||
|
inherit src name;
|
||||||
|
hash = "sha256-+Jd00vNrQYC+B7MoiyM5V/rjM1RwYxQPEywJpUAoSNw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkFlags = oldAttrs.checkFlags or [ ];
|
||||||
|
});
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue