1 { lib, stdenv, fetchFromGitHub, gnulib, perl, autoconf, automake }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1h321wva6fp6khz6x0i6rqb76xh327nw6v5jhgjpcckwdarj5jv8";
14 buildInputs = [ gnulib perl ];
15 nativeBuildInputs = [ autoconf automake ];
18 substituteInPlace configure.ac --replace 'AC_PREREQ([2.63])' 'AC_PREREQ(2.64)'
19 ./build-aux/autogen.sh
23 homepage = "https://github.com/kjn/lbzip2"; # Formerly http://lbzip2.org/
24 description = "Parallel bzip2 compression utility";
25 license = licenses.gpl3;
26 maintainers = with maintainers; [ abbradar ];
27 platforms = platforms.unix;