about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/uriparser
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/uriparser')
-rw-r--r--nixpkgs/pkgs/development/libraries/uriparser/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/uriparser/default.nix b/nixpkgs/pkgs/development/libraries/uriparser/default.nix
new file mode 100644
index 000000000000..9c48488bff8e
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/uriparser/default.nix
@@ -0,0 +1,30 @@
+{ lib, stdenv, fetchurl, gtest, pkgconfig, doxygen, graphviz }:
+
+stdenv.mkDerivation rec {
+  pname = "uriparser";
+  version = "0.9.1";
+
+  # Release tarball differs from source tarball
+  src = fetchurl {
+    url = "https://github.com/uriparser/uriparser/releases/download/${pname}-${version}/${pname}-${version}.tar.bz2";
+    sha256 = "1gisi7h8hd6mswbiaaa3s25bnb77xf37pzrmjy63rcdpwcyqy93m";
+  };
+
+  nativeBuildInputs = [ pkgconfig doxygen graphviz ];
+  buildInputs = lib.optional doCheck gtest;
+  configureFlags = lib.optional (!doCheck) "--disable-tests";
+
+  doCheck = stdenv.targetPlatform.system == stdenv.hostPlatform.system;
+
+  meta = with stdenv.lib; {
+    homepage = https://uriparser.github.io/;
+    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.unix;
+    maintainers = with maintainers; [ bosu ];
+  };
+}