Unverified Commit 47e2e650 authored by Janik's avatar Janik Committed by GitHub
Browse files

Merge pull request #264706 from proglottis/par2cmdline-turbo_init

par2cmdline-turbo: init at 1.1.1
parents cbb51cb1 e089fddc
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -14994,6 +14994,12 @@
    githubId = 18549627;
    name = "Proglodyte";
  };
  proglottis = {
    email = "proglottis@gmail.com";
    github = "proglottis";
    githubId = 74465;
    name = "James Fargher";
  };
  progval = {
    email = "progval+nix@progval.net";
    github = "progval";
+25 −0
Original line number Diff line number Diff line
{ 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";
  };
}