3
0
Fork 0
forked from mirrors/nixpkgs

haskell-hasktags: don't install the "test" binary

Closes https://github.com/NixOS/nixpkgs/pull/18403.
This commit is contained in:
Chris Martin 2016-09-07 16:40:53 -04:00 committed by Peter Simons
parent 51932e3d69
commit e4b146b041

View file

@ -994,4 +994,9 @@ self: super: {
librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.gmp];
});
# https://github.com/MarcWeber/hasktags/issues/32
hasktags = overrideCabal super.hasktags (drv: {
postInstall = "rm $out/bin/test";
});
}