mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
xmloscopy: init at 0.1.1
This commit is contained in:
parent
261a958170
commit
72a4c54c71
52
pkgs/tools/text/xml/xmloscopy/default.nix
Normal file
52
pkgs/tools/text/xml/xmloscopy/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user