summary refs log blame commit diff
path: root/pkgs/development/libraries/libdeflate/default.nix
blob: cc06815bbffc3efffbd1e1352f246346a6f3c1ea (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                 
                       
                  




                         
                                                                    















                                                                       
                               


                                               
{ stdenv, lib, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "libdeflate";
  version = "1.5";

  src = fetchFromGitHub {
    owner = "ebiggers";
    repo = "libdeflate";
    rev = "v${version}";
    sha256 = "1v0y7998p8a8wpblnpdyk5zzvpj8pbrpzxwxmv0b0axrhaarxrf3";
  };

  postPatch = ''
    substituteInPlace Makefile --replace /usr $out
  '';

  configurePhase = ''
    make programs/config.h
  '';

  enableParallelBuilding = true;

  meta = with lib; {
    description = "Fast DEFLATE/zlib/gzip compressor and decompressor";
    license = licenses.mit;
    homepage = https://github.com/ebiggers/libdeflate;
    platforms = platforms.unix;
    maintainers = with maintainers; [ orivej ];
  };
}