mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
32 lines
758 B
Nix
32 lines
758 B
Nix
{ lib, stdenvNoCC, fetchzip }:
|
|
|
|
let
|
|
majorVersion = "0";
|
|
minorVersion = "200";
|
|
in
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "ferrum";
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
src = fetchzip {
|
|
url = "https://dotcolon.net/download/fonts/ferrum_${majorVersion}${minorVersion}.zip";
|
|
hash = "sha256-NDJwgFWZgyhMkGRWlY55l2omEw6ju3e3dHCEsWNzQIc=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://dotcolon.net/font/ferrum/";
|
|
description = "Decorative font";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ leenaars minijackson ];
|
|
license = licenses.cc0;
|
|
};
|
|
}
|