2015-01-25 17:34:52 +01:00
|
|
|
{ gnustep_back, gnustep_base, gnustep_gui, gsmakeDerivation
|
2014-12-12 17:58:21 +01:00
|
|
|
, fetchurl
|
|
|
|
, stdenv
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
version = "1.1.0";
|
|
|
|
in
|
2015-01-25 17:34:52 +01:00
|
|
|
gsmakeDerivation {
|
2014-12-12 17:58:21 +01: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 17:34:52 +01:00
|
|
|
# GNUSTEP_MAKEFILES = "${gnustep_make}/share/GNUstep/Makefiles";
|
|
|
|
buildInputs = [ gnustep_back gnustep_base gnustep_gui ];
|
|
|
|
# propagatedBuildInputs = [ gnustep_back gnustep_base gnustep_gui ];
|
2014-12-12 17:58:21 +01:00
|
|
|
meta = {
|
|
|
|
description = "System Preferences allows to manage the settings of many aspects of the GNUstep environment and its applications";
|
|
|
|
|
|
|
|
homepage = http://www.gnustep.org/experience/systempreferences.html;
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ ashalkhakov ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|