Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 11 lines 244 B view raw
1{ stdenv, perl }: 2stdenv.mkDerivation { 3 name = "mono-dll-fixer"; 4 dllFixer = ./dll-fixer.pl; 5 dontUnpack = true; 6 installPhase = '' 7 substitute $dllFixer $out --subst-var-by perl $perl/bin/perl 8 chmod +x $out 9 ''; 10 inherit perl; 11}