mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
c3974455eb
This should make merge conflicts easier to handle. "gnustep" prefix has been removed to make thing simpler. So "gnustep_make" is now "make" within the gnustep scope.
30 lines
758 B
Nix
30 lines
758 B
Nix
{ gsmakeDerivation
|
|
, fetchurl
|
|
, base
|
|
, stdenv }:
|
|
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.";
|
|
|
|
homepage = http://gnustep.org/;
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ ashalkhakov ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|