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

29 lines
902 B
Nix
Raw Normal View History

2018-10-27 19:42:49 +00:00
{ stdenv, fetchurl, gtest, pkgconfig, doxygen, graphviz }:
2015-07-18 11:17:46 +00:00
stdenv.mkDerivation rec {
name = "uriparser-${version}";
2018-10-27 19:42:49 +00:00
version = "0.9.0";
2015-07-18 11:17:46 +00:00
2018-08-21 13:39:35 +00:00
# Release tarball differs from source tarball
2015-07-18 11:17:46 +00:00
src = fetchurl {
2018-08-21 13:39:35 +00:00
url = "https://github.com/uriparser/uriparser/releases/download/${name}/${name}.tar.bz2";
2018-10-27 19:42:49 +00:00
sha256 = "0b2yagxzhq9ghpszci6a9xlqg0yl7vq9j5r8dwbar3nszqsfnrzc";
2015-07-18 11:17:46 +00:00
};
2018-10-27 19:42:49 +00:00
nativeBuildInputs = [ pkgconfig gtest doxygen graphviz ];
2018-08-21 13:39:35 +00:00
doCheck = true;
2015-07-18 11:17:46 +00:00
meta = with stdenv.lib; {
2018-08-21 13:39:35 +00:00
homepage = https://uriparser.github.io/;
2015-07-18 11:17:46 +00:00
description = "Strictly RFC 3986 compliant URI parsing library";
longDescription = ''
uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C.
API documentation is available on uriparser website.
'';
license = licenses.bsd3;
platforms = platforms.linux;
2015-07-18 11:17:46 +00:00
maintainers = with maintainers; [ bosu ];
};
}