nixpkgs/pkgs/development/libraries/libspiro/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
592 B
Nix
Raw Normal View History

{lib, stdenv, pkg-config, autoreconfHook, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "libspiro";
2022-07-28 22:05:49 +00:00
version = "20220722";
src = fetchFromGitHub {
owner = "fontforge";
repo = pname;
rev = version;
2022-07-28 22:05:49 +00:00
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 ];
};
}