A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #191 from zhaofengli/fix-static

flake/packages: Update patch for static builds

authored by

Zhaofeng Li and committed by
GitHub
d0b66cf8 48c8b395

+4 -4
+4 -4
flake/packages.nix
··· 125 125 packages = { 126 126 # TODO: Make this work with Crane 127 127 attic-static = (pkgs.pkgsStatic.callPackage ../package.nix { 128 - nix = pkgs.pkgsStatic.nix.overrideAttrs (old: { 128 + nix = pkgs.pkgsStatic.nixVersions.nix_2_18.overrideAttrs (old: { 129 129 patches = (old.patches or []) ++ [ 130 - # To be submitted 130 + # Diff: https://github.com/zhaofengli/nix/compare/501a805fcd4a90e2bc112e9547417cfc4e04ca66...1dbe9899a8acb695f5f08197f1ff51c14bcc7f42 131 131 (pkgs.fetchpatch { 132 - url = "https://github.com/NixOS/nix/compare/3172c51baff5c81362fcdafa2e28773c2949c660...6b09a02536d5946458b537dfc36b7d268c9ce823.diff"; 133 - hash = "sha256-LFLq++J2XitEWQ0o57ihuuUlYk2PgUr11h7mMMAEe3c="; 132 + url = "https://github.com/zhaofengli/nix/compare/501a805fcd4a90e2bc112e9547417cfc4e04ca66...1dbe9899a8acb695f5f08197f1ff51c14bcc7f42.diff"; 133 + hash = "sha256-bxBZDUUNTBUz6F4pwxx1ZnPcOKG3EhV+kDBt8BrFh6k="; 134 134 }) 135 135 ]; 136 136 });