2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub
|
2018-06-05 13:11:27 +00:00
|
|
|
, autoconf, automake, mandoc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "owamp";
|
2018-06-05 13:11:27 +00:00
|
|
|
version = "3.5.6";
|
|
|
|
buildInputs = [ autoconf automake mandoc ];
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "perfsonar";
|
|
|
|
repo = "owamp";
|
|
|
|
rev = version;
|
|
|
|
sha256="019rcshmrqk8pfp510j5jvazdcnz0igfkwv44mfxb5wirzj9p6s7";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
I2util/bootstrap.sh
|
|
|
|
./bootstrap
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://software.internet2.edu/owamp/";
|
2018-06-05 13:11:27 +00:00
|
|
|
description = ''A tool for performing one-way active measurements'';
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [maintainers.teto];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|