depot/third_party/nixpkgs/pkgs/by-name/pa/par2cmdline-turbo/package.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

25 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";
};
}