2020-01-14 15:06:54 +00:00
|
|
|
{stdenv, pkgconfig, autoreconfHook, fetchFromGitHub }:
|
2017-02-01 13:59:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libspiro";
|
2020-05-06 23:16:22 +01:00
|
|
|
version = "20200505";
|
2020-01-14 15:06:54 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fontforge";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-05-06 23:16:22 +01:00
|
|
|
sha256 = "1b5bw5qxqlral96y1n5f3sh9yxm2yij3zkqjmlgd8r1k4j0d3nqw";
|
2017-02-01 13:59:35 +00:00
|
|
|
};
|
|
|
|
|
2020-01-14 15:06:54 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2017-02-01 13:59:35 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library that simplifies the drawing of beautiful curves";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/fontforge/libspiro";
|
2017-02-01 13:59:35 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2020-01-14 15:06:54 +00:00
|
|
|
maintainers = [ maintainers.erictapen ];
|
2017-02-01 13:59:35 +00:00
|
|
|
};
|
|
|
|
}
|