forked from mirrors/nixpkgs
36 lines
798 B
Nix
36 lines
798 B
Nix
{ stdenv, fetchFromGitHub, pantheon, meson, ninja }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stylesheet";
|
|
version = "5.2.3";
|
|
|
|
name = "elementary-gtk-theme-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1ghb6zl9yszsrxdkg8va1b29kyazbny2kncr9fdw6v2rbjnp7zhr";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = pantheon.updateScript {
|
|
repoName = pname;
|
|
attrPath = "elementary-gtk-theme";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
meta = with stdenv.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 = pantheon.maintainers;
|
|
};
|
|
}
|