Merge pull request #54968 from dtzWill/feature/sudo-font
sudo-font: init at 0.37
This commit is contained in:
commit
f65177d0ac
2 changed files with 24 additions and 0 deletions
22
pkgs/data/fonts/sudo/default.nix
Normal file
22
pkgs/data/fonts/sudo/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchzip }:
|
||||
|
||||
let
|
||||
version = "0.37";
|
||||
in fetchzip rec {
|
||||
name = "sudo-font-${version}";
|
||||
url = "https://github.com/jenskutilek/sudo-font/releases/download/v${version}/sudo.zip";
|
||||
sha256 = "16x6vs016wz6rmd4p248ri9fn35xq7r3dc8hv4w2c4rz1xl8c099";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts/truetype/
|
||||
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype/
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
|
@ -15848,6 +15848,8 @@ with pkgs;
|
|||
source-han-serif-simplified-chinese = sourceHanSerifPackages.simplified-chinese;
|
||||
source-han-serif-traditional-chinese = sourceHanSerifPackages.traditional-chinese;
|
||||
|
||||
sudo-font = callPackage ../data/fonts/sudo { };
|
||||
|
||||
inherit (callPackages ../data/fonts/tai-languages { }) tai-ahom;
|
||||
|
||||
tango-icon-theme = callPackage ../data/icons/tango-icon-theme {
|
||||
|
|
Loading…
Reference in a new issue