nixpkgs/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix

41 lines
781 B
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, pantheon
, meson
, ninja
}:
2018-08-20 20:31:18 +00:00
stdenv.mkDerivation rec {
pname = "elementary-gtk-theme";
version = "5.2.5";
2018-08-20 20:31:18 +00:00
repoName = "stylesheet";
2018-08-20 20:31:18 +00:00
src = fetchFromGitHub {
owner = "elementary";
repo = repoName;
2018-08-20 20:31:18 +00:00
rev = version;
sha256 = "0934rfdwkn4315mhayzba8a3b6i1xczp66gl6n45hh5c81gb2p65";
2018-08-20 20:31:18 +00:00
};
passthru = {
updateScript = pantheon.updateScript {
inherit repoName;
attrPath = pname;
2018-08-20 20:31:18 +00:00
};
};
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;
};
}