lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 23 lines 600 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 name = "samplicator-${version}"; 5 version = "1.3.8rc1"; 6 7 nativeBuildInputs = [ autoreconfHook ]; 8 buildInputs = [ ]; 9 10 src = fetchFromGitHub { 11 owner = "sleinen"; 12 repo = "samplicator"; 13 rev = version; 14 sha256 = "0fv5vldmwd6qrdv2wkk946dk9rn9nrv3c84ldvvqqn1spxfzgirm"; 15 }; 16 17 meta = { 18 description = "Send copies of (UDP) datagrams to multiple receivers"; 19 homepage = https://github.com/sleinen/samplicator/; 20 license = stdenv.lib.licenses.gpl2Plus; 21 platforms = stdenv.lib.platforms.unix; 22 }; 23}