summary refs log tree commit diff
path: root/pkgs/tools/misc/mbuffer
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-10-23 08:45:45 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-10-23 17:45:45 +0200
commitaa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e (patch)
tree8aeaeaed708e9dbf4870cd14bcf73cb87c77f729 /pkgs/tools/misc/mbuffer
parent1e00a975771e44d113259e822947ca2028c18815 (diff)
downloadnixpkgs-aa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e.tar
nixpkgs-aa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e.tar.gz
nixpkgs-aa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e.tar.bz2
nixpkgs-aa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e.tar.lz
nixpkgs-aa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e.tar.xz
nixpkgs-aa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e.tar.zst
nixpkgs-aa8ca80e3646cdc7e1ff6161f7e98319bbde1a9e.zip
mbuffer: 20190725 -> 20191016 (#71691)
* mbuffer: 20190725 -> 20191016

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mbuffer/versions

* mbuffer: run check phase
Diffstat (limited to 'pkgs/tools/misc/mbuffer')
-rw-r--r--pkgs/tools/misc/mbuffer/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/mbuffer/default.nix b/pkgs/tools/misc/mbuffer/default.nix
index 44b00adf5c1..7edfb280e43 100644
--- a/pkgs/tools/misc/mbuffer/default.nix
+++ b/pkgs/tools/misc/mbuffer/default.nix
@@ -3,18 +3,19 @@
  } :
 
 stdenv.mkDerivation rec {
-  version = "20190725";
+  version = "20191016";
   pname = "mbuffer";
 
   src = fetchurl {
     url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
-    sha256 = "1hjhyh3q0q22czq3s2wk5mcky1jrq9xw8fppw6r7cix1riq74m91";
+    sha256 = "05xyvmbs2x5gbj2njgg7hsj3alb5dh96xhab0w0qkhb58x2i1hld";
   };
 
   buildInputs = [ openssl ];
+  doCheck = true;
 
   meta = {
-    homepage = http://www.maier-komor.de/mbuffer.html;
+    homepage = "http://www.maier-komor.de/mbuffer.html";
     description  = "A tool for buffering data streams with a large set of unique features";
     license = stdenv.lib.licenses.gpl3;
     maintainers = with stdenv.lib.maintainers; [ tokudan ];