2014-12-01 10:56:13 +00:00
|
|
|
{ aspell, audiofile
|
2014-12-10 16:28:55 +00:00
|
|
|
, gnustep_make
|
2014-12-01 10:56:13 +00:00
|
|
|
, clang, cups
|
|
|
|
, fetchurl
|
2014-12-08 16:25:47 +00:00
|
|
|
, gmp, gnutls
|
2014-12-01 10:56:13 +00:00
|
|
|
, libffi
|
|
|
|
, libjpeg, libtiff, libpng, giflib, libungif
|
|
|
|
, libxml2, libxslt, libiconv
|
|
|
|
, libobjc2, libgcrypt
|
|
|
|
, icu
|
|
|
|
, pkgconfig, portaudio
|
|
|
|
, stdenv
|
|
|
|
, which
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
version = "1.24.7";
|
|
|
|
in
|
2014-12-10 16:28:55 +00:00
|
|
|
stdenv.mkDerivation {
|
2014-12-01 10:56:13 +00:00
|
|
|
name = "gnustep-base-${version}";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-base-1.24.7.tar.gz";
|
|
|
|
sha256 = "0qhphw61ksyzf04a4apmvx8000alws6d92x8ila1mi5bapcpv41s";
|
|
|
|
};
|
|
|
|
buildInputs = [
|
|
|
|
aspell audiofile
|
|
|
|
clang cups
|
2014-12-10 16:28:55 +00:00
|
|
|
gmp gnustep_make gnutls
|
2014-12-01 10:56:13 +00:00
|
|
|
libffi
|
|
|
|
libjpeg libtiff libpng giflib libungif
|
|
|
|
libxml2 libxslt libiconv
|
|
|
|
libobjc2 libgcrypt
|
|
|
|
icu
|
|
|
|
pkgconfig portaudio
|
|
|
|
which
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
aspell audiofile
|
|
|
|
cups
|
|
|
|
gmp gnutls
|
|
|
|
libffi
|
|
|
|
libjpeg libtiff libpng giflib libungif
|
|
|
|
libxml2 libxslt libiconv
|
|
|
|
libobjc2 libgcrypt
|
|
|
|
icu
|
|
|
|
portaudio
|
|
|
|
];
|
|
|
|
patches = [ ./fixup-base-makefile-installdir.patch ];
|
|
|
|
meta = {
|
|
|
|
description = "GNUstep-base is an implementation of AppKit and Foundation libraries of OPENSTEP and Cocoa.";
|
|
|
|
|
|
|
|
homepage = http://gnustep.org/;
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ ashalkhakov ];
|
2014-12-07 16:52:03 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-12-01 10:56:13 +00:00
|
|
|
};
|
|
|
|
}
|