2016-06-29 21:05:48 +01:00
|
|
|
{ back, base, gui, gsmakeDerivation, fetchurl }:
|
2014-12-12 16:58:21 +00:00
|
|
|
let
|
|
|
|
version = "1.1.0";
|
|
|
|
in
|
2015-01-25 16:34:52 +00:00
|
|
|
gsmakeDerivation {
|
2014-12-12 16:58:21 +00:00
|
|
|
name = "system_preferences-${version}";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/usr-apps/SystemPreferences-${version}.tar.gz";
|
|
|
|
sha256 = "1q68bs8rlq0dxkar01qs5wfyas4iivddnama371jd7ll6cxzmpy7";
|
|
|
|
};
|
2015-01-25 16:34:52 +00:00
|
|
|
# GNUSTEP_MAKEFILES = "${gnustep_make}/share/GNUstep/Makefiles";
|
2016-06-27 21:32:47 +01:00
|
|
|
buildInputs = [ back base gui ];
|
2015-01-25 16:34:52 +00:00
|
|
|
# propagatedBuildInputs = [ gnustep_back gnustep_base gnustep_gui ];
|
2014-12-12 16:58:21 +00:00
|
|
|
meta = {
|
2016-07-11 21:00:49 +01:00
|
|
|
description = "The settings manager for the GNUstep environment and its applications";
|
2014-12-12 16:58:21 +00:00
|
|
|
};
|
|
|
|
}
|