Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ lib, stdenvNoCC, fetchFromGitHub, gtk3, breeze-icons, pantheon, gnome-icon-theme, hicolor-icon-theme }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "flat-remix-icon-theme";
|
|
version = "20240201";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "daniruiz";
|
|
repo = "flat-remix";
|
|
rev = version;
|
|
sha256 = "sha256-3TkBRgoT2AW0Sb0CrXdxh53/jYARAMFC/TIj/r/zruo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
breeze-icons
|
|
pantheon.elementary-icon-theme
|
|
gnome-icon-theme
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontFixup = true;
|
|
dontDropIconThemeCache = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/icons
|
|
mv Flat-Remix* $out/share/icons/
|
|
|
|
for theme in $out/share/icons/*; do
|
|
gtk-update-icon-cache $theme
|
|
done
|
|
symlinkParentIconThemes
|
|
recordPropagatedDependencies
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Flat remix is a pretty simple icon theme inspired on material design";
|
|
homepage = "https://drasite.com/flat-remix";
|
|
license = with licenses; [ gpl3Only ];
|
|
# breeze-icons and pantheon.elementary-icon-theme dependencies are restricted to linux
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|