2017-02-01 13:59:35 +00:00
|
|
|
{stdenv, pkgconfig, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libspiro";
|
2017-02-01 13:59:35 +00:00
|
|
|
version = "0.5.20150702";
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/fontforge/libspiro/releases/download/${version}/${pname}-${version}.tar.gz";
|
2017-02-01 13:59:35 +00:00
|
|
|
sha256 = "0z4zpxd3nwwchqdsbmmjbp13aw5jg8v5p1993190bpykkrjlh6nv";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [pkgconfig];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library that simplifies the drawing of beautiful curves";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/fontforge/libspiro;
|
2017-02-01 13:59:35 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
};
|
|
|
|
}
|