about summary refs log tree commit diff
path: root/pkgs/desktops/gnustep/make/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnustep/make/default.nix')
-rw-r--r--pkgs/desktops/gnustep/make/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/desktops/gnustep/make/default.nix b/pkgs/desktops/gnustep/make/default.nix
new file mode 100644
index 000000000000..43530096b534
--- /dev/null
+++ b/pkgs/desktops/gnustep/make/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, clang, which, libobjc }:
+let
+  version = "2.6.8";
+in
+stdenv.mkDerivation rec {
+  name = "gnustep-make-${version}";
+  src = fetchurl {
+    url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-${version}.tar.gz";
+    sha256 = "0r00439f7vrggdwv60n8p626gnyymhq968i5x9ad2i4v6g8x4gk0";
+  };
+  configureFlags = "--with-installation-domain=SYSTEM";
+  buildInputs = [ clang which libobjc ];
+  patches = [ ./fixup-paths.patch ];
+  setupHook = ./setup-hook.sh;
+  meta = {
+    description = "A build manager for GNUstep";
+
+    homepage = http://gnustep.org/;
+
+    license = stdenv.lib.licenses.lgpl2Plus;
+
+    maintainers = with stdenv.lib.maintainers; [ ashalkhakov matthewbauer ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}