sqlite_orm: 1.9 -> 1.9.1 (#379250)
[NixPkgs.git] / pkgs / by-name / sh / shrikhand / package.nix
blob585f7303bc8ce22c49387c0f9abfd6f306deabde
2   lib,
3   stdenvNoCC,
4   fetchurl,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "shrikhand";
9   version = "unstable-2016-03-03";
11   src = fetchurl {
12     url = "https://github.com/jonpinhorn/shrikhand/raw/c11c9b0720fba977fad7cb4f339ebacdba1d1394/build/Shrikhand-Regular.ttf";
13     hash = "sha256-wHP1Bwu5Yw3a+RwDOHrmthsnuvwyCV4l6ma5EjA6EMA=";
14   };
16   dontUnpack = true;
18   installPhase = ''
19     runHook preInstall
21     install -D -m644 $src $out/share/fonts/truetype/Shrikhand-Regular.ttf
23     runHook postInstall
24   '';
26   meta = with lib; {
27     homepage = "https://jonpinhorn.github.io/shrikhand/";
28     description = "Vibrant and playful typeface for both Latin and Gujarati writing systems";
29     maintainers = with maintainers; [ sternenseemann ];
30     platforms = platforms.all;
31     license = licenses.ofl;
32   };