mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
c-blosc: init at 1.11.3
This commit is contained in:
parent
37f59b3586
commit
a2569f5fd6
24
pkgs/development/libraries/c-blosc/default.nix
Normal file
24
pkgs/development/libraries/c-blosc/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "c-blosc";
|
||||
version = "1.11.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Blosc";
|
||||
repo = "c-blosc";
|
||||
rev = "v${version}";
|
||||
sha256 = "18665lwszwbb48pxgisyxxjh92sr764hv6h7jw8zzsmzdkgzrmcw";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A blocking, shuffling and loss-less compression library";
|
||||
homepage = http://www.blosc.org;
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -7239,6 +7239,8 @@ with pkgs;
|
||||
fetchurl = fetchurlBoot;
|
||||
};
|
||||
|
||||
c-blosc = callPackage ../development/libraries/c-blosc { };
|
||||
|
||||
capnproto = callPackage ../development/libraries/capnproto { };
|
||||
|
||||
ccnx = callPackage ../development/libraries/ccnx { };
|
||||
|
Loading…
Reference in New Issue
Block a user