about summary refs log tree commit diff
path: root/pkgs/by-name/mi/miracode/package.nix
blob: 4dc1ad3f4eb3bcfa5e917647572fd33d33abba4a (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
{ stdenvNoCC, lib, fetchurl }:

let
  version = "1.0";
in
stdenvNoCC.mkDerivation {
  pname = "miracode";
  inherit version;

  src = fetchurl {
    url = "https://github.com/IdreesInc/Miracode/releases/download/v${version}/Miracode.ttf";
    hash = "sha256-Q+/D/TPlqOt779qYS/dF7ahEd3Mm4a4G+wdHB+Gutmo=";
  };

  dontUnpack = true;
  dontConfigure = true;
  dontBuild = true;

  installPhase = ''
    runHook preInstall
    install -Dm644 $src $out/share/fonts/truetype/Miracode.ttf
    runHook postInstall
  '';

  meta = with lib; {
    description = "A sharp, readable, vector-y version of Monocraft";
    homepage = "https://github.com/IdreesInc/Miracode";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = with maintainers; [ coca ];
  };
}