nixpkgs/pkgs/data/fonts/mononoki/default.nix

24 lines
570 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2016-06-10 12:33:25 +03:00
2017-08-10 22:43:49 +03:00
let
2016-06-10 12:33:25 +03:00
version = "1.2";
2017-08-10 22:43:49 +03:00
in fetchzip {
name = "mononoki-${version}";
2016-06-10 12:33:25 +03:00
2017-08-10 22:43:49 +03:00
url = "https://github.com/madmalik/mononoki/releases/download/${version}/mononoki.zip";
2016-06-10 12:33:25 +03:00
2017-08-10 22:43:49 +03:00
postFetch = ''
2016-06-10 12:33:25 +03:00
mkdir -p $out/share/fonts/mononoki
2017-08-10 22:43:49 +03:00
unzip -j $downloadedFile -d $out/share/fonts/mononoki
2016-06-10 12:33:25 +03:00
'';
2017-08-10 22:43:49 +03:00
sha256 = "19y4xg7ilm21h9yynyrwcafdqn05zknpmmjrb37qim6p0cy2glff";
meta = with lib; {
2016-06-10 12:33:25 +03:00
homepage = https://github.com/madmalik/mononoki;
description = "A font for programming and code review";
license = licenses.ofl;
platforms = platforms.all;
};
}