nixpkgs/pkgs/desktops/gnustep/base/default.nix
Ivan Jager 8f525e7621 gnustep.base: Add explicit dependency on libbfd
Before beb063a, binutils included a libbfd install, which
is now being removed in postFixup
beb063a103 (diff-c59ce5deea2f4002004fffdb11c5ed57R131)

Fixes #52283
2018-12-17 16:17:00 -06:00

39 lines
875 B
Nix

{ aspell, audiofile
, gsmakeDerivation
, cups
, fetchurl
, gmp, gnutls
, libffi, libbfd
, libjpeg, libtiff, libpng, giflib, libungif
, libxml2, libxslt, libiconv
, libobjc, libgcrypt
, icu
, pkgconfig, portaudio
}:
let
version = "1.25.1";
in
gsmakeDerivation {
name = "gnustep-base-${version}";
src = fetchurl {
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-base-${version}.tar.gz";
sha256 = "17mnilg28by74wc08nkwp6gi06x3j2nrcf05wg64nrw5ljffp2zj";
};
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [
aspell audiofile
cups
gmp gnutls
libffi libbfd
libjpeg libtiff libpng giflib libungif
libxml2 libxslt libiconv
libobjc libgcrypt
icu
portaudio
];
patches = [ ./fixup-paths.patch ];
meta = {
description = "An implementation of AppKit and Foundation libraries of OPENSTEP and Cocoa";
};
}