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

26 lines
672 B
Nix
Raw Normal View History

2017-08-10 15:43:49 -04:00
{stdenv, fetchzip}:
2017-08-10 15:43:49 -04:00
let
2017-03-03 13:21:19 -05:00
version = "1.1";
2017-08-10 15:43:49 -04:00
in fetchzip {
name = "hasklig-${version}";
2017-08-10 15:43:49 -04:00
url = "https://github.com/i-tu/Hasklig/releases/download/${version}/Hasklig-${version}.zip";
2017-08-10 15:43:49 -04:00
postFetch = ''
unzip $downloadedFile
mkdir -p $out/share/fonts/opentype
cp *.otf $out/share/fonts/opentype
'';
2017-08-10 15:43:49 -04:00
sha256 = "0xxyx0nkapviqaqmf3b610nq17k20afirvc72l32pfspsbxz8ybq";
meta = with stdenv.lib; {
homepage = https://github.com/i-tu/Hasklig;
description = "A font with ligatures for Haskell code based off Source Code Pro";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ davidrusu Profpatsch ];
};
}