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 { stdenv
, fetchFromGitHub , fetchFromGitHub
, meson
, ninja
, gdk-pixbuf , gdk-pixbuf
, gtk_engines , gtk_engines
, gtk-engine-murrine , gtk-engine-murrine
, librsvg , librsvg
, sassc
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "plano-theme"; pname = "plano-theme";
version = "3.34-2"; version = "3.36-1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lassekongo83"; owner = "lassekongo83";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0spbyvzb47vyfhcn3gr0z1gdb5xrprynm6442y1z32znai2bgpnd"; sha256 = "1rngn5a7hwjqpznbg5kvgs237d2q1anywg37k1cz153ipa96snrv";
}; };
nativeBuildInputs = [
meson
ninja
sassc
];
buildInputs = [ buildInputs = [
gdk-pixbuf gdk-pixbuf
gtk_engines gtk_engines
@ -27,14 +36,6 @@ stdenv.mkDerivation rec {
gtk-engine-murrine 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; { meta = with stdenv.lib; {
description = "Flat theme for GNOME and Xfce"; description = "Flat theme for GNOME and Xfce";
homepage = "https://github.com/lassekongo83/plano-theme"; homepage = "https://github.com/lassekongo83/plano-theme";