{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / xkcd-font / default.nix
blob003ddcc7da90f13a35e3f49683692f52f8a520ba
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "xkcd-font";
5   version = "unstable-2017-08-24";
7   src = fetchFromGitHub {
8     owner = "ipython";
9     repo = pname;
10     rev = "5632fde618845dba5c22f14adc7b52bf6c52d46d";
11     hash = "sha256-1DgSx2L+OpXuPVSXbbl/hcZUyBK9ikPyGWuk6wNzlwc=";
12   };
14   installPhase = ''
15     runHook preInstall
17     install -Dm444 -t $out/share/fonts/opentype/ xkcd/build/xkcd.otf
18     install -Dm444 -t $out/share/fonts/truetype/ xkcd-script/font/xkcd-script.ttf
20     runHook postInstall
21   '';
23   meta = with lib; {
24     description = "Xkcd font";
25     homepage = "https://github.com/ipython/xkcd-font";
26     license = licenses.cc-by-nc-30;
27     platforms = platforms.all;
28     maintainers = [ ];
29   };