mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
udev-gothic: init at 1.3.1
This commit is contained in:
parent
0b97c6657e
commit
77950f840f
25
pkgs/by-name/ud/udev-gothic/package.nix
Normal file
25
pkgs/by-name/ud/udev-gothic/package.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, stdenvNoCC, fetchzip }:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation rec {
|
||||||
|
pname = "udev-gothic";
|
||||||
|
version = "1.3.1";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://github.com/yuru7/udev-gothic/releases/download/v${version}/UDEVGothic_v${version}.zip";
|
||||||
|
hash = "sha256-W1ekR3fWuS/ks1reCBAvZ5lR+aGh9qfaxn80Q2KlRM0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -Dm644 *.ttf -t $out/share/fonts/${pname}
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A programming font that combines BIZ UD Gothic and JetBrains Mono";
|
||||||
|
homepage = "https://github.com/yuru7/udev-gothic";
|
||||||
|
license = licenses.ofl;
|
||||||
|
maintainers = with maintainers; [ haruki7049 ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user