1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/shells/dash/default.nix

17 lines
469 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-09-30 05:29:50 -04:00
name = "dash-0.5.8";
2013-12-20 18:05:38 -05:00
src = fetchurl {
url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
2014-09-30 05:29:50 -04:00
sha256 = "03y6z8akj72swa6f42h2dhq3p09xasbi6xia70h2vc27fwikmny6";
};
2013-12-20 18:05:38 -05:00
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";
2013-12-20 18:05:38 -05:00
hydraPlatforms = stdenv.lib.platforms.linux;
};
}