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}