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

31 lines
1 KiB
Nix
Raw Normal View History

2018-11-23 04:00:54 +00:00
{ lib, stdenv, fetchurl, gtest, pkgconfig, doxygen, graphviz }:
2015-07-18 11:17:46 +00:00
stdenv.mkDerivation rec {
pname = "uriparser";
2019-01-06 04:23:54 +00:00
version = "0.9.1";
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 {
url = "https://github.com/uriparser/uriparser/releases/download/${pname}-${version}/${pname}-${version}.tar.bz2";
2019-01-06 04:23:54 +00:00
sha256 = "1gisi7h8hd6mswbiaaa3s25bnb77xf37pzrmjy63rcdpwcyqy93m";
2015-07-18 11:17:46 +00:00
};
2018-11-23 04:00:54 +00:00
nativeBuildInputs = [ pkgconfig doxygen graphviz ];
buildInputs = lib.optional doCheck gtest;
configureFlags = lib.optional (!doCheck) "--disable-tests";
2018-11-23 04:00:54 +00:00
doCheck = stdenv.targetPlatform.system == stdenv.hostPlatform.system;
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;
2019-04-06 16:27:37 +00:00
platforms = platforms.unix;
2015-07-18 11:17:46 +00:00
maintainers = with maintainers; [ bosu ];
};
}