f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
19 lines
544 B
Nix
19 lines
544 B
Nix
{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;
|
|
};
|
|
}
|