2023-01-25 11:34:24 +00:00
|
|
|
{ lib, stdenvNoCC, fetchurl }:
|
2017-03-26 20:15:16 +00:00
|
|
|
|
2023-01-25 11:34:24 +00:00
|
|
|
stdenvNoCC.mkDerivation {
|
|
|
|
pname = "shrikhand";
|
|
|
|
version = "unstable-2016-03-03";
|
2017-03-26 20:15:16 +00:00
|
|
|
|
2023-01-25 11:34:24 +00: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 19:43:49 +00:00
|
|
|
|
2023-01-25 11:34:24 +00:00
|
|
|
install -D -m644 $src $out/share/fonts/truetype/Shrikhand-Regular.ttf
|
2017-03-26 20:15:16 +00:00
|
|
|
|
2023-01-25 11:34:24 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2017-03-26 20:15:16 +00:00
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://jonpinhorn.github.io/shrikhand/";
|
2017-03-26 20:15:16 +00:00
|
|
|
description = "A vibrant and playful typeface for both Latin and Gujarati writing systems";
|
|
|
|
maintainers = with maintainers; [ sternenseemann ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.ofl;
|
|
|
|
};
|
|
|
|
}
|