2010-06-01 18:05:29 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-21 03:54:21 +01:00
|
|
|
name = "dash-0.5.10.2";
|
2013-12-20 23:05:38 +00:00
|
|
|
|
2010-06-01 18:05:29 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
|
2018-05-21 03:54:21 +01:00
|
|
|
sha256 = "0wb0bwmqc661hylqcfdp7l7x12myw3vpqk513ncyqrjwvhckjriw";
|
2010-06-01 18:05:29 +01: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
|
|
|
|
2018-11-14 22:24:09 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-01 18:05:29 +01:00
|
|
|
homepage = http://gondor.apana.org.au/~herbert/dash/;
|
|
|
|
description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
|
2018-11-14 22:24:09 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = with licenses; [ bsd3 gpl2 ];
|
2010-06-01 18:05:29 +01:00
|
|
|
};
|
2016-05-14 14:01:49 +01:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/dash";
|
|
|
|
};
|
2010-06-01 18:05:29 +01:00
|
|
|
}
|