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: 26f06ddb1633
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 00ddd6a8ae99
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 17, 2018

  1. dash: 0.5.10 -> 0.5.10.1 (#40677)

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/dash/versions.
    
    These checks were done:
    
    - built on NixOS
    - /nix/store/xdfhswm4pr989ad5582dphj02nlhd09g-dash-0.5.10.1/bin/dash passed the binary check.
    - 1 of 1 passed binary check by having a zero exit code.
    - 0 of 1 passed binary check by having the new version present in output.
    - directory tree listing: https://gist.github.com/c7533f80b4151e29fb67f31acbea016b
    - du listing: https://gist.github.com/455f25b553fefbc281441c80772198d1
    r-ryantm authored and xeji committed May 17, 2018
    Copy the full SHA
    00ddd6a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/shells/dash/default.nix
4 changes: 2 additions & 2 deletions pkgs/shells/dash/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "dash-0.5.10";
name = "dash-0.5.10.1";

src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
sha256 = "1arimvc9zcghhb3nin9z3yr5706vxfri4a9r3j9j9d0n676f0w5d";
sha256 = "1bl4brz5vy07lrss54glp4vfca3q8d73hyc87sqdk99f76z95b6s";
};

hardeningDisable = [ "format" ];