1{ stdenv, lib, fetchurl }:
2stdenv.mkDerivation rec {
3 pname = "rtptools";
4 version = "1.22";
5 src = fetchurl {
6 url = "http://www.cs.columbia.edu/irt/software/rtptools/download/rtptools-${version}.tar.gz";
7 sha256 = "0a4c0vmhxibfc58rrxpbav2bsk546chkg50ir4h3i57v4fjb4xic";
8 };
9 meta = {
10 description = "A number of small applications that can be used for processing RTP data";
11 homepage = "https://www.cs.columbia.edu/irt/software/rtptools/";
12 maintainers = [ lib.maintainers.lheckemann ];
13 platforms = lib.platforms.unix;
14 license = lib.licenses.bsd3;
15 };
16}