crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / networking / par2cmdline / default.nix
blob8ccf5d54ebbfe22598448744760e3dc1f8c7083b
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "par2cmdline";
5   version = "0.8.1";
7   src = fetchFromGitHub {
8     owner = "Parchive";
9     repo = "par2cmdline";
10     rev = "v${version}";
11     sha256 = "11mx8q29cr0sryd11awab7y4mhqgbamb1ss77rffjj6in8pb4hdk";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     homepage = "https://github.com/Parchive/par2cmdline";
18     description = "PAR 2.0 compatible file verification and repair tool";
19     longDescription = ''
20       par2cmdline is a program for creating and using PAR2 files to detect
21       damage in data files and repair them if necessary. It can be used with
22       any kind of file.
23     '';
24     license = licenses.gpl2Plus;
25     maintainers = [ ];
26     platforms = platforms.all;
27   };