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

32 lines
716 B
Nix
Raw Normal View History

2018-12-25 15:04:13 +01:00
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "libdeflate";
2020-05-20 00:22:09 +02:00
version = "1.6";
2018-12-25 15:04:13 +01:00
src = fetchFromGitHub {
owner = "ebiggers";
repo = "libdeflate";
rev = "v${version}";
2020-05-20 00:22:09 +02:00
sha256 = "1rhichmalqz7p1hiwvn6y0isralpbf0w5nyjp4lg0asawkxy9cww";
2018-12-25 15:04:13 +01:00
};
postPatch = ''
2020-05-20 00:23:11 +02:00
substituteInPlace Makefile --replace /usr/local $out
2018-12-25 15:04:13 +01:00
'';
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 10:20:00 +01:00
platforms = platforms.unix;
2018-12-25 15:04:13 +01:00
maintainers = with maintainers; [ orivej ];
};
}