mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
36 lines
995 B
Nix
36 lines
995 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchzip,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "departure-mono";
|
|
version = "1.422";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/rektdeckard/departure-mono/releases/download/v${finalAttrs.version}/DepartureMono-${finalAttrs.version}.zip";
|
|
stripRoot = false;
|
|
hash = "sha256-9CcXd7PLxkzQt0oT/asZO9mowtXtjPBfuKphfGgM/y8=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m 444 *.otf -t $out/share/fonts/otf
|
|
install -D -m 444 *.woff -t $out/share/fonts/woff
|
|
install -D -m 444 *.woff2 -t $out/share/fonts/woff2
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
changelog = "https://github.com/rektdeckard/departure-mono/releases/tag/v${finalAttrs.version}";
|
|
description = "Departure Mono is a monospaced pixel font with a lo-fi technical vibe";
|
|
homepage = "https://departuremono.com/";
|
|
license = lib.licenses.ofl;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ drupol ];
|
|
};
|
|
})
|