nixpkgs/pkgs/data/fonts/recursive/default.nix

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

26 lines
735 B
Nix
Raw Normal View History

{ lib, fetchzip, stdenvNoCC }:
2019-11-10 16:23:42 +00:00
stdenvNoCC.mkDerivation rec {
pname = "recursive";
version = "1.085";
2019-11-10 16:23:42 +00:00
src = fetchzip {
url = "https://github.com/arrowtype/recursive/releases/download/v${version}/ArrowType-Recursive-${version}.zip";
sha256 = "sha256-hnGnKnRoQN8vFStW8TjLrrTL1dWsthUEWxfaGF0b0vM=";
};
2019-11-10 16:23:42 +00:00
installPhase = ''
install -D -t $out/share/fonts/opentype/ $(find $src -type f -name '*.otf')
install -D -t $out/share/fonts/truetype/ $(find $src -type f -name '*.ttf')
2019-11-10 16:23:42 +00:00
'';
meta = with lib; {
homepage = "https://recursive.design/";
2019-11-10 16:23:42 +00:00
description = "A variable font family for code & UI";
license = licenses.ofl;
maintainers = [ maintainers.eadwu ];
platforms = platforms.all;
};
}