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