2020-09-02 22:16:49 +02:00
|
|
|
{ stdenv, buildPackages, autoreconfHook, fetchurl }:
|
2010-06-01 19:05:29 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-09-22 20:35:08 +02:00
|
|
|
name = "dash-0.5.11.2";
|
2013-12-21 00:05:38 +01:00
|
|
|
|
2010-06-01 19:05:29 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
|
2020-09-22 20:35:08 +02:00
|
|
|
sha256 = "0pvdpm1cgfbc25ramn4305a0158yq031q1ain4dc972rnxl7vyq0";
|
2010-06-01 19:05:29 +02:00
|
|
|
};
|
2013-12-21 00:05:38 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2020-07-21 11:57:28 +02:00
|
|
|
# Temporary fix until a proper one is accepted upstream
|
2020-09-02 22:16:49 +02:00
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./0001-fix-dirent64-et-al-on-darwin.patch;
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
|
2020-07-21 11:57:28 +02:00
|
|
|
|
2018-11-14 23:24:09 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://gondor.apana.org.au/~herbert/dash/";
|
2010-06-01 19:05:29 +02:00
|
|
|
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 ];
|
2010-06-01 19:05:29 +02:00
|
|
|
};
|
2016-05-14 15:01:49 +02:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/dash";
|
|
|
|
};
|
2010-06-01 19:05:29 +02:00
|
|
|
}
|