summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-23 18:18:08 +0200
committerGitHub <noreply@github.com>2021-07-23 18:18:08 +0200
commit8dec9c8797bda05f5d78c10da52433b66aab00b2 (patch)
tree4c52cd21e3620e56beded03fa9d71b37300eb93e /pkgs/os-specific/linux
parentb5db65711c9ad8fac27ee8591e2acbde261d43be (diff)
parentec132b7fde1e2aacd85da6ff910bd35d315dd0eb (diff)
downloadnixpkgs-8dec9c8797bda05f5d78c10da52433b66aab00b2.tar
nixpkgs-8dec9c8797bda05f5d78c10da52433b66aab00b2.tar.gz
nixpkgs-8dec9c8797bda05f5d78c10da52433b66aab00b2.tar.bz2
nixpkgs-8dec9c8797bda05f5d78c10da52433b66aab00b2.tar.lz
nixpkgs-8dec9c8797bda05f5d78c10da52433b66aab00b2.tar.xz
nixpkgs-8dec9c8797bda05f5d78c10da52433b66aab00b2.tar.zst
nixpkgs-8dec9c8797bda05f5d78c10da52433b66aab00b2.zip
Merge pull request #131191 from Mic92/ofp
ofp: remove
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;
-  };
-}