summary refs log tree commit diff
path: root/pkgs/development/libraries/libspiro/default.nix
blob: 5f547a973707c9f2720c9c49dfaefb41fdb4a1b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, pkgconfig, fetchurl}:

stdenv.mkDerivation rec {
  pname = "libspiro";
  version = "0.5.20150702";
  src = fetchurl {
    url = "https://github.com/fontforge/libspiro/releases/download/${version}/${pname}-${version}.tar.gz";
    sha256 = "0z4zpxd3nwwchqdsbmmjbp13aw5jg8v5p1993190bpykkrjlh6nv";
  };

  nativeBuildInputs = [pkgconfig];

  meta = with stdenv.lib; {
    description = "A library that simplifies the drawing of beautiful curves";
    homepage = https://github.com/fontforge/libspiro;
    license = licenses.gpl3Plus;
  };
}