ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / lb / lbzip2 / package.nix
blob2e7557a310e516cd09cdb985dce19c135981fed5
1 { lib, stdenv, fetchFromGitHub, fetchpatch, gnulib, perl, autoconf, automake }:
3 stdenv.mkDerivation rec {
4   pname = "lbzip2";
5   version = "2.5";
7   src = fetchFromGitHub {
8     owner = "kjn";
9     repo = "lbzip2";
10     rev = "v${version}";
11     sha256 = "1h321wva6fp6khz6x0i6rqb76xh327nw6v5jhgjpcckwdarj5jv8";
12   };
14   patches = [
15     # This avoids an implicit function declaration when building gnulib's
16     # xmalloc.c, addressing a build failure with future compiler version.
17     # https://github.com/kjn/lbzip2/pull/33
18     (fetchpatch {
19       name = "GNULIB_XALLOC_DIE.patch";
20       url = "https://github.com/kjn/lbzip2/commit/32b5167940ec817e454431956040734af405a9de.patch";
21       hash = "sha256-YNgmkh4bksIq5kBgZP+8o97aMm9CzFZldfUW6L5DGXk=";
22     })
23   ];
25   buildInputs = [ gnulib perl ];
26   nativeBuildInputs = [ autoconf automake ];
28   preConfigure = ''
29     substituteInPlace configure.ac --replace 'AC_PREREQ([2.63])' 'AC_PREREQ(2.64)'
30     ./build-aux/autogen.sh
31   '';
33   meta = with lib; {
34     homepage = "https://github.com/kjn/lbzip2"; # Formerly http://lbzip2.org/
35     description = "Parallel bzip2 compression utility";
36     license = licenses.gpl3;
37     maintainers = with maintainers; [ abbradar ];
38     platforms = platforms.unix;
39   };