2014-12-10 17:28:55 +01:00
|
|
|
{ stdenv, fetchurl
|
2016-06-27 22:32:47 +02:00
|
|
|
, base, back, gsmakeDerivation, gui, gorm
|
2015-01-25 17:34:52 +01:00
|
|
|
, gnumake, gdb
|
2014-12-01 15:59:49 +01:00
|
|
|
}:
|
2014-12-01 11:56:13 +01:00
|
|
|
let
|
|
|
|
version = "0.6.2";
|
|
|
|
in
|
2015-01-25 17:34:52 +01:00
|
|
|
gsmakeDerivation {
|
2014-12-01 11:56:13 +01:00
|
|
|
name = "projectcenter-${version}";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/dev-apps/ProjectCenter-${version}.tar.gz";
|
|
|
|
sha256 = "0wwlbpqf541apw192jb633d634zkpjhcrrkd1j80y9hihphll465";
|
|
|
|
};
|
|
|
|
|
2015-01-25 17:34:52 +01:00
|
|
|
# NOTE: need a patch for ProjectCenter to help it locate some necessary tools:
|
|
|
|
# 1. Framework/PCProjectLauncher.m, locate gdb (say among NIX_GNUSTEP_SYSTEM_TOOLS)
|
|
|
|
# 2. Framework/PCProjectBuilder.m, locate gmake (similar)
|
2016-06-27 22:32:47 +02:00
|
|
|
propagatedBuildInputs = [ base back gui gnumake gdb gorm ];
|
2014-12-01 11:56:13 +01:00
|
|
|
|
|
|
|
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 ];
|
2014-12-10 17:28:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-12-01 11:56:13 +01:00
|
|
|
};
|
2016-06-27 22:32:47 +02:00
|
|
|
}
|