gnustep: move to pkgs/desktops/gnustep

This commit is contained in:
Matthew Bauer
2016-08-16 21:53:45 +00:00
parent 63bd635f80
commit 2e5edbfd99
27 changed files with 1 additions and 1 deletions
@@ -0,0 +1,17 @@
{ back, base, gui, gsmakeDerivation, fetchurl }:
let
version = "1.1.0";
in
gsmakeDerivation {
name = "system_preferences-${version}";
src = fetchurl {
url = "ftp://ftp.gnustep.org/pub/gnustep/usr-apps/SystemPreferences-${version}.tar.gz";
sha256 = "1q68bs8rlq0dxkar01qs5wfyas4iivddnama371jd7ll6cxzmpy7";
};
# GNUSTEP_MAKEFILES = "${gnustep_make}/share/GNUstep/Makefiles";
buildInputs = [ back base gui ];
# propagatedBuildInputs = [ gnustep_back gnustep_base gnustep_gui ];
meta = {
description = "The settings manager for the GNUstep environment and its applications";
};
}