mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
e4c43186c4
Most icons themes just copy a bunch of files from the source to the installation directory and therefore work perfectly fine with stdenvNoCC. All themes in pkgs/data/icons that still use stdenv after this change are failing to build with stdenvNoCC.
41 lines
932 B
Nix
41 lines
932 B
Nix
{ lib, stdenvNoCC, fetchFromGitHub, meson, ninja, python3, gtk3, pantheon, gnome-icon-theme, hicolor-icon-theme }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "faba-icon-theme";
|
|
version = "4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moka-project";
|
|
repo = "faba-icon-theme";
|
|
rev = "v${version}";
|
|
sha256 = "0xh6ppr73p76z60ym49b4d0liwdc96w41cc5p07d48hxjsa6qd6n";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
python3
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pantheon.elementary-icon-theme
|
|
gnome-icon-theme
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs meson/post_install.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A sexy and modern icon theme with Tango influences";
|
|
homepage = "https://snwh.org/moka";
|
|
license = with licenses; [ cc-by-sa-40 gpl3 ];
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|