2021-09-18 15:55:46 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nix-update-script
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
|
|
|
, python3
|
|
|
|
, vala
|
|
|
|
, gtk3
|
|
|
|
, libgee
|
|
|
|
, pantheon
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pantheon-tweaks";
|
2023-10-26 17:48:55 +02:00
|
|
|
version = "1.1.1";
|
2021-09-18 15:55:46 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pantheon-tweaks";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-10-26 17:48:55 +02:00
|
|
|
sha256 = "sha256-KYnrQnh/Zz3EjMAqasdk2CZMXzw15txKtPm/K5+FzhI=";
|
2021-09-18 15:55:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./fix-paths.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
python3
|
|
|
|
vala
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
libgee
|
2021-11-03 02:40:04 +01:00
|
|
|
] ++ (with pantheon; [
|
|
|
|
elementary-files # settings schemas
|
|
|
|
elementary-terminal # settings schemas
|
|
|
|
granite
|
|
|
|
switchboard
|
|
|
|
]);
|
2021-09-18 15:55:46 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
2022-12-25 23:11:14 +01:00
|
|
|
updateScript = nix-update-script { };
|
2021-09-18 15:55:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Unofficial system settings panel for Pantheon";
|
|
|
|
longDescription = ''
|
|
|
|
Unofficial system settings panel for Pantheon
|
|
|
|
that lets you easily and safely customise your desktop's appearance.
|
|
|
|
Use programs.pantheon-tweaks.enable to add this to your switchboard.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/pantheon-tweaks/pantheon-tweaks";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = teams.pantheon.members;
|
|
|
|
};
|
|
|
|
}
|