feat(nix): use nixpkgs master version for zathura

This commit is contained in:
Price Hiller 2024-09-05 10:57:43 -05:00
parent 81296b3234
commit fe008d81cf
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,7 @@
nix.url = "github:nixos/nix";
deploy-rs.url = "github:serokell/deploy-rs";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-master.url = "github:nixos/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
bob = {
flake = false;

View File

@ -9,6 +9,9 @@
wrapProgram $out/bin/lxappearance --prefix GDK_BACKEND : x11
'';
});
# TODO: Remove this when Zathura's update for 0.5.8 hits nixpkgs-unstable,
# see status of https://nixpk.gs/pr-tracker.html?pr=337383
zathura = inputs.nixpkgs-master.legacyPackages.${final.system}.pkgs.zathura;
wezterm = inputs.wezterm.packages.${final.system}.default;
opensnitch-ui = prev.opensnitch-ui.overrideAttrs (oldAttrs: {
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ prev.python311Packages.qt-material ];