lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 31 lines 716 B view raw
1{lib, stdenv, fetchFromGitHub 2, autoconf, automake, mandoc }: 3 4stdenv.mkDerivation rec { 5 pname = "owamp"; 6 version = "4.4.6"; 7 8 src = fetchFromGitHub { 9 owner = "perfsonar"; 10 repo = "owamp"; 11 rev = "v${version}"; 12 sha256= "5o85XSn84nOvNjIzlaZ2R6/TSHpKbWLXTO0FmqWsNMU="; 13 fetchSubmodules = true; 14 }; 15 16 nativeBuildInputs = [ autoconf automake ]; 17 buildInputs = [ mandoc ]; 18 19 preConfigure = '' 20 I2util/bootstrap.sh 21 ./bootstrap 22 ''; 23 24 meta = with lib; { 25 homepage = "http://software.internet2.edu/owamp/"; 26 description = "A tool for performing one-way active measurements"; 27 platforms = platforms.linux; 28 maintainers = [maintainers.teto]; 29 license = licenses.asl20; 30 }; 31}