2021-01-11 08:54:33 +01:00
|
|
|
{lib, stdenv, fetchFromGitHub
|
2018-06-05 15:11:27 +02:00
|
|
|
, autoconf, automake, mandoc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "owamp";
|
2018-06-05 15:11:27 +02: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 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://software.internet2.edu/owamp/";
|
2021-01-24 10:19:10 +01:00
|
|
|
description = "A tool for performing one-way active measurements";
|
2018-06-05 15:11:27 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [maintainers.teto];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|