luculent: init at 2.0.0
This commit is contained in:
parent
2dd48b7017
commit
e441581b13
23
pkgs/data/fonts/luculent/default.nix
Normal file
23
pkgs/data/fonts/luculent/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, fetchzip }:
|
||||
|
||||
let version = "2.0.0"; in
|
||||
fetchzip rec {
|
||||
name = "luculent-${version}";
|
||||
url = http://www.eastfarthing.com/luculent/luculent.tar.xz;
|
||||
|
||||
postFetch = ''
|
||||
tar -xJf $downloadedFile --strip-components=1
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
cp *.ttf $out/share/fonts/truetype
|
||||
'';
|
||||
|
||||
sha256 = "1m3g64galwna1xjxb1fczmfplm6c1fn3ra1ln7f0vkm0ah5m4lbv";
|
||||
|
||||
meta = with lib; {
|
||||
description = "luculent font";
|
||||
homepage = http://www.eastfarthing.com/luculent/;
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -15646,6 +15646,8 @@ in
|
||||
# lohit-fonts.kashmiri lohit-fonts.konkani lohit-fonts.maithili lohit-fonts.sindhi
|
||||
lohit-fonts = recurseIntoAttrs ( callPackages ../data/fonts/lohit-fonts { } );
|
||||
|
||||
luculent = callPackage ../data/fonts/luculent { };
|
||||
|
||||
maia-icon-theme = callPackage ../data/icons/maia-icon-theme { };
|
||||
|
||||
mailcap = callPackage ../data/misc/mailcap { };
|
||||
|
Loading…
Reference in New Issue
Block a user