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