1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

plano-theme: 3.34-2 -> 3.36-1

- Update to version 3.36-1
- Build with meson
This commit is contained in:
José Romildo Malaquias 2020-05-24 14:04:07 -03:00
parent 5f1c96b12f
commit 76d707ff21

View file

@ -1,22 +1,31 @@
{ stdenv
, fetchFromGitHub
, meson
, ninja
, gdk-pixbuf
, gtk_engines
, gtk-engine-murrine
, librsvg
, sassc
}:
stdenv.mkDerivation rec {
pname = "plano-theme";
version = "3.34-2";
version = "3.36-1";
src = fetchFromGitHub {
owner = "lassekongo83";
repo = pname;
rev = "v${version}";
sha256 = "0spbyvzb47vyfhcn3gr0z1gdb5xrprynm6442y1z32znai2bgpnd";
sha256 = "1rngn5a7hwjqpznbg5kvgs237d2q1anywg37k1cz153ipa96snrv";
};
nativeBuildInputs = [
meson
ninja
sassc
];
buildInputs = [
gdk-pixbuf
gtk_engines
@ -27,14 +36,6 @@ stdenv.mkDerivation rec {
gtk-engine-murrine
];
dontBuild = true;
installPhase = ''
install -dm 755 $out/share/themes/Plano
cp -a * $out/share/themes/Plano/
rm $out/share/themes/Plano/{LICENSE,README.md}
'';
meta = with stdenv.lib; {
description = "Flat theme for GNOME and Xfce";
homepage = "https://github.com/lassekongo83/plano-theme";