2021-09-14 04:18:32 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPackages
|
|
|
|
, autoreconfHook
|
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, libedit
|
2022-01-17 11:17:55 +00:00
|
|
|
, runCommand
|
|
|
|
, dash
|
2021-09-14 04:18:32 +01:00
|
|
|
}:
|
2010-06-01 18:05:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-23 14:42:27 +00:00
|
|
|
pname = "dash";
|
2021-09-14 04:19:17 +01:00
|
|
|
version = "0.5.11.4";
|
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";
|
2021-09-14 04:19:17 +01:00
|
|
|
sha256 = "13g06zqfy4n7jkrbb5l1vw0xcnjvq76i16al8fjc5g33afxbf5af";
|
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 = [
|
2021-09-14 04:18:32 +01:00
|
|
|
(fetchpatch {
|
2020-11-23 14:42:27 +00:00
|
|
|
# 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";
|
2021-09-14 04:18:32 +01:00
|
|
|
sha256 = "0aadb7aaaan6jxmi6icv4p5gqx7k510yszaqsa29b5giyxz5l9i1";
|
2020-11-23 14:42:27 +00:00
|
|
|
})
|
2021-09-14 04:19:46 +01:00
|
|
|
|
|
|
|
# aarch64-darwin fix from upstream; remove on next release
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://git.kernel.org/pub/scm/utils/dash/dash.git/patch/?id=6f6d1f2da03468c0e131fdcbdcfa9771ffca2614";
|
|
|
|
sha256 = "16iz2ylkyhpxqq411ns8pjk8rizh6afhavvsf052wvzsnmmlvfbw";
|
|
|
|
})
|
2021-04-04 19:49:00 +01:00
|
|
|
];
|
|
|
|
|
2021-09-14 04:19:46 +01:00
|
|
|
# configure.ac patched; remove on next release
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2020-09-02 21:16:49 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
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";
|
2022-01-17 11:17:55 +00:00
|
|
|
tests = {
|
|
|
|
"execute-simple-command" = runCommand "${pname}-execute-simple-command" { } ''
|
|
|
|
mkdir $out
|
|
|
|
${dash}/bin/dash -c 'echo "Hello World!" > $out/success'
|
|
|
|
[ -s $out/success ]
|
|
|
|
grep -q "Hello World" $out/success
|
|
|
|
'';
|
|
|
|
};
|
2016-05-14 14:01:49 +01:00
|
|
|
};
|
2010-06-01 18:05:29 +01:00
|
|
|
}
|