mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
eunomia-font: init at 0.200
This commit is contained in:
parent
ab328de098
commit
ea51558cfa
27
pkgs/data/fonts/eunomia/default.nix
Normal file
27
pkgs/data/fonts/eunomia/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchzip }:
|
||||
|
||||
let
|
||||
majorVersion = "0";
|
||||
minorVersion = "200";
|
||||
pname = "eunomia";
|
||||
in
|
||||
|
||||
fetchzip rec {
|
||||
name = "${pname}-font-${majorVersion}.${minorVersion}";
|
||||
|
||||
url = "http://dotcolon.net/DL/font/${pname}_${majorVersion}${minorVersion}.zip";
|
||||
sha256 = "0lpmczs1d4p9dy4s0dnvv7bl5cd0f6yzyasfrkxij5s86glps38b";
|
||||
|
||||
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/eunomia/;
|
||||
description = "A futuristic decorative font.";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ leenaars ];
|
||||
license = licenses.ofl;
|
||||
};
|
||||
}
|
@ -14786,6 +14786,8 @@ with pkgs;
|
||||
|
||||
elliptic_curves = callPackage ../data/misc/elliptic_curves { };
|
||||
|
||||
eunomia = callPackage ../data/fonts/eunomia { };
|
||||
|
||||
faba-icon-theme = callPackage ../data/icons/faba-icon-theme { };
|
||||
|
||||
faba-mono-icons = callPackage ../data/icons/faba-mono-icons { };
|
||||
|
Loading…
Reference in New Issue
Block a user