mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
cm256cc: init at 1.0.5
This commit is contained in:
parent
66b571c10b
commit
5cc3c3a399
23
pkgs/development/libraries/cm256cc/default.nix
Normal file
23
pkgs/development/libraries/cm256cc/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, boost } :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cm256cc";
|
||||
version = "1.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "f4exb";
|
||||
repo = "cm256cc";
|
||||
rev = "v${version}";
|
||||
sha256 = "0d16y3lhdwr644am4sxqpshpbc3qik6dgr1w2c39vy75w9ff61a0";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ boost ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Fast GF(256) Cauchy MDS Block Erasure Codec in C++";
|
||||
homepage = "https://github.com/f4exb/cm256cc";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ alkeryn ];
|
||||
};
|
||||
}
|
@ -157,6 +157,8 @@ in
|
||||
|
||||
cmark = callPackage ../development/libraries/cmark { };
|
||||
|
||||
cm256cc = callPackage ../development/libraries/cm256cc { };
|
||||
|
||||
conftest = callPackage ../development/tools/conftest {};
|
||||
|
||||
corgi = callPackage ../development/tools/corgi { };
|
||||
|
Loading…
Reference in New Issue
Block a user