nixpkgs/pkgs/shells/dash/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.3 KiB
Nix
Raw Normal View History

2021-09-14 03:18:32 +00:00
{ lib
, stdenv
, buildPackages
, 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
}:
2023-08-08 00:48:28 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "dash";
2023-03-17 04:20:00 +00:00
version = "0.5.12";
2013-12-20 23:05:38 +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=";
};
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 ];
buildInputs = [ libedit ];
configureFlags = [ "--with-libedit" ];
preConfigure = lib.optional stdenv.hostPlatform.isStatic ''
export LIBS="$(''${PKG_CONFIG:-pkg-config} --libs --static libedit)"
'';
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 = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
platforms = platforms.unix;
license = with licenses; [ bsd3 gpl2 ];
mainProgram = "dash";
};
})