From e441581b1366f0c0f335f5d5583b2661b8b9b762 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 17 Jan 2019 15:11:06 -0600 Subject: luculent: init at 2.0.0 --- pkgs/data/fonts/luculent/default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/data/fonts/luculent/default.nix (limited to 'pkgs/data') diff --git a/pkgs/data/fonts/luculent/default.nix b/pkgs/data/fonts/luculent/default.nix new file mode 100644 index 000000000000..fe733359f3a8 --- /dev/null +++ b/pkgs/data/fonts/luculent/default.nix @@ -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; + }; +} -- cgit 1.4.1