nixpkgs/pkgs/shells/dash/default.nix

23 lines
563 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "dash-0.5.9.1";
2013-12-20 23:05:38 +00:00
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
sha256 = "5ecd5bea72a93ed10eb15a1be9951dd51b52e5da1d4a7ae020efd9826b49e659";
};
2013-12-20 23:05:38 +00:00
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
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;
};
2016-05-14 13:01:49 +00:00
passthru = {
shellPath = "/bin/dash";
};
}