{ aspell, audiofile , gnustep_builder , clang, cups , fetchurl , gmp, gnustep_make, gnutls , libffi , libjpeg, libtiff, libpng, giflib, libungif , libxml2, libxslt, libiconv , libobjc2, libgcrypt , icu , pkgconfig, portaudio , stdenv , which }: let version = "1.24.7"; in gnustep_builder.mkDerivation { 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 gmp gnutls 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 ]; deps = [ gnustep_make ]; 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 ]; platforms = stdenv.lib.platforms.linux; }; }