32 lines
800 B
Nix
32 lines
800 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "make-${version}";
|
|
version = "1.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftpmain.gnustep.org/pub/gnustep/core/gnustep-make-2.6.6.tar.gz";
|
|
sha256 = "07cqr8x17bia9w6clbmiv7ay6r9nplrjz2cyzinv4w7zfpc19vxw";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace GNUmakefile.in \
|
|
--replace which type \
|
|
--replace 'tooldir = $(DESTDIR)' 'tooldir = ' \
|
|
--replace 'makedir = $(DESTDIR)' 'makedir = ' \
|
|
--replace 'mandir = $(DESTDIR)' 'mandir = '
|
|
|
|
substituteInPlace FilesystemLayouts/apple \
|
|
--replace /usr/local ""
|
|
'';
|
|
|
|
installFlags = "DESTDIR=$(out)";
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/nix-support
|
|
cat >$out/nix-support/setup-hook <<EOF
|
|
. $out/Library/GNUstep/Makefiles/GNUstep.sh
|
|
EOF
|
|
'';
|
|
}
|