summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-23 18:01:08 +0000
committerGitHub <noreply@github.com>2021-07-23 18:01:08 +0000
commitfa1fcd46e9abeea6008f7c3ce1e9e8a542864706 (patch)
tree1cb2636ad9fcd26e16af8e72e75888c19b8f05f5 /pkgs/os-specific/linux
parent55a4a2d60a420ca83f31e3f659beb295fd6b8626 (diff)
parent981a57499125660b87f012a96d613bf7701ce5c8 (diff)
downloadnixpkgs-fa1fcd46e9abeea6008f7c3ce1e9e8a542864706.tar
nixpkgs-fa1fcd46e9abeea6008f7c3ce1e9e8a542864706.tar.gz
nixpkgs-fa1fcd46e9abeea6008f7c3ce1e9e8a542864706.tar.bz2
nixpkgs-fa1fcd46e9abeea6008f7c3ce1e9e8a542864706.tar.lz
nixpkgs-fa1fcd46e9abeea6008f7c3ce1e9e8a542864706.tar.xz
nixpkgs-fa1fcd46e9abeea6008f7c3ce1e9e8a542864706.tar.zst
nixpkgs-fa1fcd46e9abeea6008f7c3ce1e9e8a542864706.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/ofp/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/os-specific/linux/ofp/default.nix b/pkgs/os-specific/linux/ofp/default.nix
deleted file mode 100644
index 5defafeba80..00000000000
--- a/pkgs/os-specific/linux/ofp/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
-, openssl, libpcap, odp-dpdk, dpdk
-}:
-
-stdenv.mkDerivation rec {
-  pname = "ofp";
-  version = "2.0.0";
-
-  src = fetchFromGitHub {
-    owner = "OpenFastPath";
-    repo = "ofp";
-    rev = version;
-    sha256 = "05902593fycgkwzk5g7wzgk0k40nrrgybplkdka3rqnlj6aydhqf";
-  };
-
-  nativeBuildInputs = [ pkg-config autoreconfHook ];
-  buildInputs = [ openssl libpcap odp-dpdk dpdk ];
-
-  dontDisableStatic = true;
-
-  postPatch = ''
-    substituteInPlace configure.ac --replace m4_esyscmd m4_esyscmd_s
-    substituteInPlace scripts/git_hash.sh --replace /bin/bash ${stdenv.shell}
-    echo ${version} > .scmversion
-  '';
-
-  configureFlags = [
-    "--with-odp=${odp-dpdk}"
-    "--with-odp-lib=odp-dpdk"
-    "--disable-shared"
-  ];
-
-  meta = with lib; {
-    description = "High performance TCP/IP stack";
-    homepage = "http://www.openfastpath.org";
-    license = licenses.bsd3;
-    platforms =  [ "x86_64-linux" ];
-    maintainers = [ maintainers.abuibrahim ];
-    broken = true;
-  };
-}