paper-icon-theme: 2017-11-20 -> 2018-06-24 (#43419)

This commit is contained in:
rembo10 2018-07-13 03:04:19 +03:00 committed by xeji
parent c78b0efdc0
commit d01a0a53ad

View File

@ -1,30 +1,29 @@
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3 }:
{ stdenv, fetchFromGitHub, meson, ninja, gtk3 }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "paper-icon-theme";
version = "2017-11-20";
version = "2018-06-24";
src = fetchFromGitHub {
owner = "snwh";
repo = pname;
rev = "af0296ecc872ad723fad7dca6e7e89eb85cbb3a8";
sha256 = "18a9zl9lbw9gc3zas49w329xrps4slvkp4nv815nlnmimz8dj85m";
rev = "c7cd013fba06dd8fd5cdff9f885520e2923266b8";
sha256 = "0x45zkjnmbz904df63ph06npbm3phpgck4xwyymx8r8jgrfplk6v";
};
nativeBuildInputs = [ autoreconfHook gtk3 ];
nativeBuildInputs = [ meson ninja gtk3 ];
postFixup = ''
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
postPatch = ''
patchShebangs meson/post_install.py
'';
meta = with stdenv.lib; {
description = "Modern icon theme designed around bold colours and simple geometric shapes";
homepage = https://snwh.org/paper;
license = with licenses; [ cc-by-sa-40 lgpl3 ];
platforms = platforms.all;
# darwin cannot deal with file names differing only in case
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}