2010-06-01 17:05:29 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-30 09:29:50 +00:00
|
|
|
name = "dash-0.5.8";
|
2013-12-20 23:05:38 +00:00
|
|
|
|
2010-06-01 17:05:29 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
|
2014-09-30 09:29:50 +00:00
|
|
|
sha256 = "03y6z8akj72swa6f42h2dhq3p09xasbi6xia70h2vc27fwikmny6";
|
2010-06-01 17:05:29 +00:00
|
|
|
};
|
2013-12-20 23:05:38 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2010-06-01 17:05:29 +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";
|
2016-08-02 21:55:42 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-06-01 17:05:29 +00:00
|
|
|
};
|
2016-05-14 13:01:49 +00:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/dash";
|
|
|
|
};
|
2010-06-01 17:05:29 +00:00
|
|
|
}
|