nixpkgs/pkgs/desktops/pantheon/third-party/pantheon-tweaks/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.3 KiB
Nix
Raw Normal View History

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";
version = "1.1.2";
2021-09-18 15:55:46 +02:00
src = fetchFromGitHub {
owner = "pantheon-tweaks";
repo = pname;
rev = version;
sha256 = "sha256-E9YSRfh9bLAHn2y4p3aKwR5NOtexKokLWj3RwtDnLsQ=";
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 = {
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;
};
}