nixpkgs/pkgs/shells/rush/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.4 KiB
Nix
Raw Normal View History

2022-05-06 18:39:28 +00:00
{ fetchurl, lib, stdenv, bash, perl }:
stdenv.mkDerivation rec {
pname = "rush";
2022-08-02 01:26:35 +00:00
version = "2.3";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
2022-08-02 01:26:35 +00:00
sha256 = "sha256-57gBYfZsKdK1moXBC52KgxKv/MIeQK6tDu+fznXLZ+Y=";
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
buildInputs = [ bash ];
postInstall = ''
substituteInPlace $out/bin/rush-po \
--replace "exec perl" "exec ${lib.getExe perl}"
'';
doCheck = true;
meta = {
2022-05-29 08:55:04 +00:00
broken = stdenv.isDarwin;
description = "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 = "https://www.gnu.org/software/rush/";
2021-01-15 06:28:56 +00:00
license = lib.licenses.gpl3Plus;
maintainers = [ ];
2021-01-15 06:28:56 +00:00
platforms = lib.platforms.all;
};
2016-05-14 13:03:13 +00:00
passthru = {
shellPath = "/bin/rush";
};
}