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

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