2010-04-26 10:59:25 +02:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-15 14:33:56 +01:00
|
|
|
name = "rush-1.8";
|
2010-04-26 10:59:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/rush/${name}.tar.gz";
|
2016-11-15 14:33:56 +01:00
|
|
|
sha256 = "1vxdb81ify4xcyygh86250pi50krb16dkj42i5ii4ns3araiwckz";
|
2010-04-26 10:59:25 +02:00
|
|
|
};
|
|
|
|
|
2018-03-11 19:49:43 +01:00
|
|
|
patches = [ ./fix-format-security-error.patch
|
|
|
|
./intprops.patch
|
|
|
|
];
|
2014-08-08 17:12:38 +02:00
|
|
|
|
2010-04-26 10:59:25 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Restricted User Shell";
|
2010-04-26 10:59:25 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 19:22:13 +01:00
|
|
|
homepage = https://www.gnu.org/software/rush/;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-04-26 10:59:25 +02:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.bjg ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2016-05-14 15:03:13 +02:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/rush";
|
|
|
|
};
|
2010-04-26 10:59:25 +02:00
|
|
|
}
|