summary refs log tree commit diff
path: root/pkgs/data/fonts/xkcd-font/default.nix
blob: 9aa664fd2896cb48bca303689f8e0ab65a8637a0 (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
28
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "xkcd-font";
  version = "unstable-2017-08-24";

  src = fetchFromGitHub {
    owner = "ipython";
    repo = pname;
    rev = "5632fde618845dba5c22f14adc7b52bf6c52d46d";
    sha256 = "01wpfc1yp93b37r472mx2b459il5gywnv5sl7pp9afpycb3i4f6l";
  };

  phases = [ "unpackPhase" "installPhase" ];

  installPhase = ''
    install -Dm444 -t $out/share/fonts/opentype/ xkcd/build/xkcd.otf
    install -Dm444 -t $out/share/fonts/truetype/ xkcd-script/font/xkcd-script.ttf
  '';

  meta = with stdenv.lib; {
    description = "The xkcd font";
    homepage = https://github.com/ipython/xkcd-font;
    license = licenses.cc-by-nc-30;
    platforms = platforms.all;
    maintainers = [ maintainers.marsam ];
  };
}