weather-icons: init at 2.0.10
This commit is contained in:
parent
9179c1449d
commit
3518c69d74
|
@ -3319,6 +3319,11 @@
|
||||||
github = "pmyjavec";
|
github = "pmyjavec";
|
||||||
name = "Pauly Myjavec";
|
name = "Pauly Myjavec";
|
||||||
};
|
};
|
||||||
|
pnelson = {
|
||||||
|
email = "me@pnelson.ca";
|
||||||
|
github = "pnelson";
|
||||||
|
name = "Philip Nelson";
|
||||||
|
};
|
||||||
pneumaticat = {
|
pneumaticat = {
|
||||||
email = "kevin@potatofrom.space";
|
email = "kevin@potatofrom.space";
|
||||||
github = "pneumaticat";
|
github = "pneumaticat";
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, fetchzip }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "2.0.10";
|
||||||
|
in fetchzip rec {
|
||||||
|
name = "weather-icons-${version}";
|
||||||
|
|
||||||
|
url = "https://github.com/erikflowers/weather-icons/archive/${version}.zip";
|
||||||
|
|
||||||
|
postFetch = ''
|
||||||
|
mkdir -p $out/share/fonts
|
||||||
|
unzip -j $downloadedFile weather-icons-${version}/_docs/font-source/weathericons-regular.otf -d $out/share/fonts/opentype
|
||||||
|
'';
|
||||||
|
|
||||||
|
sha256 = "10zny9987wybq55sm803hrjkp33dq1lgmnxc15kssr8yb81g6qrl";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Weather Icons";
|
||||||
|
longDescription = ''
|
||||||
|
Weather Icons is the only icon font and CSS with 222 weather themed icons,
|
||||||
|
ready to be dropped right into Bootstrap, or any project that needs high
|
||||||
|
quality weather, maritime, and meteorological based icons!
|
||||||
|
'';
|
||||||
|
homepage = https://erikflowers.github.io/weather-icons/;
|
||||||
|
license = licenses.ofl;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ pnelson ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -15463,6 +15463,8 @@ with pkgs;
|
||||||
|
|
||||||
vistafonts-chs = callPackage ../data/fonts/vista-fonts-chs { };
|
vistafonts-chs = callPackage ../data/fonts/vista-fonts-chs { };
|
||||||
|
|
||||||
|
weather-icons = callPackage ../data/fonts/weather-icons { };
|
||||||
|
|
||||||
wireless-regdb = callPackage ../data/misc/wireless-regdb { };
|
wireless-regdb = callPackage ../data/misc/wireless-regdb { };
|
||||||
|
|
||||||
wqy_microhei = callPackage ../data/fonts/wqy-microhei { };
|
wqy_microhei = callPackage ../data/fonts/wqy-microhei { };
|
||||||
|
|
Loading…
Reference in New Issue