mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge pull request #94292 from danieldk/lzfse-darwin
lzfse: enable Darwin build
This commit is contained in:
commit
f2b5459d6d
@ -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; [ ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user