nixpkgs/pkgs/shells/dash/default.nix

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

53 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
}:
stdenv.mkDerivation rec {
pname = "dash";
2023-03-17 04:20:00 +00:00
version = "0.5.12";
2013-12-20 23:05:38 +00:00
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${pname}-${version}.tar.gz";
2023-03-17 04:20:00 +00:00
sha256 = "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;
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";
2018-11-14 22:24:09 +00:00
platforms = platforms.unix;
license = with licenses; [ bsd3 gpl2 ];
};
2016-05-14 13:01:49 +00: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 13:01:49 +00:00
};
}