forked from mirrors/nixpkgs
046f4d5220
It is not necessary to set this separately. Addressing the formatting now to minimize the Pantheon 7 update PR diff.
43 lines
794 B
Nix
43 lines
794 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, meson
|
|
, ninja
|
|
, gettext
|
|
, sassc
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-gtk-theme";
|
|
version = "6.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "stylesheet";
|
|
rev = version;
|
|
sha256 = "sha256-gciBn5MQ5Cu+dROL5kCt2GCbNA7W4HOWXyjMBd4OP+8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
meson
|
|
ninja
|
|
sassc
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = "pantheon.${pname}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GTK theme designed to be smooth, attractive, fast, and usable";
|
|
homepage = "https://github.com/elementary/stylesheet";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.pantheon.members;
|
|
};
|
|
}
|