serious-sans: init at unstable-2023-09-04

This commit is contained in:
Charles Hall 2023-11-23 14:49:30 -08:00
parent 11832690a8
commit bcba033435
No known key found for this signature in database
GPG Key ID: 7B8E0645816E07CF

View File

@ -0,0 +1,33 @@
{ stdenvNoCC
, lib
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "serious-sans";
version = "unstable-2023-09-04";
src = fetchFromGitHub {
owner = "kaBeech";
repo = finalAttrs.pname;
rev = "a23f2b303fa3b1ec8788c5abba67b44ca5a3cc0a";
hash = "sha256-sPb9ZVDTBaZHT0Q/I9OfP7BMYJXPBiKkebzKgUHNuZM=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/serious-sans
cp SeriousSans/*/* $out/share/fonts/serious-sans
runHook postInstall
'';
meta = {
homepage = "https://github.com/kaBeech/serious-sans";
description = "A legible monospace font for playful professionals";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ CobaltCause ];
platforms = lib.platforms.all;
};
})