depot/third_party/nixpkgs/pkgs/development/libraries/libspiro/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

22 lines
592 B
Nix

{lib, stdenv, pkg-config, autoreconfHook, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "libspiro";
version = "20220722";
src = fetchFromGitHub {
owner = "fontforge";
repo = pname;
rev = version;
sha256 = "sha256-qNff53wyf8YhFVOn169K7smCXrSxdiZWxWOU8VTcjSI=";
};
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 ];
};
}