summary refs log tree commit diff
path: root/pkgs/applications/editors/projectcenter/default.nix
diff options
context:
space:
mode:
authorArtyom Shalkhakov <artyom.shalkhakov@gmail.com>2014-12-01 16:56:13 +0600
committerMatthew Bauer <mjbauer95@gmail.com>2016-08-16 20:59:08 +0000
commit52d17a5f41e70a1774681c6afb13ac41431674b8 (patch)
tree29edb832bd695db21ae5d9d8fb7c694ab059261e /pkgs/applications/editors/projectcenter/default.nix
parenta28c729766b1ed47e62b8c43b5d87a52c5b78922 (diff)
downloadnixpkgs-52d17a5f41e70a1774681c6afb13ac41431674b8.tar
nixpkgs-52d17a5f41e70a1774681c6afb13ac41431674b8.tar.gz
nixpkgs-52d17a5f41e70a1774681c6afb13ac41431674b8.tar.bz2
nixpkgs-52d17a5f41e70a1774681c6afb13ac41431674b8.tar.lz
nixpkgs-52d17a5f41e70a1774681c6afb13ac41431674b8.tar.xz
nixpkgs-52d17a5f41e70a1774681c6afb13ac41431674b8.tar.zst
nixpkgs-52d17a5f41e70a1774681c6afb13ac41431674b8.zip
gnustep: packageg libs separately
Packing gnustep libs separately, with no use of gnustep-startup. Also,
fixed a bug in WindowMaker package (some imaging dependencies were not supplied).
Diffstat (limited to 'pkgs/applications/editors/projectcenter/default.nix')
-rw-r--r--pkgs/applications/editors/projectcenter/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/editors/projectcenter/default.nix b/pkgs/applications/editors/projectcenter/default.nix
new file mode 100644
index 00000000000..2b403dffc70
--- /dev/null
+++ b/pkgs/applications/editors/projectcenter/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, gnustep_startup }:
+
+let
+  version = "0.6.2";
+in
+stdenv.mkDerivation rec {
+  name = "projectcenter-${version}";
+  src = fetchurl {
+    url = "ftp://ftp.gnustep.org/pub/gnustep/dev-apps/ProjectCenter-${version}.tar.gz";
+    sha256 = "0wwlbpqf541apw192jb633d634zkpjhcrrkd1j80y9hihphll465";
+  };
+  
+  buildInputs = [ gnustep_startup ];
+
+  buildPhase = ''
+    . $gnustep_startup/GNUstep/System/Library/Makefiles/GNUstep.sh
+    make
+  '';
+  
+  meta = {
+    description = "ProjectCenter is GNUstep's integrated development environment (IDE) and allows a rapid development and easy managment of ProjectCenter running on GNUstep applications, tools and frameworks.";
+
+    homepage = http://www.gnustep.org/experience/ProjectCenter.html;
+
+    license = stdenv.lib.licenses.lgpl2Plus;
+  
+    maintainers = with stdenv.lib.maintainers; [ ashalkhakov ];
+    platforms = stdenv.lib.platforms.all;
+    broken = true;
+  };
+}
\ No newline at end of file