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

23 lines
631 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2019-01-31 00:27:24 +00:00
let
version = "0.40";
2019-08-13 21:52:01 +00:00
in fetchzip {
2019-01-31 00:27:24 +00:00
name = "sudo-font-${version}";
url = "https://github.com/jenskutilek/sudo-font/releases/download/v${version}/sudo.zip";
sha256 = "1nf025sjps4yysf6zkns5fzjgls6xdpifh7bz4ray9x8h5pz0z64";
2019-01-31 00:27:24 +00:00
postFetch = ''
mkdir -p $out/share/fonts/truetype/
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype/
'';
meta = with lib; {
2019-01-31 00:27:24 +00:00
description = "Font for programmers and command line users";
homepage = https://www.kutilek.de/sudo-font/;
license = licenses.ofl;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
};
}