Merge pull request #24364 from sternenseemann/shrikhand

shrikhand: init 2016-03-03
This commit is contained in:
Michael Raskin 2017-03-26 22:20:34 +02:00 committed by GitHub
commit bee5916d22
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "2016-03-03";
name = "shrikhand-${version}";
src = fetchFromGitHub {
owner = "jonpinhorn";
repo = "shrikhand";
rev = "c11c9b0720fba977fad7cb4f339ebacdba1d1394";
sha256 = "1d21bvj4w8i0zrmkdrgbn0rpzac89iazfids1x273gsrsvvi45kk";
};
installPhase = ''
install -D -m644 build/Shrikhand-Regular.ttf $out/share/fonts/truetype/Shrikhand-Regular.ttf
'';
meta = with stdenv.lib; {
homepage = https://jonpinhorn.github.io/shrikhand/;
description = "A vibrant and playful typeface for both Latin and Gujarati writing systems";
maintainers = with maintainers; [ sternenseemann ];
platforms = platforms.all;
license = licenses.ofl;
};
}

View file

@ -3893,6 +3893,8 @@ with pkgs;
shellinabox = callPackage ../servers/shellinabox { };
shrikhand = callPackage ../data/fonts/shrikhand { };
sic = callPackage ../applications/networking/irc/sic { };
siege = callPackage ../tools/networking/siege {};