gnu: gf2x: Update to 1.3.0.
[jackhill/guix/guix.git] / gnu / packages / rush.scm
CommitLineData
d3066a0d 1;;; GNU Guix --- Functional package management for GNU
2ca55f93 2;;; Copyright © 2013, 2016 Ludovic Courtès <ludo@gnu.org>
4fa9251b 3;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
d3066a0d
LC
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages rush)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (guix licenses)
25 #:use-module (gnu packages))
26
27(define-public rush
28 (package
29 (name "rush")
4fa9251b 30 (version "2.2")
d3066a0d
LC
31 (source (origin
32 (method url-fetch)
a884fa21
LC
33 (uri (string-append "mirror://gnu/rush/rush-"
34 version ".tar.gz"))
d3066a0d
LC
35 (sha256
36 (base32
4fa9251b 37 "1kcqilbcvxsh89196ryh3p9zh4b266517q9681mjmckvj5v57plm"))))
d3066a0d 38 (build-system gnu-build-system)
6fd52309 39 (home-page "https://www.gnu.org/software/rush/")
d3066a0d
LC
40 (synopsis "Restricted user (login) shell")
41 (description
79c311b8 42 "GNU Rush is a restricted user shell, for systems on which users are to
c5779c93 43be provided with only limited functionality or resources. Administrators set
a22dc0c4
LC
44user rights via a configuration file which can be used to limit, for example,
45the commands that can be executed, CPU time, or virtual memory usage.")
d3066a0d 46 (license gpl3+)))