forked from mirrors/nixpkgs
Merge pull request #200066 from h7x4/super-tiny-icons
This commit is contained in:
commit
d9a2ab3d33
|
@ -5298,6 +5298,16 @@
|
|||
github = "gytis-ivaskevicius";
|
||||
githubId = 23264966;
|
||||
};
|
||||
h7x4 = {
|
||||
name = "h7x4";
|
||||
email = "h7x4@nani.wtf";
|
||||
matrix = "@h7x4:nani.wtf";
|
||||
github = "h7x4";
|
||||
githubId = 14929991;
|
||||
keys = [{
|
||||
fingerprint = "F7D3 7890 228A 9074 40E1 FD48 46B9 228E 814A 2AAC";
|
||||
}];
|
||||
};
|
||||
hagl = {
|
||||
email = "harald@glie.be";
|
||||
github = "hagl";
|
||||
|
|
34
pkgs/data/icons/super-tiny-icons/default.nix
Normal file
34
pkgs/data/icons/super-tiny-icons/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ pkgs, lib, stdenvNoCC, fetchFromGitHub, }:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "super-tiny-icons";
|
||||
version = "unstable-2022-11-07";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "edent";
|
||||
repo = "SuperTinyIcons";
|
||||
rev = "b4d5a3be04c99ec0a309ac9e0d0b21207c237c7d";
|
||||
sha256 = "670ndAuBrZBr7YOTQm2zHJfpiBC56aPk+ZKMneREEoI=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/share/icons/SuperTinyIcons
|
||||
find $src/images -type d -exec cp -r {} $out/share/icons/SuperTinyIcons/ \;
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Miniscule SVG versions of common logos";
|
||||
longDescription = ''
|
||||
Super Tiny Web Icons are minuscule SVG versions of your favourite logos.
|
||||
The average size is under 568 bytes!
|
||||
'';
|
||||
homepage = "https://github.com/edent/SuperTinyIcons";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.h7x4 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -26939,6 +26939,8 @@ with pkgs;
|
|||
|
||||
stix-two = callPackage ../data/fonts/stix-two { };
|
||||
|
||||
super-tiny-icons = callPackage ../data/icons/super-tiny-icons { };
|
||||
|
||||
inherit (callPackages ../data/fonts/gdouros { })
|
||||
aegan aegyptus akkadian assyrian eemusic maya symbola textfonts unidings;
|
||||
|
||||
|
|
Loading…
Reference in a new issue