mono-dll-fixer: remove builder.sh

This commit is contained in:
Felix Buehler 2021-11-20 18:00:27 +01:00
parent 2e9e94a32d
commit 9cda0f4f61
2 changed files with 5 additions and 6 deletions

View file

@ -1,4 +0,0 @@
source $stdenv/setup
substitute $dllFixer $out --subst-var-by perl $perl/bin/perl
chmod +x $out

View file

@ -1,8 +1,11 @@
{stdenv, perl}:
stdenv.mkDerivation {
name = "mono-dll-fixer";
builder = ./builder.sh;
dllFixer = ./dll-fixer.pl;
dontUnpack = true;
installPhase = ''
substitute $dllFixer $out --subst-var-by perl $perl/bin/perl
chmod +x $out
'';
inherit perl;
}