summary refs log tree commit diff
path: root/pkgs/tools/networking/samplicator/default.nix
blob: a8733a7305a4c2dd7b4435f1566f3514069fd121 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "samplicator-${version}";
  version = "1.3.7-beta6";

  src = fetchurl {
    url = "http://samplicator.googlecode.com/files/${name}.tar.gz";
    sha1 = "2091af1898d6508ad9fd338a07e352e2387522d4";
  };

  meta = {
    description = "Send copies of (UDP) datagrams to multiple receivers";
    homepage = "http://code.google.com/p/samplicator/";
    license = stdenv.lib.licenses.gpl2Plus;
  };
}