about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libnxml
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libnxml')
-rw-r--r--nixpkgs/pkgs/development/libraries/libnxml/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libnxml/default.nix b/nixpkgs/pkgs/development/libraries/libnxml/default.nix
new file mode 100644
index 000000000000..dc5e8dfc55e9
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libnxml/default.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl, curl}:
+
+stdenv.mkDerivation {
+  name = "libnxml-0.18.3";
+
+  src = fetchurl {
+    url = "https://www.autistici.org/bakunin/libnxml/libnxml-0.18.3.tar.gz";
+    sha256 = "0ix5b9bxd7r517vhgcxwdviq4m0g0pq46s5g3h04gcqnpbin150g";
+  };
+
+  buildInputs = [ curl ];
+
+  meta = {
+    homepage = "https://www.autistici.org/bakunin/libnxml/";
+    description = "C library for parsing, writing and creating XML 1.0 and 1.1 files or streams";
+    license = stdenv.lib.licenses.lgpl2;
+
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.viric ];
+  };
+}