nixpkgs/pkgs/data/fonts/xkcd-font/default.nix

28 lines
739 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2019-04-25 02:13:39 +00:00
let
2019-04-25 02:13:39 +00:00
pname = "xkcd-font";
version = "unstable-2017-08-24";
2019-08-13 21:52:01 +00:00
in fetchFromGitHub {
name = "${pname}-${version}";
2019-04-25 02:13:39 +00:00
owner = "ipython";
repo = pname;
rev = "5632fde618845dba5c22f14adc7b52bf6c52d46d";
2019-04-25 02:13:39 +00:00
postFetch = ''
tar xf $downloadedFile --strip=1
2019-04-25 02:13:39 +00:00
install -Dm444 -t $out/share/fonts/opentype/ xkcd/build/xkcd.otf
install -Dm444 -t $out/share/fonts/truetype/ xkcd-script/font/xkcd-script.ttf
'';
sha256 = "0xhwa53aiz20763jb9nvbr2zq9k6jl69p07dc4b0apwrrwz0jfr1";
2019-04-25 02:13:39 +00:00
meta = with lib; {
2019-04-25 02:13:39 +00:00
description = "The xkcd font";
homepage = "https://github.com/ipython/xkcd-font";
2019-04-25 02:13:39 +00:00
license = licenses.cc-by-nc-30;
platforms = platforms.all;
maintainers = [ maintainers.marsam ];
};
}