par2cmdline: 0.6.11 -> 0.6.13 (#23361)

* par2cmdline: 0.6.11 -> 0.6.13

* par2cmdline: add autoreconfHook to nativeBuildInputs
This commit is contained in:
ndowens 2017-03-02 04:02:08 -06:00 committed by Jörg Thalheim
parent a9c0b0a754
commit 9addeafe1a

View File

@ -1,17 +1,19 @@
{ stdenv, fetchzip, autoreconfHook }: { stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "par2cmdline-${version}"; name = "par2cmdline-${version}";
version = "0.6.11"; version = "0.6.13";
src = fetchzip { src = fetchFromGitHub {
url = "https://github.com/BlackIkeEagle/par2cmdline/archive/v${version}.tar.gz"; owner = "Parchive";
sha256 = "0maywssv468ia7rf8jyq4axwahgli3nfykl7x3zip503psywjj8a"; repo = "par2cmdline";
rev = "v${version}";
sha256 = "0jxixkc8vid933nph2mvhgz58my42kwjlzbir38hml2xrzq00d8f";
}; };
buildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
meta = { meta = with stdenv.lib; {
homepage = https://github.com/BlackIkeEagle/par2cmdline; homepage = https://github.com/BlackIkeEagle/par2cmdline;
description = "PAR 2.0 compatible file verification and repair tool"; description = "PAR 2.0 compatible file verification and repair tool";
longDescription = '' longDescription = ''
@ -19,8 +21,8 @@ stdenv.mkDerivation rec {
damage in data files and repair them if necessary. It can be used with damage in data files and repair them if necessary. It can be used with
any kind of file. any kind of file.
''; '';
license = stdenv.lib.licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.muflax ]; maintainers = [ maintainers.muflax ];
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }