nix-config/packages/fluent-icons.nix
Donovan Glover cd29ca4825
packages: Remove phase language identifiers
Automatically handled by the new treesitter syntax highlighting.
2024-04-21 11:17:35 -04:00

33 lines
659 B
Nix

{ lib
, stdenvNoCC
, fetchzip
}:
stdenvNoCC.mkDerivation {
pname = "fluent-icons";
version = "2024-01-02";
src = fetchzip {
url = "https://files.catbox.moe/1we56t.zip";
hash = "sha256-gs33iDv+u6O03a+/QvDtKt/aHduZww4F3Fm3F40d1GI=";
stripRoot = false;
};
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r * $out
runHook postInstall
'';
meta = with lib; {
description = "Fluent folder icons converted to png";
homepage = "https://github.com/vinceliuice/Fluent-icon-theme";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.all;
};
}