nixpkgs/pkgs/shells/dash/default.nix
R. RyanTM 00ddd6a8ae 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
2018-05-17 23:08:28 +02:00

23 lines
552 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "dash-0.5.10.1";
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
sha256 = "1bl4brz5vy07lrss54glp4vfca3q8d73hyc87sqdk99f76z95b6s";
};
hardeningDisable = [ "format" ];
meta = {
homepage = http://gondor.apana.org.au/~herbert/dash/;
description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
platforms = stdenv.lib.platforms.unix;
};
passthru = {
shellPath = "/bin/dash";
};
}