summary refs log tree commit diff
path: root/pkgs/build-support/mono-dll-fixer/default.nix
blob: f7dbeb3c2b07c936882f42cc105e76961c9118fb (plain) (blame)
1
2
3
4
5
6
7
8
{stdenv, perl}:

stdenv.mkDerivation {
  name = "mono-dll-fixer";
  builder = ./builder.sh;
  dllFixer = ./dll-fixer.pl;
  inherit perl;
}