bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
16 lines
583 B
Nix
16 lines
583 B
Nix
{ stdenv, lib, fetchurl }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "rtptools";
|
|
version = "1.22";
|
|
src = fetchurl {
|
|
url = "http://www.cs.columbia.edu/irt/software/rtptools/download/rtptools-${version}.tar.gz";
|
|
sha256 = "0a4c0vmhxibfc58rrxpbav2bsk546chkg50ir4h3i57v4fjb4xic";
|
|
};
|
|
meta = {
|
|
description = "Number of small applications that can be used for processing RTP data";
|
|
homepage = "https://www.cs.columbia.edu/irt/software/rtptools/";
|
|
maintainers = [ lib.maintainers.lheckemann ];
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|