nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 pkgs,
3 lib,
4 stdenvNoCC,
5 fetchFromGitHub,
6}:
7
8stdenvNoCC.mkDerivation {
9 pname = "super-tiny-icons";
10 version = "0-unstable-2025-10-30";
11
12 src = fetchFromGitHub {
13 owner = "edent";
14 repo = "SuperTinyIcons";
15 rev = "621ddf6c231d142cccaa411c3c29001404550624";
16 hash = "sha256-qx3Z64id5kv/OrfEqI77ovGf2X4uHt6wlZrlUo8Nnb0=";
17 };
18
19 installPhase = ''
20 runHook preInstall
21
22 mkdir -p $out/share/icons/SuperTinyIcons
23 find $src/images -type d -exec cp -r {} $out/share/icons/SuperTinyIcons/ \;
24
25 runHook postInstall
26 '';
27
28 meta = {
29 description = "Miniscule SVG versions of common logos";
30 longDescription = ''
31 Super Tiny Web Icons are minuscule SVG versions of your favourite logos.
32 The average size is under 568 bytes!
33 '';
34 homepage = "https://github.com/edent/SuperTinyIcons";
35 license = lib.licenses.mit;
36 maintainers = [ lib.maintainers.h7x4 ];
37 platforms = lib.platforms.all;
38 };
39}