summary refs log tree commit diff
path: root/pkgs/data/fonts/recursive/default.nix
blob: 3b1e8931b897bf274181d7580fa0042fdbcd72e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchzip }:

stdenv.mkDerivation rec {
  pname = "recursive";
  version = "1.030";

  src = fetchzip {
    url = "https://github.com/arrowtype/recursive/releases/download/${version}/recursive-beta_1_030--statics.zip";
    sha256 = "1clds4ljiqdf0zc3b7nlna1w7kc23pc9gxdd5vwbgmz9xfvkam0f";
    stripRoot = false;
  };

  installPhase = ''
    mkdir -p $out/share/fonts/{opentype,truetype,woff2}
    find -name "*.otf" -exec cp "{}" $out/share/fonts/opentype \;
    find -name "*.ttf" -exec cp "{}" $out/share/fonts/truetype \;
    find -name "*.woff2" -exec cp "{}" $out/share/fonts/woff2 \;
  '';

  meta = with stdenv.lib; {
    homepage = https://github.com/arrowtype/recursive;
    description = "A variable font family for code & UI";
    license = licenses.ofl;
    maintainers = [ maintainers.eadwu ];
    platforms = platforms.all;
  };
}