Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ back, base, gui, gsmakeDerivation, fetchurl }:
2let
3 version = "1.2.0";
4in
5gsmakeDerivation {
6 name = "system_preferences-${version}";
7 src = fetchurl {
8 url = "ftp://ftp.gnustep.org/pub/gnustep/usr-apps/SystemPreferences-${version}.tar.gz";
9 sha256 = "1fg7c3ihfgvl6n21rd17fs9ivx3l8ps874m80vz86n1callgs339";
10 };
11# GNUSTEP_MAKEFILES = "${gnustep_make}/share/GNUstep/Makefiles";
12 buildInputs = [ back base gui ];
13# propagatedBuildInputs = [ gnustep_back gnustep_base gnustep_gui ];
14 meta = {
15 description = "The settings manager for the GNUstep environment and its applications";
16 };
17}