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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
806 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost } :
2019-08-24 21:55:22 +02:00
stdenv.mkDerivation rec {
pname = "cm256cc";
2021-02-20 20:31:46 +01:00
version = "1.1.0";
2019-08-24 21:55:22 +02:00
src = fetchFromGitHub {
owner = "f4exb";
repo = "cm256cc";
rev = "v${version}";
2021-02-20 20:31:46 +01:00
sha256 = "sha256-T7ZUVVYGdzAialse//MoqWCVNBpbZvzWMAKc0cw7O9k=";
2019-08-24 21:55:22 +02:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ];
2022-05-16 10:16:34 +02:00
# https://github.com/f4exb/cm256cc/issues/16
postPatch = ''
substituteInPlace libcm256cc.pc.in \
--replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
'';
meta = with lib; {
2019-08-24 21:55:22 +02: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-27 01:17:02 +02:00
license = licenses.gpl3;
2019-08-24 21:55:22 +02:00
};
}