Added `boot.modprobeConfig.useUbuntuModuleBlacklist`. (#290330)
[NixPkgs.git] / pkgs / by-name / we / weather-icons / package.nix
blob00f9cebac121f158ac9ff90485f1b458a236e7f6
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "weather-icons";
5   version = "2.0.12";
7   src = fetchzip {
8     url = "https://github.com/erikflowers/weather-icons/archive/refs/tags/${version}.zip";
9     hash = "sha256-0ZFH2awUo4BkTpK1OsWZ4YKczJHo+HHM6ezGBJAmT+U=";
10   };
12   installPhase = ''
13     runHook preInstall
15     install -Dm644 _docs/font-source/weathericons-regular.otf -t $out/share/fonts/opentype
17     runHook postInstall
18   '';
20   meta = with lib; {
21     description = "Weather Icons";
22     longDescription = ''
23       Weather Icons is the only icon font and CSS with 222 weather themed icons,
24       ready to be dropped right into Bootstrap, or any project that needs high
25       quality weather, maritime, and meteorological based icons!
26     '';
27     homepage = "https://erikflowers.github.io/weather-icons/";
28     license = licenses.ofl;
29     platforms = platforms.all;
30     maintainers = with maintainers; [ pnelson ];
31   };