python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / cm256cc / default.nix
blob3a2538898cce203caf81f8f4595e2e209f2c6c6d
1 { lib, stdenv, fetchFromGitHub, cmake, boost } :
3 stdenv.mkDerivation rec {
4   pname = "cm256cc";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "f4exb";
9     repo = "cm256cc";
10     rev = "v${version}";
11     sha256 = "sha256-T7ZUVVYGdzAialse//MoqWCVNBpbZvzWMAKc0cw7O9k=";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ boost ];
17   # https://github.com/f4exb/cm256cc/issues/16
18   postPatch = ''
19     substituteInPlace libcm256cc.pc.in \
20       --replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
21   '';
23   meta = with lib; {
24     description = "Fast GF(256) Cauchy MDS Block Erasure Codec in C++";
25     homepage = "https://github.com/f4exb/cm256cc";
26     platforms = platforms.linux;
27     maintainers = with maintainers; [ alkeryn ];
28     license = licenses.gpl3;
29   };