2021-11-14 13:49:57 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, meson, ninja, gtk3, gnome, gnome-icon-theme, hicolor-icon-theme, jdupes }:
|
2016-05-22 14:41:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-24 11:42:09 +00:00
|
|
|
pname = "paper-icon-theme";
|
2021-11-14 13:28:03 +00:00
|
|
|
version = "unstable-2020-03-12";
|
2016-05-22 14:41:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "snwh";
|
2018-02-24 11:42:09 +00:00
|
|
|
repo = pname;
|
2021-11-14 13:28:03 +00:00
|
|
|
rev = "aa3e8af7a1f0831a51fd7e638a4acb077a1e5188";
|
|
|
|
sha256 = "0x6qzch4rrc8firb1dcf926j93gpqxvd7h6dj5wwczxbvxi5bd77";
|
2016-05-22 14:41:15 +01:00
|
|
|
};
|
|
|
|
|
2020-04-18 00:53:19 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
gtk3
|
2021-11-14 13:49:57 +00:00
|
|
|
jdupes
|
2020-04-18 00:53:19 +01:00
|
|
|
];
|
2018-02-24 11:42:09 +00:00
|
|
|
|
2019-09-12 15:47:48 +01:00
|
|
|
propagatedBuildInputs = [
|
2021-05-07 22:18:14 +01:00
|
|
|
gnome.adwaita-icon-theme
|
2020-04-18 00:53:19 +01:00
|
|
|
gnome-icon-theme
|
2019-09-12 15:47:48 +01:00
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2021-11-14 13:49:57 +00:00
|
|
|
# These fixup steps are slow and unnecessary for this package
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontRewriteSymlinks = true;
|
|
|
|
|
2018-10-02 22:42:18 +01:00
|
|
|
postInstall = ''
|
|
|
|
# The cache for Paper-Mono-Dark is missing
|
|
|
|
gtk-update-icon-cache "$out"/share/icons/Paper-Mono-Dark;
|
2021-11-14 13:49:57 +00:00
|
|
|
|
|
|
|
# replace duplicate files with symlinks
|
|
|
|
jdupes -l -r $out/share/icons
|
2018-10-02 22:42:18 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-05-22 14:41:15 +01:00
|
|
|
description = "Modern icon theme designed around bold colours and simple geometric shapes";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://snwh.org/paper";
|
2016-05-22 14:41:15 +01:00
|
|
|
license = with licenses; [ cc-by-sa-40 lgpl3 ];
|
2018-07-13 01:04:19 +01:00
|
|
|
# darwin cannot deal with file names differing only in case
|
|
|
|
platforms = platforms.linux;
|
2016-05-22 14:41:15 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|