fix(goose): manual overlay of goose-cli to 1.12

This commit is contained in:
Filippo Berto 2025-11-03 17:04:26 +01:00
parent 4b995f072e
commit 98168f28b3
No known key found for this signature in database
GPG key ID: F1D17F9BCEC62FBC

View file

@ -70,6 +70,7 @@
packages = {
inherit
(pkgs)
goose-cli
keyboard-switch
wl-clipedit
wl-lockscreen
@ -153,6 +154,22 @@
libfprint = super.libfprint.overrideAttrs (oldAttrs: {
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 [ ];
});
};
};