···3636 exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV));
3737 } else {
3838 print STDERR <<EOF;
3939-The program '$program' is not in your PATH. You can make it available in a
3939+The program '$program' is not in your PATH. You can make it available in an
4040ephemeral shell by typing:
4141 nix-shell -p $package
4242EOF
···4444} else {
4545 print STDERR <<EOF;
4646The program '$program' is not in your PATH. It is provided by several packages.
4747-You can make it available in a ephemeral shell by typing one of the following:
4747+You can make it available in an ephemeral shell by typing one of the following:
4848EOF
4949 print STDERR " nix-shell -p $_->{package}\n" foreach @$res;
5050}
+30-2
pkgs/applications/editors/joe/default.nix
···11{ stdenv, fetchurl } :
2233stdenv.mkDerivation rec {
44- version = "4.6";
54 pname = "joe";
55+ version = "4.6";
6677 src = fetchurl {
88 url = "mirror://sourceforge/joe-editor/${pname}-${version}.tar.gz";
···11111212 meta = with stdenv.lib; {
1313 description = "A full featured terminal-based screen editor";
1414+ longDescription = ''
1515+ JOE (Joe's Own Editor) is a full featured terminal-based screen editor
1616+ which is distributed under the GNU General Public License (GPL). JOE has
1717+ been around since 1988 and comes standard with many Linux distributions.
1818+1919+ JOE is being maintained by its original author Joseph Allen, plus all of
2020+ the people who send bug reports, feature suggestions and patches to the
2121+ project web site. JOE is hosted by SourceForge.net and its source code is
2222+ controlled under Mercurial.
2323+2424+ JOE is a blending of MicroPro's venerable microcomputer word processor
2525+ WordStar and Richard Stallman's famous LISP based text editor GNU-EMACS
2626+ (but it does not use code from either program): most of the basic editing
2727+ keys are the same as in WordStar as is the overall feel of the editor. JOE
2828+ also has some of the key bindings and many of the powerful features of
2929+ EMACS.
3030+3131+ JOE is written in C and its only dependency is libc. This makes JOE very
3232+ easy to build (just "configure" and "make install"), making it feasible to
3333+ include on small systems and recovery disks. The compiled binary is about
3434+ 300K in x86. Note that JOE can use either the termcap or terminfo terminal
3535+ capabilities databases (or a built-in termcap entry for ANSI
3636+ terminals). The choice is controlled by a "configure" option. If terminfo
3737+ is used, a library is required to access the database (on some systems
3838+ this library is ncurses, but JOE does not use curses to control the
3939+ terminal - it has its own code for this).
4040+ '';
1441 homepage = "https://joe-editor.sourceforge.io";
1515- license = licenses.gpl2;
4242+ license = licenses.gpl2Plus;
4343+ maintainers = with maintainers; [ AndersonTorres ];
1644 platforms = platforms.unix;
1745 };
1846}
···2626 "--with-tcsetpgrp"
2727 "--enable-pcre"
2828 "--enable-zprofile=${placeholder "out"}/etc/zprofile"
2929+ "--disable-site-fndir"
2930 ];
30313132 # the zsh/zpty module is not available on hydra
+1
pkgs/tools/backup/duplicity/default.nix
···4949 propagatedBuildInputs = with pythonPackages; [
5050 b2sdk
5151 boto
5252+ boto3
5253 cffi
5354 cryptography
5455 ecdsa