Files
nixpkgs/pkgs/development/libraries/libnxml/default.nix
T
Anderson Torres 9a624d10e3 treewide: remove viric from meta.maintainers [orphans]
Since theey is not active from at least six years.

All the packages on this commit became orphans.

---------------------------------------------------------------------------
There are files not covered by this commit, because they will be adopted
soon. Namely:

- pkgs/by-name/zs/zsync/package.nix
- pkgs/games/bsdgames/default.nix
- pkgs/misc/ghostscript/default.nix
- pkgs/os-specific/linux/kernel/perf/default.nix
- pkgs/tools/system/logrotate/default.nix
2024-07-28 11:48:51 -03:00

23 lines
574 B
Nix

{lib, stdenv, fetchurl, curl}:
stdenv.mkDerivation rec {
pname = "libnxml";
version = "0.18.3";
src = fetchurl {
url = "https://www.autistici.org/bakunin/libnxml/libnxml-${version}.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 = [ ];
};
}