29 lines
710 B
Nix
29 lines
710 B
Nix
|
{stdenv, fetchurl, fetchFromGitHub
|
||
|
, autoconf, automake, mandoc }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "owamp-${version}";
|
||
|
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
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = http://software.internet2.edu/owamp/;
|
||
|
description = ''A tool for performing one-way active measurements'';
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [maintainers.teto];
|
||
|
license = licenses.asl20;
|
||
|
};
|
||
|
}
|