2023-03-24 13:07:56 +00:00
|
|
|
{ lib, fetchFromGitHub
|
2016-06-27 20:32:47 +00:00
|
|
|
, base, back, gsmakeDerivation, gui, gorm
|
2015-01-25 16:34:52 +00:00
|
|
|
, gnumake, gdb
|
2014-12-01 14:59:49 +00:00
|
|
|
}:
|
2014-12-01 10:56:13 +00:00
|
|
|
let
|
2023-03-24 13:07:56 +00:00
|
|
|
version = "0.7.0";
|
2014-12-01 10:56:13 +00:00
|
|
|
in
|
2015-01-25 16:34:52 +00:00
|
|
|
gsmakeDerivation {
|
2023-03-24 13:07:56 +00:00
|
|
|
pname = "projectcenter";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gnustep";
|
|
|
|
repo = "apps-projectcenter";
|
|
|
|
rev = "projectcenter-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
|
|
hash = "sha256-uXT2UUvMZNc6Fqi2BUXQimbZk8b3IqXzB+A2btBOmms=";
|
2014-12-01 10:56:13 +00:00
|
|
|
};
|
|
|
|
|
2015-01-25 16:34:52 +00: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 20:32:47 +00:00
|
|
|
propagatedBuildInputs = [ base back gui gnumake gdb gorm ];
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2014-12-01 10:56:13 +00:00
|
|
|
meta = {
|
2016-07-11 20:00:49 +00:00
|
|
|
description = "GNUstep's integrated development environment";
|
2014-12-01 10:56:13 +00:00
|
|
|
};
|
2016-06-27 20:32:47 +00:00
|
|
|
}
|