2017-03-09 14:54:04 -08:00
|
|
|
{ stdenv, fetchFromGitHub, bison, flex }:
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2017-03-09 14:54:04 -08:00
|
|
|
version = "1.0";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "packetdrill";
|
2017-03-09 14:54:04 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "packetdrill";
|
|
|
|
rev = "58a7865c47e3a71e92ca0e4cc478c320e1c35f82";
|
|
|
|
sha256 = "09sqiakmn63idfjhy2ddf1456sfhi8yhsbp8lxvc1yfjikjxwwbc";
|
|
|
|
};
|
|
|
|
setSourceRoot = ''
|
|
|
|
export sourceRoot=$(realpath */gtests/net/packetdrill)
|
|
|
|
'';
|
2019-11-03 04:44:26 -08:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-Wno-error=unused-result"
|
|
|
|
"-Wno-error=stringop-truncation"
|
|
|
|
"-Wno-error=address-of-packed-member"
|
|
|
|
];
|
2017-03-10 14:21:16 -08:00
|
|
|
nativeBuildInputs = [ bison flex ];
|
2017-03-09 14:54:04 -08:00
|
|
|
patches = [ ./nix.patch ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
|
|
description = "Quick, precise tests for entire TCP/UDP/IPv4/IPv6 network stacks";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/google/packetdrill";
|
2017-03-09 14:54:04 -08:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2017-09-22 11:03:17 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-03-09 14:54:04 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ dmjio cleverca22 ];
|
|
|
|
};
|
|
|
|
}
|