2021-01-11 10:54:33 +03:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2006-06-24 00:11:36 +04:00
|
|
|
|
2014-12-26 05:11:08 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "par2cmdline";
|
2020-02-11 16:03:31 +03:00
|
|
|
version = "0.8.1";
|
2014-12-26 05:11:08 +03:00
|
|
|
|
2017-03-02 13:02:08 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Parchive";
|
|
|
|
repo = "par2cmdline";
|
|
|
|
rev = "v${version}";
|
2020-02-11 16:03:31 +03:00
|
|
|
sha256 = "11mx8q29cr0sryd11awab7y4mhqgbamb1ss77rffjj6in8pb4hdk";
|
2003-12-14 23:36:43 +03:00
|
|
|
};
|
2008-06-25 19:01:04 +04:00
|
|
|
|
2017-03-02 13:02:08 +03:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2008-06-25 19:01:04 +04:00
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://github.com/Parchive/par2cmdline";
|
2014-12-26 05:11:08 +03: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 13:02:08 +03:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.muflax ];
|
|
|
|
platforms = platforms.all;
|
2008-06-25 19:01:04 +04:00
|
|
|
};
|
2003-12-14 23:36:43 +03:00
|
|
|
}
|