Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.11 21 lines 572 B view raw
1{lib, stdenv, fetchurl, curl}: 2 3stdenv.mkDerivation { 4 name = "libnxml-0.18.3"; 5 6 src = fetchurl { 7 url = "https://www.autistici.org/bakunin/libnxml/libnxml-0.18.3.tar.gz"; 8 sha256 = "0ix5b9bxd7r517vhgcxwdviq4m0g0pq46s5g3h04gcqnpbin150g"; 9 }; 10 11 buildInputs = [ curl ]; 12 13 meta = { 14 homepage = "https://www.autistici.org/bakunin/libnxml/"; 15 description = "C library for parsing, writing and creating XML 1.0 and 1.1 files or streams"; 16 license = lib.licenses.lgpl2; 17 18 platforms = lib.platforms.all; 19 maintainers = [ lib.maintainers.viric ]; 20 }; 21}