nixpkgs/pkgs/development/libraries/cm256cc/default.nix

25 lines
610 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost } :
2019-08-24 12:55:22 -07:00
stdenv.mkDerivation rec {
pname = "cm256cc";
2021-02-20 11:31:46 -08:00
version = "1.1.0";
2019-08-24 12:55:22 -07:00
src = fetchFromGitHub {
owner = "f4exb";
repo = "cm256cc";
rev = "v${version}";
2021-02-20 11:31:46 -08:00
sha256 = "sha256-T7ZUVVYGdzAialse//MoqWCVNBpbZvzWMAKc0cw7O9k=";
2019-08-24 12:55:22 -07:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ];
meta = with lib; {
2019-08-24 12:55:22 -07:00
description = "Fast GF(256) Cauchy MDS Block Erasure Codec in C++";
homepage = "https://github.com/f4exb/cm256cc";
platforms = platforms.linux;
maintainers = with maintainers; [ alkeryn ];
2020-06-26 16:17:02 -07:00
license = licenses.gpl3;
2019-08-24 12:55:22 -07:00
};
}