nixpkgs/pkgs/tools/networking/rtptools/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

17 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;
};
}