65 lines
1.0 KiB
Nix
65 lines
1.0 KiB
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
fetchFromGitHub,
|
||
|
|
nix-update-script,
|
||
|
|
pkg-config,
|
||
|
|
meson,
|
||
|
|
ninja,
|
||
|
|
sassc,
|
||
|
|
vala,
|
||
|
|
glib,
|
||
|
|
gtk4,
|
||
|
|
libadwaita,
|
||
|
|
libgee,
|
||
|
|
granite7,
|
||
|
|
wrapGAppsHook4,
|
||
|
|
}:
|
||
|
|
|
||
|
|
stdenv.mkDerivation rec {
|
||
|
|
pname = "switchboard";
|
||
|
|
version = "8.0.3";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "elementary";
|
||
|
|
repo = "switchboard";
|
||
|
|
rev = version;
|
||
|
|
hash = "sha256-pVXcY/QSjgBcTr0sFQnPxICoQ0tpy2fEJ687zHEDXA0=";
|
||
|
|
};
|
||
|
|
|
||
|
|
nativeBuildInputs = [
|
||
|
|
meson
|
||
|
|
ninja
|
||
|
|
pkg-config
|
||
|
|
sassc
|
||
|
|
vala
|
||
|
|
wrapGAppsHook4
|
||
|
|
];
|
||
|
|
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
# Required by switchboard-3.pc.
|
||
|
|
glib
|
||
|
|
granite7
|
||
|
|
gtk4
|
||
|
|
libadwaita
|
||
|
|
libgee
|
||
|
|
];
|
||
|
|
|
||
|
|
patches = [
|
||
|
|
./plugs-path-env.patch
|
||
|
|
];
|
||
|
|
|
||
|
|
passthru = {
|
||
|
|
updateScript = nix-update-script { };
|
||
|
|
};
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Extensible System Settings app for Pantheon";
|
||
|
|
homepage = "https://github.com/elementary/switchboard";
|
||
|
|
license = licenses.lgpl21Plus;
|
||
|
|
platforms = platforms.linux;
|
||
|
|
teams = [ teams.pantheon ];
|
||
|
|
mainProgram = "io.elementary.settings";
|
||
|
|
};
|
||
|
|
}
|