xmloscopy: init at 0.1.1

This commit is contained in:
Graham Christensen 2018-03-24 21:46:59 -04:00
parent 261a958170
commit 72a4c54c71
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
2 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,52 @@
{ stdenv, lib, makeWrapper, dev_only_shellcheck ? null,
fetchFromGitHub,
fzf, coreutils, libxml2, libxslt, jing, findutils, gnugrep, gnused,
docbook5
}:
stdenv.mkDerivation rec {
name = "xmloscopy-${version}";
version = "v0.1.1";
buildInputs = [
makeWrapper
dev_only_shellcheck
];
spath = lib.makeBinPath [
fzf
coreutils
libxml2
libxslt
jing
findutils
gnugrep
gnused
];
src = fetchFromGitHub {
owner = "grahamc";
repo = "xmloscopy";
rev = version;
sha256 = "01i9hr0hh87p4qxfqx4vhml2mpdqggq2326vy7nymm2d4xpa5i1i";
};
installPhase = ''
sed -i "s/hard to say/${version}/" ./xmloscopy
type -P shellcheck && shellcheck ./xmloscopy
chmod +x ./xmloscopy
patchShebangs ./xmloscopy
mkdir -p $out/bin
cp ./xmloscopy $out/bin/
wrapProgram $out/bin/xmloscopy \
--set RNG "${docbook5}/xml/rng/docbook/docbook.rng" \
--set PATH "${spath}"
'';
meta = {
description = "wtf is my docbook broken?";
homepage = https://github.com/grahamc/xmloscopy;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -5632,6 +5632,8 @@ with pkgs;
xmlroff = callPackage ../tools/typesetting/xmlroff { };
xmloscopy = callPackage ../tools/text/xml/xmloscopy { };
xmlstarlet = callPackage ../tools/text/xml/xmlstarlet { };
xmlto = callPackage ../tools/typesetting/xmlto {