Last active
April 5, 2024 11:37
-
-
Save l0b0/2d67a3758385756353119c511fedc4eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
pkgs = | |
import ( | |
builtins.fetchTarball { | |
url = "https://github.com/nixos/nixpkgs/archive/d934204a0f8d9198e1e4515dd6fec76a139c87f0.tar.gz"; | |
sha256 = "1zfby2jsfkag275aibp81bx1g1cc305qbcy94gqw0g6zki70k1lx"; | |
} | |
) { | |
overlays = [ | |
(final: prev: { | |
pony = prev.pony.overrideAttrs (oldAttrs: { | |
patches = | |
oldAttrs.patches | |
or [] | |
++ [ | |
(final.fetchpatch { | |
url = "https://patch-diff.githubusercontent.com/raw/nixos/nixpkgs/pull/290383.patch"; | |
hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; | |
}) | |
]; | |
}); | |
}) | |
]; | |
}; | |
in | |
pkgs.mkShell { | |
packages = [ | |
pkgs.mutmut | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment