summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/jupp
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2017-09-10 13:41:49 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2017-09-10 13:41:49 -0300
commit4f976bdd3e711d3c628df64af6ef918516f621b4 (patch)
treeafc1d3a79433451616c8d2dc5bdabb4ebf048417 /pkgs/applications/editors/jupp
parent5dcf5d6d050ae1f155573631aa0305f34284118b (diff)
jupp: init at 3.1
jupp is a fork of joe's editor.
Diffstat (limited to 'pkgs/applications/editors/jupp')
-rw-r--r--pkgs/applications/editors/jupp/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/applications/editors/jupp/default.nix b/pkgs/applications/editors/jupp/default.nix
new file mode 100644
index 000000000000..14fdcce1c8e5
--- /dev/null
+++ b/pkgs/applications/editors/jupp/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, fetchurl
+, ncurses, gpm
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "jupp-${version}";
+ version = "3.1";
+ srcName = "joe-3.1jupp31";
+
+ src = fetchurl {
+ urls = [
+ "https://www.mirbsd.org/MirOS/dist/jupp/${srcName}.tgz"
+ "http://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz" ];
+ sha256 = "1fnf9jsd6p4jyybkhjjs328qx38ywy8w029ngc7j7kqp0ixn0l0s";
+ };
+
+ preConfigure = "chmod +x ./configure";
+
+ buildInputs = [ ncurses gpm ];
+
+ configureFlags = [
+ "--enable-curses"
+ "--enable-termcap"
+ "--enable-termidx"
+ "--enable-getpwnam"
+ "--enable-largefile"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "A portable fork of Joe's editor";
+ longDescription = ''
+ This is the portable version of JOE's Own Editor, which is currently
+ developed at sourceforge, licenced under the GNU General Public License,
+ Version 1, using autoconf/automake. This version has been enhanced by
+ several functions intended for programmers or other professional users,
+ and has a lot of bugs fixed. It is based upon an older version of joe
+ because these behave better overall.
+ '';
+ homepage = http://mirbsd.de/jupp;
+ license = licenses.gpl1;
+ maintainers = with maintainers; [ AndersonTorres ];
+ };
+}