3
0
Fork 0
forked from mirrors/nixpkgs

elementary-gtk-theme: init at 5.1.1

This commit is contained in:
davidak 2017-12-18 01:17:57 +01:00
parent 7becd38cdf
commit bf75e9b57a
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "elementary-gtk-theme-${version}";
version = "5.1.1";
src = fetchFromGitHub {
owner = "elementary";
repo = "stylesheet";
rev = version;
sha256 = "1749byc2lbxmprladn9n7k6jh79r8ffgayjn689gmqsrm6czsmh2";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/share/themes/elementary
cp -r gtk-* plank $out/share/themes/elementary
'';
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.unix;
maintainers = with maintainers; [ davidak ];
};
}

View file

@ -18545,6 +18545,8 @@ with pkgs;
deepin-gtk-theme = callPackage ../misc/themes/deepin { };
elementary-gtk-theme = callPackage ../misc/themes/elementary { };
albatross = callPackage ../misc/themes/albatross { };
gtk_engines = callPackage ../misc/themes/gtk2/gtk-engines { };