summary refs log tree commit diff
path: root/pkgs/development/libraries/cm256cc/default.nix
blob: aaf409981024ff5ca66e7f1455d9bb662d9e6fc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}