mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
uriparser: init at 0.8.2
This commit is contained in:
parent
49791a4dd4
commit
ff6fd0ea86
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 { };
|
||||
|
||||
uriparser = callPackage ../development/libraries/uriparser {};
|
||||
|
||||
urlview = callPackage ../applications/misc/urlview {};
|
||||
|
||||
usbmuxd = callPackage ../tools/misc/usbmuxd {};
|
||||
|
Loading…
Reference in New Issue
Block a user