mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
dc18433b69
* 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
42 lines
793 B
Nix
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;
|
|
};
|
|
}
|