lol
0
fork

Configure Feed

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

at master 42 lines 813 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 openssl, 6 which, 7}: 8 9stdenv.mkDerivation (finalAttrs: { 10 pname = "mbuffer"; 11 version = "20250809"; 12 outputs = [ 13 "out" 14 "man" 15 ]; 16 17 src = fetchurl { 18 url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${finalAttrs.version}.tgz"; 19 sha256 = "sha256-mGXa5CRSQ3oZrkSEZ4EKA6pG1PJeKZlettbU85xnzR4="; 20 }; 21 22 buildInputs = [ 23 openssl 24 ]; 25 nativeBuildInputs = [ 26 which 27 ]; 28 nativeCheckInputs = [ 29 openssl 30 ]; 31 32 doCheck = true; 33 strictDeps = true; 34 35 meta = { 36 description = "Tool for buffering data streams with a large set of unique features"; 37 homepage = "https://www.maier-komor.de/mbuffer.html"; 38 license = lib.licenses.gpl3Only; 39 platforms = lib.platforms.linux; # Maybe other non-darwin Unix 40 mainProgram = "mbuffer"; 41 }; 42})