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