Merge pull request #264706 from proglottis/par2cmdline-turbo_init

par2cmdline-turbo: init at 1.1.1
This commit is contained in:
Janik 2024-01-10 21:38:48 +01:00 committed by GitHub
commit 47e2e650d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -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";

View File

@ -0,0 +1,25 @@
{ 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";
};
}