3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libnixxml/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.3 KiB
Nix
Raw Normal View History

2021-05-04 18:30:16 +01:00
{ fetchFromGitHub, lib, stdenv, autoreconfHook, pkg-config, libxml2, gd, glib, getopt, libxslt, nix, bash}:
stdenv.mkDerivation {
2021-03-03 00:56:27 +00:00
pname = "libnixxml";
version = "unstable-2020-06-25";
src = fetchFromGitHub {
owner = "svanderburg";
repo = "libnixxml";
rev = "54c04a5fdbc8661b2445a7527f499e0a77753a1a";
sha256 = "sha256-HKQnCkO1TDs1e0MDil0Roq4YRembqRHQvb7lK3GAftQ=";
};
2021-03-03 00:56:27 +00:00
2021-05-04 18:30:16 +01:00
prePatch = ''
# Remove broken test
substituteInPlace tests/draw/Makefile.am \
--replace "draw-wrong.sh" ""
rm tests/draw/draw-wrong.sh
2021-05-04 18:30:16 +01:00
# Fix bash path
substituteInPlace scripts/nixexpr2xml.in \
--replace "/bin/bash" "${bash}/bin/bash"
'';
preAutoreconf = ''
# Copied from bootstrap script
ln -s README.md README
mkdir -p config
2021-03-03 00:56:27 +00:00
'';
configureFlags = [ "--with-gd" "--with-glib" ];
CFLAGS = "-Wall";
2021-03-03 00:56:27 +00:00
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
pkg-config
getopt
libxslt
];
buildInputs = [
2021-05-04 18:30:16 +01:00
bash
libxml2
gd.dev
glib
nix
];
checkInputs = [
nix
];
2021-03-03 00:56:27 +00:00
doCheck = true;
meta = with lib; {
description = "XML-based Nix-friendly data integration library";
2021-03-03 00:56:27 +00:00
homepage = "https://github.com/svanderburg/libnixxml";
license = licenses.mit;
maintainers = with maintainers; [ tomberek ];
platforms = platforms.unix;
};
}