at v192 17 lines 452 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "samplicator-${version}"; 5 version = "1.3.7-beta6"; 6 7 src = fetchurl { 8 url = "http://samplicator.googlecode.com/files/${name}.tar.gz"; 9 sha1 = "2091af1898d6508ad9fd338a07e352e2387522d4"; 10 }; 11 12 meta = { 13 description = "Send copies of (UDP) datagrams to multiple receivers"; 14 homepage = "http://code.google.com/p/samplicator/"; 15 license = stdenv.lib.licenses.gpl2Plus; 16 }; 17}