mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
33 lines
857 B
Nix
33 lines
857 B
Nix
{ lib, fetchFromGitHub, stdenvNoCC }:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "knewave";
|
|
version = "2012-07-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "theleagueof";
|
|
repo = finalAttrs.pname;
|
|
rev = "f335d5ff1f12e4acf97d4208e1c37b4d386e57fb";
|
|
hash = "sha256-SaJU2GlxU7V3iJNQzFKg1YugaPsiJuSZpC8NCqtWyz0=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m444 -t $out/share/fonts/truetype $src/*.ttf
|
|
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = " A bold, painted face for the rocker within";
|
|
longDescription = ''
|
|
Knewave is bold, painted face. Get it? Git it.
|
|
'';
|
|
homepage = "https://www.theleagueofmoveabletype.com/knewave";
|
|
license = lib.licenses.ofl;
|
|
maintainers = with lib.maintainers; [ minijackson ];
|
|
};
|
|
})
|