Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
845 B
Nix
36 lines
845 B
Nix
{
|
||
lib,
|
||
stdenvNoCC,
|
||
fetchzip,
|
||
}:
|
||
|
||
stdenvNoCC.mkDerivation {
|
||
pname = "undefined-medium";
|
||
version = "1.3";
|
||
|
||
src = fetchzip {
|
||
url = "https://github.com/andirueckel/undefined-medium/archive/v1.3.zip";
|
||
hash = "sha256-cVdk6a0xijAQ/18W5jalqRS7IiPufMJW27Scns+nbEY=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
install -Dm644 fonts/otf/*.otf -t $out/share/fonts/opentype
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
homepage = "https://undefined-medium.com/";
|
||
description = "Pixel grid-based monospace typeface";
|
||
longDescription = ''
|
||
undefined medium is a free and open-source pixel grid-based
|
||
monospace typeface suitable for programming, writing, and
|
||
whatever else you can think of … it’s pretty undefined.
|
||
'';
|
||
license = licenses.ofl;
|
||
platforms = platforms.all;
|
||
};
|
||
}
|