My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libroxml/default.nix

20 lines
582 B

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