nixpkgs/pkgs/development/libraries/gnustep/back/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

24 lines
491 B
Nix

{ gsmakeDerivation
, cairo
, fetchurl
, base, gui
, xlibs
, x11
, freetype
, pkgconfig
}:
let
version = "0.24.0";
in
gsmakeDerivation {
name = "gnustep-back-${version}";
src = fetchurl {
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-0.24.0.tar.gz";
sha256 = "0qixbilkkrqxrhhj9hnp7ygd5gs23b3qbbgk3gaxj73d0xqfvhjz";
};
buildInputs = [ cairo base gui freetype pkgconfig x11 ];
meta = {
description = "GNUstep-back is a generic backend for GNUstep.";
};
}