plemoljp: init at 1.7.1
This commit is contained in:
parent
2a3616e0e0
commit
7744691840
1 changed files with 30 additions and 0 deletions
30
pkgs/by-name/pl/plemoljp/package.nix
Normal file
30
pkgs/by-name/pl/plemoljp/package.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenvNoCC, fetchzip }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "plemoljp";
|
||||
version = "1.7.1";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/yuru7/PlemolJP/releases/download/v${version}/PlemolJP_v${version}.zip";
|
||||
hash = "sha256-YH1c/2jk8QZNyPvzRZjxNHyNeci9tjn+oOW8xLd8kjk=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm444 PlemolJP/*.ttf -t $out/share/fonts/truetype/${pname}
|
||||
install -Dm444 PlemolJP35/*.ttf -t $out/share/fonts/truetype/${pname}-35
|
||||
install -Dm444 PlemolJPConsole/*.ttf -t $out/share/fonts/truetype/${pname}-console
|
||||
install -Dm444 PlemolJP35Console/*.ttf -t $out/share/fonts/truetype/${pname}-35console
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A composite font of IBM Plex Mono and IBM Plex Sans JP";
|
||||
homepage = "https://github.com/yuru7/PlemolJP";
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ kachick ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue