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).
This commit is contained in:
Artyom Shalkhakov
2016-08-16 20:59:08 +00:00
committed by Matthew Bauer
parent a28c729766
commit 52d17a5f41
13 changed files with 437 additions and 3 deletions
@@ -0,0 +1,23 @@
{ 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";
};
configureFlags = "--with-layout=fhs-system";
buildInputs = [ clang which libobjc2 ];
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 ];
platforms = stdenv.lib.platforms.all;
};
}