mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, cpptest, pkgconfig, doxygen, graphviz }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "uriparser-${version}";
|
|
version = "0.8.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/uriparser/Sources/${version}/${name}.tar.bz2";
|
|
sha256 = "1p9c6lr39rjl4bbzi7wl2nsg72gcz8qhicxh9v043qyr0dfcvsjq";
|
|
};
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cpptest doxygen graphviz ];
|
|
|
|
# There is actually no .map files to install in doc for v0.8.4
|
|
# (dot outputs only SVG and PNG in this release)
|
|
preBuild = ''
|
|
substituteInPlace doc/Makefile.am --replace " html/*.map" ""
|
|
substituteInPlace doc/Makefile.in --replace " html/*.map" ""
|
|
'';
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://uriparser.sourceforge.net/;
|
|
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;
|
|
maintainers = with maintainers; [ bosu ];
|
|
};
|
|
}
|