2017-03-02 11:02:08 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2006-06-23 22:11:36 +02:00
|
|
|
|
2014-12-26 03:11:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "par2cmdline-${version}";
|
2017-03-02 11:02:08 +01:00
|
|
|
version = "0.6.13";
|
2014-12-26 03:11:08 +01:00
|
|
|
|
2017-03-02 11:02:08 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Parchive";
|
|
|
|
repo = "par2cmdline";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0jxixkc8vid933nph2mvhgz58my42kwjlzbir38hml2xrzq00d8f";
|
2003-12-14 21:36:43 +01:00
|
|
|
};
|
2008-06-25 17:01:04 +02:00
|
|
|
|
2017-03-02 11:02:08 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2008-06-25 17:01:04 +02:00
|
|
|
|
2017-03-02 11:02:08 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-26 03:11:08 +01:00
|
|
|
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.
|
|
|
|
'';
|
2017-03-02 11:02:08 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.muflax ];
|
|
|
|
platforms = platforms.all;
|
2008-06-25 17:01:04 +02:00
|
|
|
};
|
2003-12-14 21:36:43 +01:00
|
|
|
}
|