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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
582 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-10-03 21:54:50 +00:00
stdenv.mkDerivation rec {
pname = "libroxml";
version = "2.3.0";
2017-10-03 21:54:50 +00:00
src = fetchurl {
url = "http://download.libroxml.net/pool/v2.x/libroxml-${version}.tar.gz";
2017-10-03 21:54:50 +00:00
sha256 = "0y0vc9n4rfbimjp28nx4kdfzz08j5xymh5xjy84l9fhfac5z5a0x";
};
meta = with lib; {
description = "This library is minimum, easy-to-use, C implementation for xml file parsing";
homepage = "https://www.libroxml.net/";
2017-10-03 21:54:50 +00:00
license = licenses.lgpl3;
maintainers = with maintainers; [ mpickering ];
mainProgram = "roxml";
platforms = platforms.unix;
2017-10-03 21:54:50 +00:00
};
}