Advertisement
Guest User

Untitled

a guest
Jan 14th, 2021
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. nixpkgs.overlays = [
  2. (self: super: {
  3. nix = super.nix.overrideDerivation (drv: {
  4. patches = (drv.patches or [ ]) ++ [
  5. (super.fetchpatch {
  6. url =
  7. "https://github.com/NixOS/nix/commit/44fd7a05b655315fa0e6156ac33a1c5624460968.patch";
  8. sha256 = "1y0y64yx99660jifbh0jraz3f0ny5vh5633h2bik8d24flqa6mav";
  9. })
  10. ];
  11. });
  12. })
  13. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement