nixpkgs/pkgs/development/libraries/gnustep/gui/default.nix
Matthew Bauer 1e663df66c gnustep: provide default meta
Meta data like maintainers, license, and homepage is shared throughout the
"gnustep" project. Everything going through "gsmakeDerivation" now
shares overridable metadata.
2016-08-16 21:11:05 +00:00

19 lines
551 B
Nix

{ gsmakeDerivation, fetchurl, base }:
let
version = "0.24.0";
in
gsmakeDerivation {
name = "gnustep-gui-${version}";
src = fetchurl {
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-gui-0.24.0.tar.gz";
sha256 = "0d6jzfcyacxjzrr2p398ysvs1akv1fcmngfzxxbfxa947miydjxg";
};
buildInputs = [ base ];
# propagatedBuildInputs = [ gnustep_base ];
# patches = [ ./fixup-gui-makefile-installdir.patch ];
# DEBUG!
patches = [ ./fixup-all.patch ];
meta = {
description = "GNUstep-gui is a GUI class library of GNUstep.";
};
}