evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fa / faba-mono-icons / package.nix
blobefd91a5f53fdaa86eb5f118f8f90867ca96af422
1 { lib, stdenvNoCC, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme, faba-icon-theme, gnome-icon-theme, hicolor-icon-theme }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "faba-mono-icons";
5   version = "2016-04-30";
7   src = fetchFromGitHub {
8     owner = "snwh";
9     repo = pname;
10     rev = "2006c5281eb988c799068734f289a85443800cda";
11     sha256 = "0nisfl92y6hrbakp9qxi0ygayl6avkzrhwirg6854bwqjy2dvjv9";
12   };
14   nativeBuildInputs = [
15     autoreconfHook
16     gtk3
17   ];
19   propagatedBuildInputs = [
20     moka-icon-theme
21     faba-icon-theme
22     gnome-icon-theme
23     hicolor-icon-theme
24   ];
26   dontDropIconThemeCache = true;
28   postInstall = ''
29     for theme in $out/share/icons/*; do
30       gtk-update-icon-cache $theme
31     done
32   '';
34   meta = with lib; {
35     description = "Full set of Faba monochrome panel icons";
36     homepage = "https://snwh.org/moka";
37     license = licenses.gpl3;
38     # moka-icon-theme dependency is restricted to linux
39     platforms = platforms.linux;
40     maintainers = with maintainers; [ romildo ];
41   };