nixpkgs/pkgs/shells/dash/default.nix
Tuomas Tynkkynen 1bf5ded193 treewide: Lots of meta.hydraPlatforms -> meta.platforms
In all of these files, there is no meta.platforms but only
meta.hydraPlatforms, which doesn't seem to have any purpose except being
inconsistent.
2016-08-02 21:17:44 +03:00

21 lines
514 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "dash-0.5.8";
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
sha256 = "03y6z8akj72swa6f42h2dhq3p09xasbi6xia70h2vc27fwikmny6";
};
meta = {
homepage = http://gondor.apana.org.au/~herbert/dash/;
description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
platforms = stdenv.lib.platforms.linux;
};
passthru = {
shellPath = "/bin/dash";
};
}