2021-03-12 16:17:27 +00:00
|
|
|
{ lib, stdenv, buildPackages, autoreconfHook, fetchurl, libedit }:
|
2010-06-01 18:05:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-23 14:42:27 +00:00
|
|
|
pname = "dash";
|
|
|
|
version = "0.5.11.2";
|
2013-12-20 23:05:38 +00:00
|
|
|
|
2010-06-01 18:05:29 +01:00
|
|
|
src = fetchurl {
|
2020-11-23 14:42:27 +00:00
|
|
|
url = "http://gondor.apana.org.au/~herbert/dash/files/${pname}-${version}.tar.gz";
|
2020-09-22 19:35:08 +01:00
|
|
|
sha256 = "0pvdpm1cgfbc25ramn4305a0158yq031q1ain4dc972rnxl7vyq0";
|
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
|
|
|
|
2020-11-23 14:42:27 +00: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 19:49:00 +01: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 21:16:49 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-01-15 06:28:56 +00:00
|
|
|
nativeBuildInputs = lib.optional stdenv.isDarwin autoreconfHook;
|
2021-03-12 16:17:27 +00:00
|
|
|
buildInputs = [ libedit ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-libedit" ];
|
2020-07-21 10:57:28 +01:00
|
|
|
|
2021-03-12 16:18:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gondor.apana.org.au/~herbert/dash/";
|
2010-06-01 18:05:29 +01:00
|
|
|
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
|
|
|
}
|