nixpkgs/pkgs/misc/themes/plano/default.nix

34 lines
868 B
Nix
Raw Normal View History

2018-01-12 14:51:30 +00:00
{ stdenv, fetchFromGitHub, gdk_pixbuf, gtk_engines, gtk-engine-murrine }:
stdenv.mkDerivation rec {
name = "plano-theme-${version}";
2018-07-29 20:15:14 +01:00
version = "3.28-2";
2018-01-12 14:51:30 +00:00
src = fetchFromGitHub {
owner = "lassekongo83";
repo = "plano-theme";
rev = "v${version}";
2018-07-29 20:15:14 +01:00
sha256 = "1xd8xpd8pxxsx6nqrxv2scm9fy6vig8qyxdydgkzhpscrjg9iq9f";
2018-01-12 14:51:30 +00:00
};
buildInputs = [ gdk_pixbuf gtk_engines ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
dontBuild = true;
installPhase = ''
install -dm 755 $out/share/themes/Plano
cp -a * $out/share/themes/Plano/
2018-07-29 20:15:14 +01:00
rm $out/share/themes/Plano/LICENSE
2018-01-12 14:51:30 +00:00
'';
meta = {
description = "Flat theme for GNOME & Xfce4";
homepage = https://github.com/lassekongo83/plano-theme;
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}