22 lines
592 B
Nix
22 lines
592 B
Nix
{lib, stdenv, pkg-config, autoreconfHook, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libspiro";
|
|
version = "20221101";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fontforge";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-/9UCrdq69RO22593qiA8pZ4qfY9UVGqlGYB9zatsOgw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
|
|
meta = with lib; {
|
|
description = "A library that simplifies the drawing of beautiful curves";
|
|
homepage = "https://github.com/fontforge/libspiro";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.erictapen ];
|
|
};
|
|
}
|