2017-03-02 10:02:08 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2006-06-23 20:11:36 +00:00
|
|
|
|
2014-12-26 02:11:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "par2cmdline-${version}";
|
2018-02-27 17:28:46 +00:00
|
|
|
version = "0.8.0";
|
2014-12-26 02:11:08 +00:00
|
|
|
|
2017-03-02 10:02:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Parchive";
|
|
|
|
repo = "par2cmdline";
|
|
|
|
rev = "v${version}";
|
2018-02-27 17:28:46 +00:00
|
|
|
sha256 = "0f1jsd5sw2wynjzi7yjqjaf13yhyjfdid91p8yh0jn32y03kjyrz";
|
2003-12-14 20:36:43 +00:00
|
|
|
};
|
2008-06-25 15:01:04 +00:00
|
|
|
|
2017-03-02 10:02:08 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2008-06-25 15:01:04 +00:00
|
|
|
|
2017-03-02 10:02:08 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-06 12:48:24 +00:00
|
|
|
homepage = https://github.com/Parchive/par2cmdline;
|
2014-12-26 02:11:08 +00:00
|
|
|
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 10:02:08 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.muflax ];
|
|
|
|
platforms = platforms.all;
|
2008-06-25 15:01:04 +00:00
|
|
|
};
|
2003-12-14 20:36:43 +00:00
|
|
|
}
|