nixpkgs/pkgs/data/icons/faba-icon-theme/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
932 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchFromGitHub, meson, ninja, python3, gtk3, pantheon, gnome-icon-theme, hicolor-icon-theme }:
2016-06-10 13:24:44 +00:00
stdenvNoCC.mkDerivation rec {
2022-03-07 11:37:20 +00:00
pname = "faba-icon-theme";
2018-06-29 15:04:48 +00:00
version = "4.3";
2016-06-10 13:24:44 +00:00
src = fetchFromGitHub {
owner = "moka-project";
2022-03-07 11:37:20 +00:00
repo = "faba-icon-theme";
2018-06-29 15:04:48 +00:00
rev = "v${version}";
sha256 = "0xh6ppr73p76z60ym49b4d0liwdc96w41cc5p07d48hxjsa6qd6n";
2016-06-10 13:24:44 +00:00
};
nativeBuildInputs = [
meson
ninja
python3
gtk3
];
2016-06-10 13:24:44 +00:00
propagatedBuildInputs = [
pantheon.elementary-icon-theme
gnome-icon-theme
hicolor-icon-theme
];
dontDropIconThemeCache = true;
2016-06-10 13:24:44 +00:00
postPatch = ''
2018-06-29 15:04:48 +00:00
patchShebangs meson/post_install.py
2016-06-10 13:24:44 +00:00
'';
meta = with lib; {
2016-06-10 13:24:44 +00:00
description = "A sexy and modern icon theme with Tango influences";
homepage = "https://snwh.org/moka";
2016-06-10 13:24:44 +00:00
license = with licenses; [ cc-by-sa-40 gpl3 ];
platforms = platforms.all;
maintainers = with maintainers; [ romildo ];
};
}