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

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

30 lines
753 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchzip }:
2019-01-17 22:08:27 +01:00
stdenvNoCC.mkDerivation rec {
pname = "ankacoder";
version = "1.100";
2019-01-17 22:08:27 +01:00
src = fetchzip {
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/anka-coder-fonts/AnkaCoder.${version}.zip";
stripRoot = false;
hash = "sha256-14ItaSQ/fO/WDq0O4SXGWnZgiM0kayJrWQgsKb7bsyY=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
runHook postInstall
'';
2019-01-17 22:08:27 +01:00
meta = with lib; {
2019-01-17 22:08:27 +01:00
description = "Anka/Coder fonts";
homepage = "https://code.google.com/archive/p/anka-coder-fonts";
2019-01-17 22:08:27 +01:00
license = licenses.ofl;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
};
}