mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:48:10 +00:00
23 lines
600 B
Nix
23 lines
600 B
Nix
{stdenv, pkgconfig, autoreconfHook, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libspiro";
|
|
version = "20190731";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fontforge";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256:1wc6ikjrvcq05jki0ligmxyplgb4nzx6qb5va277qiin8vad9b1v";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library that simplifies the drawing of beautiful curves";
|
|
homepage = "https://github.com/fontforge/libspiro";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.erictapen ];
|
|
};
|
|
}
|