nil: update to newest version

This commit is contained in:
Bloxx12 2025-07-18 23:13:27 +02:00
commit 098f38e9a4
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
2 changed files with 11 additions and 11 deletions

View file

@ -1,17 +1,17 @@
{pkgs, ...}: let {pkgs, ...}: let
# a newer nil version, for pipes support. # a newer nil version, for pipes support.
newer-nil = pkgs.nil.overrideAttrs (_: { new-nil = pkgs.nil.overrideAttrs (_: {
version = "unstable-02-06-2025"; version = "unstable-18-07-2025";
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "oxalica"; owner = "oxalica";
repo = "nil"; repo = "nil";
rev = "577d160da311cc7f5042038456a0713e9863d09e"; rev = "524ae2d67dd84d99a10f409ed6cd8e4e7b3cae3f";
hash = "sha256-ggXU3RHv6NgWw+vc+HO4/9n0GPufhTIUjVuLci8Za8c="; hash = "sha256-Uy2qzd+fMoBcp4NPSO7DavEC1pGMegmAqoEMvmXbIQU=";
}; };
cargoDeps = pkgs.rustPlatform.fetchCargoVendor { cargoDeps = pkgs.rustPlatform.fetchCargoVendor {
inherit (newer-nil) src; inherit (new-nil) src;
hash = "sha256-uZsLlFU9GKLvFllF7Kf5Q7HfN26KQojf4rvOb9p7Rjs="; hash = "sha256-Sljr3ff8hl/qm/0wqc1GXsEr1wWn7NAXmdrd5wHzUX8=";
}; };
}); });
in { in {
@ -95,6 +95,6 @@ in {
xournalpp xournalpp
zathura zathura
; ;
inherit newer-nil; inherit new-nil;
}; };
} }

View file

@ -29,17 +29,17 @@
# a newer nil version, for pipes support. # a newer nil version, for pipes support.
new-nil = nil.overrideAttrs (_: { new-nil = nil.overrideAttrs (_: {
version = "unstable-02-06-2025"; version = "unstable-18-07-2025";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "oxalica"; owner = "oxalica";
repo = "nil"; repo = "nil";
rev = "577d160da311cc7f5042038456a0713e9863d09e"; rev = "524ae2d67dd84d99a10f409ed6cd8e4e7b3cae3f";
hash = "sha256-ggXU3RHv6NgWw+vc+HO4/9n0GPufhTIUjVuLci8Za8c="; hash = "sha256-Uy2qzd+fMoBcp4NPSO7DavEC1pGMegmAqoEMvmXbIQU=";
}; };
cargoDeps = rustPlatform.fetchCargoVendor { cargoDeps = rustPlatform.fetchCargoVendor {
inherit (new-nil) src; inherit (new-nil) src;
hash = "sha256-uZsLlFU9GKLvFllF7Kf5Q7HfN26KQojf4rvOb9p7Rjs="; hash = "sha256-Sljr3ff8hl/qm/0wqc1GXsEr1wWn7NAXmdrd5wHzUX8=";
}; };
}); });