summary refs log tree commit diff
path: root/pkgs/development/libraries/libnxml/default.nix
blob: 0a6c58c8a0152c71c0cc7f13e3a21281a7df927b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ];
  };
}