Files
nixpkgs/pkgs/by-name/xm/xmloscopy/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

66 lines
1.2 KiB
Nix

{
stdenv,
lib,
makeWrapper,
dev_only_shellcheck ? null,
fetchFromGitHub,
fzf,
coreutils,
libxml2,
libxslt,
jing-trang,
findutils,
gnugrep,
gnused,
docbook5,
}:
stdenv.mkDerivation rec {
pname = "xmloscopy";
version = "0.1.3";
nativeBuildInputs = [
makeWrapper
dev_only_shellcheck
];
spath = lib.makeBinPath [
fzf
coreutils
libxml2
libxslt
jing-trang
findutils
gnugrep
gnused
];
src = fetchFromGitHub {
owner = "grahamc";
repo = "xmloscopy";
rev = "v${version}";
sha256 = "06y5bckrmnq7b5ny2hfvlmdws910jw3xbw5nzy3bcpqsccqnjxrc";
};
installPhase = ''
sed -i "s/hard to say/v${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 = with lib; {
description = "XML debugger";
mainProgram = "xmloscopy";
homepage = "https://github.com/grahamc/xmloscopy";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ grahamc ];
};
}