Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11-beta 20 lines 582 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "libroxml"; 5 version = "2.3.0"; 6 7 src = fetchurl { 8 url = "http://download.libroxml.net/pool/v2.x/libroxml-${version}.tar.gz"; 9 sha256 = "0y0vc9n4rfbimjp28nx4kdfzz08j5xymh5xjy84l9fhfac5z5a0x"; 10 }; 11 12 meta = with lib; { 13 description = "This library is minimum, easy-to-use, C implementation for xml file parsing"; 14 homepage = "https://www.libroxml.net/"; 15 license = licenses.lgpl3; 16 maintainers = with maintainers; [ mpickering ]; 17 mainProgram = "roxml"; 18 platforms = platforms.unix; 19 }; 20}