mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
nanum-gothic-coding: init at VER2.5
This commit is contained in:
parent
59c81160e7
commit
cda767c61a
25
pkgs/data/fonts/nanum-gothic-coding/default.nix
Normal file
25
pkgs/data/fonts/nanum-gothic-coding/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchzip, unzip}:
|
||||
|
||||
let
|
||||
version = "VER2.5";
|
||||
fullName = "NanumGothicCoding-2.5";
|
||||
|
||||
in fetchzip rec {
|
||||
name = "nanum-gothic-coding";
|
||||
url = "https://github.com/naver/nanumfont/releases/download/${version}/${fullName}.zip";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts/NanumGothicCoding
|
||||
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/NanumGothicCoding
|
||||
'';
|
||||
|
||||
sha256 = "0b3pkhd6xn6393zi0dhj3ah08w1y1ji9fl6584bi0c8lanamf2pc";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A contemporary monospaced sans-serif typeface with a warm touch";
|
||||
homepage = https://github.com/naver/nanumfont;
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ linarcx ];
|
||||
};
|
||||
}
|
@ -3950,6 +3950,8 @@ in
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
nanum-gothic-coding = callPackage ../data/fonts/nanum-gothic-coding { };
|
||||
|
||||
nbench = callPackage ../tools/misc/nbench { };
|
||||
|
||||
netdata = callPackage ../tools/system/netdata {
|
||||
|
Loading…
Reference in New Issue
Block a user