From a174ff34b8dab7f1a54cbb0223a0dcfe88059c5b Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 26 Apr 2010 08:59:25 +0000 Subject: Add GNU SASL, GNU GSS-API, and GNU Rush. Contributed by Brian Gough . svn path=/nixpkgs/trunk/; revision=21315 --- pkgs/shells/rush/default.nix | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pkgs/shells/rush/default.nix (limited to 'pkgs/shells') diff --git a/pkgs/shells/rush/default.nix b/pkgs/shells/rush/default.nix new file mode 100644 index 0000000000000..dd1b47f5619bb --- /dev/null +++ b/pkgs/shells/rush/default.nix @@ -0,0 +1,36 @@ +{ fetchurl, stdenv }: + +stdenv.mkDerivation rec { + name = "rush-1.6"; + + src = fetchurl { + url = "mirror://gnu/rush/${name}.tar.gz"; + sha256 = "1j9h1imql05cijav6hr9jigcmy1br8fs9vahvh6y7pf53k4lcfrv"; + }; + + doCheck = true; + + meta = { + description = "GNU Rush, Restricted User Shell"; + + longDescription = + '' GNU Rush is a Restricted User Shell, designed for sites + providing limited remote access to their resources, such as + svn or git repositories, scp, or the like. Using a + sophisticated configuration file, Rush gives you complete + control over the command lines that users execute, as well as + over the usage of system resources, such as virtual memory, + CPU time, etc. + + In particular, it allows remote programs to be run in a chrooted + environment, which is important with such programs as + sftp-server or scp, that lack this ability. + ''; + + homepage = http://www.gnu.org/software/rush/; + license = "GPLv3+"; + + maintainers = [ stdenv.lib.maintainers.bjg ]; + platforms = stdenv.lib.platforms.all; + }; +} -- cgit 1.4.1