nixpkgs/pkgs/shells/dash/default.nix

57 lines
1.5 KiB
Nix
Raw Normal View History

2021-09-14 05:18:32 +02:00
{ lib
, stdenv
, buildPackages
, autoreconfHook
, fetchurl
, fetchpatch
, libedit
}:
stdenv.mkDerivation rec {
pname = "dash";
version = "0.5.11.4";
2013-12-21 00:05:38 +01:00
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${pname}-${version}.tar.gz";
sha256 = "13g06zqfy4n7jkrbb5l1vw0xcnjvq76i16al8fjc5g33afxbf5af";
};
2013-12-21 00:05:38 +01:00
hardeningDisable = [ "format" ];
2015-12-23 02:59:47 +01:00
patches = [
2021-09-14 05:18:32 +02:00
(fetchpatch {
# 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 05:18:32 +02:00
sha256 = "0aadb7aaaan6jxmi6icv4p5gqx7k510yszaqsa29b5giyxz5l9i1";
})
2021-09-14 05:19:46 +02: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-09-14 05:19:46 +02:00
# configure.ac patched; remove on next release
nativeBuildInputs = [ autoreconfHook ];
2020-09-02 22:16:49 +02:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
buildInputs = [ libedit ];
configureFlags = [ "--with-libedit" ];
2021-03-12 17:18:10 +01: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 23:24:09 +01:00
platforms = platforms.unix;
license = with licenses; [ bsd3 gpl2 ];
};
2016-05-14 15:01:49 +02:00
passthru = {
shellPath = "/bin/dash";
};
}