about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libnxml/default.nix
blob: 846170011437b547a1f639d74490bcae3fc85b1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{lib, 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 = lib.licenses.lgpl2;

    platforms = lib.platforms.all;
    maintainers = [ lib.maintainers.viric ];
  };
}