nixpkgs/pkgs/tools/misc/mbuffer/default.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

2015-10-31 01:23:54 +00:00
{ stdenv, fetchurl,
openssl,
} :
stdenv.mkDerivation rec {
2020-11-03 03:46:26 +00:00
version = "20200929";
pname = "mbuffer";
2015-10-31 01:23:54 +00:00
src = fetchurl {
2015-10-31 21:57:19 +00:00
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
2020-11-03 03:46:26 +00:00
sha256 = "1s6lxbqba2hwnvrdrwk0fpnff62gv0ynah4ql0c9y14s9v0y79jk";
2015-10-31 01:23:54 +00:00
};
buildInputs = [ openssl ];
# The mbuffer configure scripts fails to recognize the correct
# objdump binary during cross-building for foreign platforms.
# The correct objdump is exposed via the environment variable
# $OBJDUMP, which should be used in such cases.
preConfigure = stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
substituteInPlace configure --replace "OBJDUMP=$ac_cv_path_OBJDUMP" 'OBJDUMP=''${OBJDUMP}'
'';
doCheck = true;
2015-10-31 01:23:54 +00:00
meta = {
homepage = "http://www.maier-komor.de/mbuffer.html";
2017-08-27 14:15:39 +00:00
description = "A tool for buffering data streams with a large set of unique features";
2015-10-31 01:23:54 +00:00
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ tokudan ];
platforms = stdenv.lib.platforms.linux; # Maybe other non-darwin Unix
2015-10-31 01:23:54 +00:00
};
}