Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 stdenv, 3 lib, 4 fetchurl, 5}: 6stdenv.mkDerivation rec { 7 pname = "rtptools"; 8 version = "1.22"; 9 src = fetchurl { 10 url = "http://www.cs.columbia.edu/irt/software/rtptools/download/rtptools-${version}.tar.gz"; 11 sha256 = "0a4c0vmhxibfc58rrxpbav2bsk546chkg50ir4h3i57v4fjb4xic"; 12 }; 13 meta = { 14 description = "Number of small applications that can be used for processing RTP data"; 15 homepage = "https://www.cs.columbia.edu/irt/software/rtptools/"; 16 maintainers = [ ]; 17 platforms = lib.platforms.unix; 18 license = lib.licenses.bsd3; 19 }; 20}