Last active
April 5, 2024 11:37
-
-
Save l0b0/2d67a3758385756353119c511fedc4eb to your computer and use it in GitHub Desktop.
Revisions
-
l0b0 revised this gist
Apr 5, 2024 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -18,11 +18,6 @@ let hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; }) ]; }); }) ]; -
l0b0 created this gist
Apr 5, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ 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="; }) ]; postPatch = oldAttrs.postPatch + '' sed '2i echo Skipping usage vs getopt test && exit 77' -i ./tests/misc/usage_vs_getopt.sh ''; }); }) ]; }; in pkgs.mkShell { packages = [ pkgs.mutmut ]; }