nixpkgs/pkgs/shells/dash/default.nix

24 lines
604 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2020-07-09 01:50:58 +02:00
name = "dash-0.5.11.1";
2013-12-21 00:05:38 +01:00
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
2020-07-09 01:50:58 +02:00
sha256 = "048n1rbw3v1ffzsw5mkc6zzvvf1csq7pcri7jraaqag38vqq3j3k";
};
2013-12-21 00:05:38 +01:00
hardeningDisable = [ "format" ];
2015-12-23 02:59:47 +01:00
2018-11-14 23:24:09 +01:00
meta = with stdenv.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";
};
}