Skip to content

Instantly share code, notes, and snippets.

@l0b0
Last active April 5, 2024 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save l0b0/2d67a3758385756353119c511fedc4eb to your computer and use it in GitHub Desktop.
Save l0b0/2d67a3758385756353119c511fedc4eb to your computer and use it in GitHub Desktop.
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