mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
29 lines
690 B
Nix
29 lines
690 B
Nix
{stdenv, fetchFromGitHub
|
|
, autoconf, automake, mandoc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "owamp";
|
|
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;
|
|
};
|
|
}
|