about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/cherry/default.nix
blob: 6d1c4b10c91a703a146dc84746f4827cc01e5522 (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
29
30
31
32
33
34
{ stdenv, fetchFromGitHub, bdftopcf }:

stdenv.mkDerivation rec {
  pname = "cherry";
  version = "1.3";

  src = fetchFromGitHub {
    owner = "turquoise-hexagon";
    repo = pname;
    rev = version;
    sha256 = "1zaiqspf6y0hpszhihdsvsyw33d3ffdap4dym7w45wfrhdpvpi0p";
  };

  nativeBuildInputs = [ bdftopcf ];

  buildPhase = ''
    patchShebangs make.sh
    ./make.sh
  '';

  installPhase = ''
    mkdir -p $out/share/fonts/misc
    cp *.pcf $out/share/fonts/misc
  '';

  meta = with stdenv.lib; {
    description = "cherry font";
    homepage = https://github.com/turquoise-hexagon/cherry;
    license = licenses.mit;
    maintainers = with maintainers; [ dtzWill ];
    platforms = platforms.all;
  };
}