mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
1e663df66c
Meta data like maintainers, license, and homepage is shared throughout the "gnustep" project. Everything going through "gsmakeDerivation" now shares overridable metadata.
39 lines
875 B
Nix
39 lines
875 B
Nix
{ aspell, audiofile
|
|
, gsmakeDerivation
|
|
, cups
|
|
, fetchurl
|
|
, gmp, gnutls
|
|
, libffi
|
|
, libjpeg, libtiff, libpng, giflib, libungif
|
|
, libxml2, libxslt, libiconv
|
|
, libobjc2, libgcrypt
|
|
, icu
|
|
, pkgconfig, portaudio
|
|
}:
|
|
let
|
|
version = "1.24.7";
|
|
in
|
|
gsmakeDerivation {
|
|
name = "gnustep-base-${version}";
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-base-1.24.7.tar.gz";
|
|
sha256 = "0qhphw61ksyzf04a4apmvx8000alws6d92x8ila1mi5bapcpv41s";
|
|
};
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [
|
|
aspell audiofile
|
|
cups
|
|
gmp gnutls
|
|
libffi
|
|
libjpeg libtiff libpng giflib libungif
|
|
libxml2 libxslt libiconv
|
|
libobjc2 libgcrypt
|
|
icu
|
|
portaudio
|
|
];
|
|
patches = [ ./fixup-paths.patch ];
|
|
meta = {
|
|
description = "GNUstep-base is an implementation of AppKit and Foundation libraries of OPENSTEP and Cocoa.";
|
|
};
|
|
}
|