Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4810d5455599
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1d3a157e04a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 30, 2018

  1. mbuffer: 20171011 -> 20180318

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools.
    
    This update was made based on information from https://repology.org/metapackage/mbuffer/versions.
    
    These checks were done:
    
    - built on NixOS
    - ran `/nix/store/sjlbs2k9114xlxalqcz2n0jj90lvik07-mbuffer-20180318/bin/mbuffer -h` got 0 exit code
    - ran `/nix/store/sjlbs2k9114xlxalqcz2n0jj90lvik07-mbuffer-20180318/bin/mbuffer --help` got 0 exit code
    - ran `/nix/store/sjlbs2k9114xlxalqcz2n0jj90lvik07-mbuffer-20180318/bin/mbuffer -V` and found version 20180318
    - ran `/nix/store/sjlbs2k9114xlxalqcz2n0jj90lvik07-mbuffer-20180318/bin/mbuffer --version` and found version 20180318
    - found 20180318 with grep in /nix/store/sjlbs2k9114xlxalqcz2n0jj90lvik07-mbuffer-20180318
    - directory tree listing: https://gist.github.com/5b88f842903984d6134c96d89c2169de
    ryantm authored and globin committed Mar 30, 2018
    Copy the full SHA
    d1d3a15 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/misc/mbuffer/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/misc/mbuffer/default.nix
Original file line number Diff line number Diff line change
@@ -3,12 +3,12 @@
} :

stdenv.mkDerivation rec {
version = "20171011";
version = "20180318";
name = "mbuffer-${version}";

src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "1z6is359dnlf61n6ida9ivghafzz5m8cf4hzdhma8nxv12brfbzb";
sha256 = "1sh0ipf77aav1k17dgl9dcjlb17zygs07x01g0nn0cg7yw5y5hfk";
};

buildInputs = [ openssl ];