nixpkgs/pkgs/development/libraries/libdeflate/default.nix

32 lines
708 B
Nix
Raw Normal View History

2018-12-25 17:04:13 +03:00
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "libdeflate";
2020-01-06 23:10:04 +03:00
version = "1.5";
2018-12-25 17:04:13 +03:00
src = fetchFromGitHub {
owner = "ebiggers";
repo = "libdeflate";
rev = "v${version}";
2020-01-06 23:10:04 +03:00
sha256 = "1v0y7998p8a8wpblnpdyk5zzvpj8pbrpzxwxmv0b0axrhaarxrf3";
2018-12-25 17:04:13 +03:00
};
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;
2020-01-11 12:20:00 +03:00
platforms = platforms.unix;
2018-12-25 17:04:13 +03:00
maintainers = with maintainers; [ orivej ];
};
}