nixpkgs/pkgs/shells/dash/default.nix
R. RyanTM 95e317bf54 dash: 0.5.9.1 -> 0.5.10
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
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- directory tree listing: https://gist.github.com/ac71c74097484baeb4301fc8048b372d
2018-05-07 04:32:20 -07:00

23 lines
550 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "dash-0.5.10";
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
sha256 = "1arimvc9zcghhb3nin9z3yr5706vxfri4a9r3j9j9d0n676f0w5d";
};
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";
};
}