nixpkgs/pkgs/development/libraries/libspiro/default.nix
Justin Humm 48d502cd66 libspiro: 0.5.20150702 -> 20190731
also build from Git
2020-02-10 20:20:55 +01:00

23 lines
598 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 ];
};
}