Merge pull request #66146 from grahamc/xmloscopy

xmloscopy: 0.1.2 -> 0.1.3
This commit is contained in:
Graham Christensen 2019-08-06 07:34:59 -04:00 committed by GitHub
commit 06996d382e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,10 +5,10 @@ fzf, coreutils, libxml2, libxslt, jing, findutils, gnugrep, gnused,
docbook5
}:
stdenv.mkDerivation rec {
name = "xmloscopy-${version}";
version = "0.1.2";
pname = "xmloscopy";
version = "0.1.3";
buildInputs = [
nativeBuildInputs = [
makeWrapper
dev_only_shellcheck
];
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
owner = "grahamc";
repo = "xmloscopy";
rev = "v${version}";
sha256 = "07fcnf1vv0x72lksl1v0frmlh73gca199ldqqbgdjpybjdffz456";
sha256 = "06y5bckrmnq7b5ny2hfvlmdws910jw3xbw5nzy3bcpqsccqnjxrc";
};
installPhase = ''
@ -43,10 +43,11 @@ stdenv.mkDerivation rec {
--set PATH "${spath}"
'';
meta = {
meta = with stdenv.lib; {
description = "wtf is my docbook broken?";
homepage = https://github.com/grahamc/xmloscopy;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ grahamc ];
};
}