28 lines
943 B
Nix
28 lines
943 B
Nix
|
{ gnustep_back, gnustep_base, gnustep_gui, gnustep_make
|
||
|
, fetchurl
|
||
|
, stdenv
|
||
|
}:
|
||
|
let
|
||
|
version = "1.1.0";
|
||
|
in
|
||
|
stdenv.mkDerivation {
|
||
|
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 = [ gnustep_back gnustep_base gnustep_make gnustep_gui ];
|
||
|
propagatedBuildInputs = [ gnustep_back gnustep_base gnustep_gui ];
|
||
|
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;
|
||
|
};
|
||
|
}
|