openfec: init at 1.4.2
This commit is contained in:
parent
247beb6482
commit
f053652a8a
2 changed files with 42 additions and 0 deletions
40
pkgs/development/libraries/openfec/default.nix
Normal file
40
pkgs/development/libraries/openfec/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ stdenv, lib, fetchzip, cmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "openfec";
|
||||||
|
version = "1.4.2";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "http://openfec.org/files/openfec_v1_4_2.tgz";
|
||||||
|
sha256 = "sha256:0c2lg8afr7lqpzrsi0g44a6h6s7nq4vz7yc9vm2k57ph2y6r86la";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DDEBUG:STRING=OFF" ];
|
||||||
|
|
||||||
|
installPhase =
|
||||||
|
let so = stdenv.hostPlatform.extensions.sharedLibrary;
|
||||||
|
in ''
|
||||||
|
# This is pretty horrible but sadly there is not installation procedure
|
||||||
|
# provided.
|
||||||
|
mkdir -p $dev/include
|
||||||
|
cp -R ../src/* $dev/include
|
||||||
|
find $dev/include -type f -a ! -iname '*.h' -delete
|
||||||
|
|
||||||
|
install -D -m755 -t $out/lib ../bin/Release/libopenfec${so}
|
||||||
|
ln -s libopenfec${so} $out/lib/libopenfec${so}.1
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Application-level Forward Erasure Correction codes";
|
||||||
|
homepage = "https://github.com/roc-streaming/openfec";
|
||||||
|
license = licenses.cecill-c;
|
||||||
|
maintainers = with maintainers; [ bgamari ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8366,6 +8366,8 @@ with pkgs;
|
||||||
opendylan-bootstrap = opendylan_bin;
|
opendylan-bootstrap = opendylan_bin;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
openfec = callPackage ../development/libraries/openfec { };
|
||||||
|
|
||||||
ophis = python3Packages.callPackage ../development/compilers/ophis { };
|
ophis = python3Packages.callPackage ../development/compilers/ophis { };
|
||||||
|
|
||||||
opendylan_bin = callPackage ../development/compilers/opendylan/bin.nix { };
|
opendylan_bin = callPackage ../development/compilers/opendylan/bin.nix { };
|
||||||
|
|
Loading…
Reference in a new issue