nixpkgs/pkgs/by-name/cm/cm256cc/package.nix

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

41 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, boost } :
2019-08-24 19:55:22 +00:00
stdenv.mkDerivation rec {
pname = "cm256cc";
2021-02-20 19:31:46 +00:00
version = "1.1.0";
2019-08-24 19:55:22 +00:00
src = fetchFromGitHub {
owner = "f4exb";
repo = "cm256cc";
rev = "v${version}";
2021-02-20 19:31:46 +00:00
sha256 = "sha256-T7ZUVVYGdzAialse//MoqWCVNBpbZvzWMAKc0cw7O9k=";
2019-08-24 19:55:22 +00:00
};
patches = [
# Pull fix pending upstream inclusion for gcc-13 support:
# https://github.com/f4exb/cm256cc/pull/18
(fetchpatch {
name = "gcc-13.patch";
url = "https://github.com/f4exb/cm256cc/commit/a7f142bcdae8be1c646d67176ba0ba0f7e8dcd68.patch";
hash = "sha256-J7bm44sqnGsdPhJxQrE8LDxZ6tkTzLslHQnnKmtgrtM=";
})
];
2019-08-24 19:55:22 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ];
2022-05-16 08:16:34 +00: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 19:55:22 +00:00
description = "Fast GF(256) Cauchy MDS Block Erasure Codec in C++";
homepage = "https://github.com/f4exb/cm256cc";
platforms = platforms.unix;
2019-08-24 19:55:22 +00:00
maintainers = with maintainers; [ alkeryn ];
2020-06-26 23:17:02 +00:00
license = licenses.gpl3;
2019-08-24 19:55:22 +00:00
};
}