mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
25 lines
642 B
Nix
25 lines
642 B
Nix
{ lib, fetchzip }:
|
|
|
|
let
|
|
version = "1.1";
|
|
in fetchzip {
|
|
name = "hasklig-${version}";
|
|
|
|
url = "https://github.com/i-tu/Hasklig/releases/download/${version}/Hasklig-${version}.zip";
|
|
|
|
postFetch = ''
|
|
unzip $downloadedFile
|
|
install -m444 -Dt $out/share/fonts/opentype *.otf
|
|
'';
|
|
|
|
sha256 = "0xxyx0nkapviqaqmf3b610nq17k20afirvc72l32pfspsbxz8ybq";
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|