pecita: download from official source

The file upstream has not been changed for a long time so should be
safe to avoid the archive URL.
This commit is contained in:
Robert Helgesson 2018-09-07 23:37:31 +02:00
parent 199b899846
commit 58213481f6
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -1,18 +1,24 @@
{stdenv, fetchzip}:
{ stdenv, fetchurl }:
let
version = "5.4";
in fetchzip rec {
in
fetchurl rec {
name = "pecita-${version}";
url = "http://archive.rycee.net/pecita/${name}.tar.xz";
url = "http://pecita.eu/b/Pecita.otf";
downloadToTemp = true;
postFetch = ''
tar xJvf $downloadedFile --strip-components=1
mkdir -p $out/share/fonts/opentype
cp -v Pecita.otf $out/share/fonts/opentype/Pecita.otf
cp -v $downloadedFile $out/share/fonts/opentype/Pecita.otf
'';
recursiveHash = true;
sha256 = "0pwm20f38lcbfkdqkpa2ydpc9kvmdg0ifc4h2dmipsnwbcb5rfwm";
meta = with stdenv.lib; {