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