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
+4 -4
View File
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub }: { stdenv, fetchFromGitHub }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "lzfse"; pname = "lzfse";
version = "2017-03-08"; version = "1.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lzfse"; owner = "lzfse";
repo = "lzfse"; repo = "lzfse";
rev = "88e2d27"; rev = "lzfse-${version}";
sha256 = "1mfh6y6vpvxsdwmqmfbkqkwvxc0pz2dqqc72c6fk9sbsrxxaghd5"; sha256 = "1mfh6y6vpvxsdwmqmfbkqkwvxc0pz2dqqc72c6fk9sbsrxxaghd5";
}; };
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
LZFSE is a Lempel-Ziv style data compression algorithm using Finite State Entropy coding. 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. 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; license = licenses.bsd3;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };