{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / shrikhand / default.nix
blobce3423003dbd58ef595fff4eb0fbc3a03f0a885f
1 { lib, stdenvNoCC, fetchurl }:
3 stdenvNoCC.mkDerivation {
4   pname = "shrikhand";
5   version = "unstable-2016-03-03";
7   src = fetchurl {
8     url = "https://github.com/jonpinhorn/shrikhand/raw/c11c9b0720fba977fad7cb4f339ebacdba1d1394/build/Shrikhand-Regular.ttf";
9     hash = "sha256-wHP1Bwu5Yw3a+RwDOHrmthsnuvwyCV4l6ma5EjA6EMA=";
10   };
12   dontUnpack = true;
14   installPhase = ''
15     runHook preInstall
17     install -D -m644 $src $out/share/fonts/truetype/Shrikhand-Regular.ttf
19     runHook postInstall
20   '';
22   meta = with lib; {
23     homepage = "https://jonpinhorn.github.io/shrikhand/";
24     description = "Vibrant and playful typeface for both Latin and Gujarati writing systems";
25     maintainers = with maintainers; [ sternenseemann ];
26     platforms = platforms.all;
27     license = licenses.ofl;
28   };