mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
32 lines
801 B
Nix
32 lines
801 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, make
|
|
, wrapGNUstepAppsHook
|
|
, back
|
|
, base
|
|
, gui
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "system-preferences";
|
|
version = "1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/usr-apps/SystemPreferences-${finalAttrs.version}.tar.gz";
|
|
sha256 = "1fg7c3ihfgvl6n21rd17fs9ivx3l8ps874m80vz86n1callgs339";
|
|
};
|
|
|
|
nativeBuildInputs = [ make wrapGNUstepAppsHook ];
|
|
buildInputs = [ back base gui ];
|
|
|
|
meta = {
|
|
description = "The settings manager for the GNUstep environment and its applications";
|
|
homepage = "https://gnustep.github.io/";
|
|
license = lib.licenses.lgpl2Plus;
|
|
mainProgram = "SystemPreferences";
|
|
maintainers = with lib.maintainers; [ ashalkhakov matthewbauer dblsaiko ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|