ferrum-font: init at 0.200
This commit is contained in:
parent
55570268f2
commit
88eb81e19b
27
pkgs/data/fonts/ferrum/default.nix
Normal file
27
pkgs/data/fonts/ferrum/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchzip }:
|
||||||
|
|
||||||
|
let
|
||||||
|
majorVersion = "0";
|
||||||
|
minorVersion = "200";
|
||||||
|
pname = "ferrum";
|
||||||
|
in
|
||||||
|
|
||||||
|
fetchzip rec {
|
||||||
|
name = "${pname}-font-${majorVersion}.${minorVersion}";
|
||||||
|
|
||||||
|
url = "http://dotcolon.net/DL/font/${pname}.zip";
|
||||||
|
sha256 = "1w1b3ch7ik4264f05lxms01ls0aargvlx770a9szm682dfmizn8w";
|
||||||
|
|
||||||
|
postFetch = ''
|
||||||
|
mkdir -p $out/share/fonts/opentype/${pname}
|
||||||
|
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://dotcolon.net/font/${pname}/";
|
||||||
|
description = "A decorative font.";
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ leenaars ];
|
||||||
|
license = licenses.cc0;
|
||||||
|
};
|
||||||
|
}
|
@ -14794,6 +14794,8 @@ with pkgs;
|
|||||||
|
|
||||||
faba-mono-icons = callPackage ../data/icons/faba-mono-icons { };
|
faba-mono-icons = callPackage ../data/icons/faba-mono-icons { };
|
||||||
|
|
||||||
|
ferrum = callPackage ../data/fonts/ferrum { };
|
||||||
|
|
||||||
fixedsys-excelsior = callPackage ../data/fonts/fixedsys-excelsior { };
|
fixedsys-excelsior = callPackage ../data/fonts/fixedsys-excelsior { };
|
||||||
|
|
||||||
graphs = callPackage ../data/misc/graphs { };
|
graphs = callPackage ../data/misc/graphs { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user