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

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

30 lines
803 B
Nix
Raw Normal View History

2023-01-25 12:34:24 +01:00
{ lib, stdenvNoCC, fetchurl }:
2017-03-26 22:15:16 +02:00
2023-01-25 12:34:24 +01:00
stdenvNoCC.mkDerivation {
pname = "shrikhand";
version = "unstable-2016-03-03";
2017-03-26 22:15:16 +02:00
2023-01-25 12:34:24 +01:00
src = fetchurl {
url = "https://github.com/jonpinhorn/shrikhand/raw/c11c9b0720fba977fad7cb4f339ebacdba1d1394/build/Shrikhand-Regular.ttf";
hash = "sha256-wHP1Bwu5Yw3a+RwDOHrmthsnuvwyCV4l6ma5EjA6EMA=";
};
dontUnpack = true;
installPhase = ''
runHook preInstall
2017-08-10 21:43:49 +02:00
2023-01-25 12:34:24 +01:00
install -D -m644 $src $out/share/fonts/truetype/Shrikhand-Regular.ttf
2017-03-26 22:15:16 +02:00
2023-01-25 12:34:24 +01:00
runHook postInstall
'';
2017-03-26 22:15:16 +02:00
meta = with lib; {
homepage = "https://jonpinhorn.github.io/shrikhand/";
2017-03-26 22:15:16 +02:00
description = "A vibrant and playful typeface for both Latin and Gujarati writing systems";
maintainers = with maintainers; [ sternenseemann ];
platforms = platforms.all;
license = licenses.ofl;
};
}