nixpkgs/pkgs/by-name/se/serious-sans/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
783 B
Nix
Raw Normal View History

{ stdenvNoCC
, lib
, fetchFromGitHub
}:
2024-07-13 04:59:02 +03:00
stdenvNoCC.mkDerivation {
pname = "serious-sans";
version = "unstable-2023-09-04";
src = fetchFromGitHub {
owner = "kaBeech";
repo = "serious-sans";
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 = "Legible monospace font for playful professionals";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ CobaltCause ];
platforms = lib.platforms.all;
};
2024-07-13 04:59:02 +03:00
}