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