Merge pull request #94292 from danieldk/lzfse-darwin

lzfse: enable Darwin build
This commit is contained in:
Daniël de Kok 2020-08-01 08:25:06 +02:00 committed by GitHub
commit f2b5459d6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "lzfse";
version = "2017-03-08";
version = "1.0";
src = fetchFromGitHub {
owner = "lzfse";
repo = "lzfse";
rev = "88e2d27";
rev = "lzfse-${version}";
sha256 = "1mfh6y6vpvxsdwmqmfbkqkwvxc0pz2dqqc72c6fk9sbsrxxaghd5";
};
@ -23,7 +23,7 @@ stdenv.mkDerivation {
LZFSE is a Lempel-Ziv style data compression algorithm using Finite State Entropy coding.
It targets similar compression rates at higher compression and decompression speed compared to deflate using zlib.
'';
platforms = platforms.linux;
platforms = platforms.unix;
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};