summary refs log tree commit diff
path: root/pkgs/development/libraries/libspiro/default.nix
blob: 00579600cb76d1859dc8a61582d81573cee0303d (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 {
  name = "libspiro-${version}";
  version = "0.5.20150702";
  src = fetchurl {
    url = "https://github.com/fontforge/libspiro/releases/download/${version}/${name}.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;
  };
}