evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / pa / paper-icon-theme / package.nix
blobd502fb0d6f954a4c6d4025509a75f221beadecd6
1 { lib, stdenvNoCC, fetchFromGitHub, meson, ninja, gtk3, adwaita-icon-theme, gnome-icon-theme, hicolor-icon-theme, jdupes }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "paper-icon-theme";
5   version = "unstable-2020-03-12";
7   src = fetchFromGitHub {
8     owner = "snwh";
9     repo = pname;
10     rev = "aa3e8af7a1f0831a51fd7e638a4acb077a1e5188";
11     sha256 = "0x6qzch4rrc8firb1dcf926j93gpqxvd7h6dj5wwczxbvxi5bd77";
12   };
14   nativeBuildInputs = [
15     meson
16     ninja
17     gtk3
18     jdupes
19   ];
21   propagatedBuildInputs = [
22     adwaita-icon-theme
23     gnome-icon-theme
24     hicolor-icon-theme
25   ];
27   dontDropIconThemeCache = true;
29   # These fixup steps are slow and unnecessary for this package
30   dontPatchELF = true;
31   dontRewriteSymlinks = true;
33   postInstall = ''
34     # The cache for Paper-Mono-Dark is missing
35     gtk-update-icon-cache "$out"/share/icons/Paper-Mono-Dark;
37     # replace duplicate files with symlinks
38     jdupes -l -r $out/share/icons
39   '';
41   meta = with lib; {
42     description = "Modern icon theme designed around bold colours and simple geometric shapes";
43     homepage = "https://snwh.org/paper";
44     license = with licenses; [ cc-by-sa-40 lgpl3 ];
45     # darwin cannot deal with file names differing only in case
46     platforms = platforms.linux;
47     maintainers = with maintainers; [ romildo ];
48   };