2021-03-12 08:17:27 -08:00
|
|
|
{ lib, stdenv, buildPackages, autoreconfHook, fetchurl, libedit }:
|
2010-06-01 10:05:29 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-23 06:42:27 -08:00
|
|
|
pname = "dash";
|
|
|
|
version = "0.5.11.2";
|
2013-12-20 15:05:38 -08:00
|
|
|
|
2010-06-01 10:05:29 -07:00
|
|
|
src = fetchurl {
|
2020-11-23 06:42:27 -08:00
|
|
|
url = "http://gondor.apana.org.au/~herbert/dash/files/${pname}-${version}.tar.gz";
|
2020-09-22 11:35:08 -07:00
|
|
|
sha256 = "0pvdpm1cgfbc25ramn4305a0158yq031q1ain4dc972rnxl7vyq0";
|
2010-06-01 10:05:29 -07:00
|
|
|
};
|
2013-12-20 15:05:38 -08:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-22 17:59:47 -08:00
|
|
|
|
2020-11-23 06:42:27 -08:00
|
|
|
patches = [
|
|
|
|
(fetchurl {
|
|
|
|
# Dash executes code when noexec ("-n") is specified
|
|
|
|
# https://www.openwall.com/lists/oss-security/2020/11/11/3
|
|
|
|
url = "https://git.kernel.org/pub/scm/utils/dash/dash.git/patch/?id=29d6f2148f10213de4e904d515e792d2cf8c968e";
|
|
|
|
sha256 = "08q90bx36ixwlcj331dh7420qyj8i0qh1cc1gljrhd83fhl9w0y5";
|
|
|
|
})
|
2021-04-04 11:49:00 -07:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
# Temporary fix until a proper one is accepted upstream
|
|
|
|
./0001-fix-dirent64-et-al-on-darwin.patch
|
|
|
|
];
|
|
|
|
|
2020-09-02 13:16:49 -07:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-01-14 22:28:56 -08:00
|
|
|
nativeBuildInputs = lib.optional stdenv.isDarwin autoreconfHook;
|
2021-03-12 08:17:27 -08:00
|
|
|
buildInputs = [ libedit ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-libedit" ];
|
2020-07-21 02:57:28 -07:00
|
|
|
|
2021-03-12 08:18:10 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://gondor.apana.org.au/~herbert/dash/";
|
2010-06-01 10:05:29 -07:00
|
|
|
description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
|
2018-11-14 14:24:09 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = with licenses; [ bsd3 gpl2 ];
|
2010-06-01 10:05:29 -07:00
|
|
|
};
|
2016-05-14 06:01:49 -07:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/dash";
|
|
|
|
};
|
2010-06-01 10:05:29 -07:00
|
|
|
}
|