Merge pull request #8875 from bosu/add-uriparser
uriparser: init at 0.8.2
This commit is contained in:
commit
b01d0ca60c
19
pkgs/development/libraries/uriparser/default.nix
Normal file
19
pkgs/development/libraries/uriparser/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ stdenv, fetchurl, cpptest, pkgconfig, doxygen, graphviz }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "uriparser-0.8.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://downloads.sourceforge.net/project/uriparser/Sources/0.8.2/${name}.tar.bz2";
|
||||||
|
sha256 = "13sh7slys3y5gfscc40g2r3hkjjywjvxlcqr77ifjrazc6q6cvkd";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cpptest pkgconfig doxygen graphviz ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://uriparser.sourceforge.net/;
|
||||||
|
description = "Strictly RFC 3986 compliant URI parsing library";
|
||||||
|
maintainers = with maintainers; [ bosu ];
|
||||||
|
license = stdenv.lib.licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -3184,6 +3184,8 @@ let
|
|||||||
|
|
||||||
upx = callPackage ../tools/compression/upx { };
|
upx = callPackage ../tools/compression/upx { };
|
||||||
|
|
||||||
|
uriparser = callPackage ../development/libraries/uriparser {};
|
||||||
|
|
||||||
urlview = callPackage ../applications/misc/urlview {};
|
urlview = callPackage ../applications/misc/urlview {};
|
||||||
|
|
||||||
usbmuxd = callPackage ../tools/misc/usbmuxd {};
|
usbmuxd = callPackage ../tools/misc/usbmuxd {};
|
||||||
|
Loading…
Reference in New Issue
Block a user