nixpkgs/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix
worldofpeace dc18433b69 pantheon.elementary-gtk-theme: 5.4.0 -> 5.4.1
* Improve contrast in text selections https://github.com/elementary/stylesheet/pull/572
* Add border and background to selected image radios https://github.com/elementary/stylesheet/pull/576
2020-01-21 16:11:39 -05:00

42 lines
793 B
Nix

{ stdenv
, fetchFromGitHub
, pantheon
, meson
, ninja
, gettext
}:
stdenv.mkDerivation rec {
pname = "elementary-gtk-theme";
version = "5.4.1";
repoName = "stylesheet";
src = fetchFromGitHub {
owner = "elementary";
repo = repoName;
rev = version;
sha256 = "0fnh08wqlhvigkxp69xkdha19ny9j0hg4ycwhhwvyr0d0z47kilw";
};
passthru = {
updateScript = pantheon.updateScript {
attrPath = "pantheon.${pname}";
};
};
nativeBuildInputs = [
gettext
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;
};
}