2021-09-14 03:18:32 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPackages
|
2022-12-13 19:47:26 +00:00
|
|
|
, pkg-config
|
2021-09-14 03:18:32 +00:00
|
|
|
, fetchurl
|
|
|
|
, libedit
|
2022-01-17 11:17:55 +00:00
|
|
|
, runCommand
|
|
|
|
, dash
|
2021-09-14 03:18:32 +00:00
|
|
|
}:
|
2010-06-01 17:05:29 +00:00
|
|
|
|
2023-08-08 00:48:28 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2020-11-23 14:42:27 +00:00
|
|
|
pname = "dash";
|
2023-03-17 04:20:00 +00:00
|
|
|
version = "0.5.12";
|
2013-12-20 23:05:38 +00:00
|
|
|
|
2010-06-01 17:05:29 +00:00
|
|
|
src = fetchurl {
|
2023-08-08 00:48:28 +00:00
|
|
|
url = "http://gondor.apana.org.au/~herbert/dash/files/dash-${finalAttrs.version}.tar.gz";
|
|
|
|
hash = "sha256-akdKxG6LCzKRbExg32lMggWNMpfYs4W3RQgDDKSo8oo=";
|
2010-06-01 17:05:29 +00:00
|
|
|
};
|
2013-12-20 23:05:38 +00:00
|
|
|
|
2022-05-06 18:39:28 +00:00
|
|
|
strictDeps = true;
|
2023-03-17 04:20:00 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isStatic [ pkg-config ];
|
2021-09-14 03:19:46 +00:00
|
|
|
|
2020-09-02 20:16:49 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-03-12 16:17:27 +00:00
|
|
|
buildInputs = [ libedit ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-libedit" ];
|
2022-12-13 19:47:26 +00:00
|
|
|
preConfigure = lib.optional stdenv.hostPlatform.isStatic ''
|
2022-12-28 15:07:30 +00:00
|
|
|
export LIBS="$(''${PKG_CONFIG:-pkg-config} --libs --static libedit)"
|
2022-12-13 19:47:26 +00:00
|
|
|
'';
|
2020-07-21 09:57:28 +00:00
|
|
|
|
2021-03-12 16:18:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-05-14 13:01:49 +00:00
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/dash";
|
2022-01-17 11:17:55 +00:00
|
|
|
tests = {
|
2023-08-08 00:48:28 +00:00
|
|
|
"execute-simple-command" = runCommand "dash-execute-simple-command" { } ''
|
2022-01-17 11:17:55 +00:00
|
|
|
mkdir $out
|
2023-08-08 00:48:28 +00:00
|
|
|
${lib.getExe dash} -c 'echo "Hello World!" > $out/success'
|
2022-01-17 11:17:55 +00:00
|
|
|
[ -s $out/success ]
|
|
|
|
grep -q "Hello World" $out/success
|
|
|
|
'';
|
|
|
|
};
|
2016-05-14 13:01:49 +00:00
|
|
|
};
|
2023-08-08 00:48:28 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "http://gondor.apana.org.au/~herbert/dash/";
|
|
|
|
description = "POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
|
|
|
|
platforms = platforms.unix;
|
2024-05-23 08:38:09 +00:00
|
|
|
license = with licenses; [ bsd3 gpl2Plus ];
|
2023-08-08 00:48:28 +00:00
|
|
|
mainProgram = "dash";
|
|
|
|
};
|
|
|
|
})
|