2014-12-01 10:56:13 +00:00
|
|
|
{ stdenv, fetchurl, clang, which, libobjc2 }:
|
|
|
|
let
|
|
|
|
version = "2.6.6";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gnustep-make-${version}";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-2.6.6.tar.gz";
|
|
|
|
sha256 = "07cqr8x17bia9w6clbmiv7ay6r9nplrjz2cyzinv4w7zfpc19vxw";
|
|
|
|
};
|
2014-12-07 16:52:03 +00:00
|
|
|
configureFlags = "--with-installation-domain=SYSTEM";
|
2014-12-01 10:56:13 +00:00
|
|
|
buildInputs = [ clang which libobjc2 ];
|
2014-12-10 16:28:55 +00:00
|
|
|
patches = [ ./gs-makefiles-additional.patch ];
|
|
|
|
setupHook = ./setup-hook.sh;
|
2014-12-01 10:56:13 +00:00
|
|
|
meta = {
|
|
|
|
description = "GNUstep-make is a build manager for GNUstep.";
|
|
|
|
|
|
|
|
homepage = http://gnustep.org/;
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ ashalkhakov ];
|
2014-12-07 16:52:03 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-12-01 10:56:13 +00:00
|
|
|
};
|
|
|
|
}
|