summary refs log tree commit diff
path: root/pkgs/tools/networking/samplicator/default.nix
blob: 44546465d9ee0c6f6b5fb75d440c526f2e188f98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation rec {
  pname = "samplicator";
  version = "1.3.8rc1";

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ ];

  src = fetchFromGitHub {
    owner = "sleinen";
    repo = "samplicator";
    rev = version;
    sha256 = "0fv5vldmwd6qrdv2wkk946dk9rn9nrv3c84ldvvqqn1spxfzgirm";
  };

  meta = {
    description = "Send copies of (UDP) datagrams to multiple receivers";
    homepage = "https://github.com/sleinen/samplicator/";
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
  };
}