nixpkgs/pkgs/by-name/pa/par2cmdline-turbo/package.nix
James Fargher e089fddcab par2cmdline-turbo: init at 1.1.1
This is a fork of par2cmdline that adds performance improvements. This
package can be used with sabnzbd to improve verification and repair
performance.

https://sabnzbd.org/wiki/installation/par2cmdline-turbo
2024-01-11 07:32:08 +13:00

26 lines
692 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "par2cmdline-turbo";
version = "1.1.1";
src = fetchFromGitHub {
owner = "animetosho";
repo = "par2cmdline-turbo";
rev = "v${version}";
hash = "sha256-EJ6gBja5tPrfsfbqYs8pZDEPmJ6mCPfkUYOTTMFaKG8=";
};
nativeBuildInputs = [ autoreconfHook ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://github.com/animetosho/par2cmdline-turbo";
description = "par2cmdline × ParPar: speed focused par2cmdline fork";
license = licenses.gpl2Plus;
maintainers = [ maintainers.proglottis ];
platforms = platforms.all;
mainProgram = "par2";
};
}