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

34 lines
864 B
Nix
Raw Normal View History

2019-05-22 11:03:39 +00:00
{ stdenv, fetchFromGitHub, gdk-pixbuf, gtk_engines, gtk-engine-murrine }:
2018-01-12 14:51:30 +00:00
stdenv.mkDerivation rec {
2019-02-08 20:07:28 +00:00
pname = "plano-theme";
2019-10-10 14:02:57 +00:00
version = "3.34-1";
2018-01-12 14:51:30 +00:00
src = fetchFromGitHub {
owner = "lassekongo83";
2019-02-08 20:07:28 +00:00
repo = pname;
2018-01-12 14:51:30 +00:00
rev = "v${version}";
2019-10-10 14:02:57 +00:00
sha256 = "0fdg4jyc3xv98yg2r6c8rccvbpf8y2l3x79qbpiq6ck9k6d34ycq";
2018-01-12 14:51:30 +00:00
};
2019-05-22 11:03:39 +00:00
buildInputs = [ gdk-pixbuf gtk_engines ];
2018-01-12 14:51:30 +00:00
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
dontBuild = true;
installPhase = ''
install -dm 755 $out/share/themes/Plano
cp -a * $out/share/themes/Plano/
2019-10-10 14:02:57 +00:00
rm $out/share/themes/Plano/{COPYING.LGPL-2.1,LICENSE,README.md}
2018-01-12 14:51:30 +00:00
'';
2018-09-19 14:02:33 +00:00
meta = with stdenv.lib; {
2019-10-10 14:02:57 +00:00
description = "Flat theme for GNOME and Xfce";
2018-01-12 14:51:30 +00:00
homepage = https://github.com/lassekongo83/plano-theme;
2018-09-19 14:02:33 +00:00
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
2018-01-12 14:51:30 +00:00
};
}