Skip to content

Commit

Permalink
par2cmdline: 0.6.11 -> 0.6.13 (#23361)
Browse files Browse the repository at this point in the history
* par2cmdline: 0.6.11 -> 0.6.13

* par2cmdline: add autoreconfHook to nativeBuildInputs
  • Loading branch information
ndowens authored and Mic92 committed Mar 2, 2017
1 parent a9c0b0a commit 9addeaf
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions pkgs/tools/networking/par2cmdline/default.nix
@@ -1,26 +1,28 @@
{ stdenv, fetchzip, autoreconfHook }:
{ stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation rec {
name = "par2cmdline-${version}";
version = "0.6.11";
version = "0.6.13";

src = fetchzip {
url = "https://github.com/BlackIkeEagle/par2cmdline/archive/v${version}.tar.gz";
sha256 = "0maywssv468ia7rf8jyq4axwahgli3nfykl7x3zip503psywjj8a";
src = fetchFromGitHub {
owner = "Parchive";
repo = "par2cmdline";
rev = "v${version}";
sha256 = "0jxixkc8vid933nph2mvhgz58my42kwjlzbir38hml2xrzq00d8f";
};

buildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook ];

meta = {
meta = with stdenv.lib; {
homepage = https://github.com/BlackIkeEagle/par2cmdline;
description = "PAR 2.0 compatible file verification and repair tool";
longDescription = ''
par2cmdline is a program for creating and using PAR2 files to detect
damage in data files and repair them if necessary. It can be used with
any kind of file.
'';
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.muflax ];
platforms = stdenv.lib.platforms.all;
license = licenses.gpl2Plus;
maintainers = [ maintainers.muflax ];
platforms = platforms.all;
};
}

0 comments on commit 9addeaf

Please sign in to comment.