summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pktgen/default.nix
diff options
context:
space:
mode:
authorRuslan Babayev <ruslan@babayev.com>2017-09-08 18:29:26 -0700
committerRuslan Babayev <ruslan@babayev.com>2017-09-08 18:33:39 -0700
commitf1e1d7149457fcefa2aee086abe4006ec2ccb123 (patch)
tree943c51c7199b758d8d7869f2f1d58012988e5134 /pkgs/os-specific/linux/pktgen/default.nix
parentf6075fc2111c82aa646cd955609823b27a7ccb88 (diff)
downloadnixpkgs-f1e1d7149457fcefa2aee086abe4006ec2ccb123.tar
nixpkgs-f1e1d7149457fcefa2aee086abe4006ec2ccb123.tar.gz
nixpkgs-f1e1d7149457fcefa2aee086abe4006ec2ccb123.tar.bz2
nixpkgs-f1e1d7149457fcefa2aee086abe4006ec2ccb123.tar.lz
nixpkgs-f1e1d7149457fcefa2aee086abe4006ec2ccb123.tar.xz
nixpkgs-f1e1d7149457fcefa2aee086abe4006ec2ccb123.tar.zst
nixpkgs-f1e1d7149457fcefa2aee086abe4006ec2ccb123.zip
pktgen: 3.1.0 -> 3.4.0
Diffstat (limited to 'pkgs/os-specific/linux/pktgen/default.nix')
-rw-r--r--pkgs/os-specific/linux/pktgen/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/pktgen/default.nix b/pkgs/os-specific/linux/pktgen/default.nix
index 68237d70f51..9bc8967453b 100644
--- a/pkgs/os-specific/linux/pktgen/default.nix
+++ b/pkgs/os-specific/linux/pktgen/default.nix
@@ -5,11 +5,11 @@
 
 stdenv.mkDerivation rec {
   name = "pktgen-${version}";
-  version = "3.1.0";
+  version = "3.4.0";
 
   src = fetchurl {
-    url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/pktgen-v${version}.tar.gz";
-    sha256 = "1a1dl8h8p76wlcjlvn736mz4nc2nc5c3764rlydiz86wl45mb0nb";
+    url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/pktgen-${version}.tar.gz";
+    sha256 = "0fcyb56d4mkvchi5i8s3m210f5c3xa8zbjb08ranpa1a2k1kzfg5";
   };
 
   nativeBuildInputs = stdenv.lib.optionals withGtk [ pkgconfig ];
@@ -24,6 +24,8 @@ stdenv.mkDerivation rec {
 
   NIX_CFLAGS_COMPILE = [ "-march=core2" ];
 
+  patches = [ ./Makefile.patch ];
+
   postPatch = ''
     substituteInPlace lib/lua/src/luaconf.h --replace /usr/local $out
     substituteInPlace lib/common/lscpu.h --replace /usr/bin/lscpu ${utillinux}/bin/lscpu
@@ -31,7 +33,7 @@ stdenv.mkDerivation rec {
 
   installPhase = ''
     install -d $out/bin
-    install -m 0755 app/app/${RTE_TARGET}/app/pktgen $out/bin
+    install -m 0755 app/${RTE_TARGET}/pktgen $out/bin
     install -d $out/lib/lua/5.3
     install -m 0644 Pktgen.lua $out/lib/lua/5.3
   '';