about summary refs log tree commit diff
path: root/pkgs/applications/editors/fte
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2016-12-19 09:12:05 +0000
committerJörg Thalheim <joerg@higgsboson.tk>2016-12-19 16:15:59 +0100
commitac97fbab3a8225343f8a9594821e66af51af048c (patch)
tree2131ec54ad1357eab11bd251dcb858d54c35613c /pkgs/applications/editors/fte
parentcc30f5dd5e7a277b2a920878a0fe04a6f103b9c2 (diff)
downloadnixlib-ac97fbab3a8225343f8a9594821e66af51af048c.tar
nixlib-ac97fbab3a8225343f8a9594821e66af51af048c.tar.gz
nixlib-ac97fbab3a8225343f8a9594821e66af51af048c.tar.bz2
nixlib-ac97fbab3a8225343f8a9594821e66af51af048c.tar.lz
nixlib-ac97fbab3a8225343f8a9594821e66af51af048c.tar.xz
nixlib-ac97fbab3a8225343f8a9594821e66af51af048c.tar.zst
nixlib-ac97fbab3a8225343f8a9594821e66af51af048c.zip
fte: init at 0.50.02
Diffstat (limited to 'pkgs/applications/editors/fte')
-rw-r--r--pkgs/applications/editors/fte/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/editors/fte/default.nix b/pkgs/applications/editors/fte/default.nix
new file mode 100644
index 000000000000..d32a3fb5f1b5
--- /dev/null
+++ b/pkgs/applications/editors/fte/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, unzip, perl, libX11, libXpm, gpm, ncurses, slang }:
+
+stdenv.mkDerivation rec {
+  name = "fte-0.50.02";
+
+  buildInputs = [ unzip perl libX11 libXpm gpm ncurses slang ];
+
+  ftesrc = fetchurl {
+    url = "mirror://sourceforge/fte/fte-20110708-src.zip";
+    sha256 = "17j9akr19w19myglw5mljjw2g3i2cwxiqrjaln82h3rz5ma1qcfn";
+  };
+  ftecommon = fetchurl {
+    url = "mirror://sourceforge/fte/fte-20110708-common.zip";
+    sha256 = "1xva4kh0674sj2b9rhf2amlr37yxmsvjkgyj89gpcn0rndw1ahaq";
+  };
+  src = [ ftesrc ftecommon ];
+
+  buildFlags = "PREFIX=$(out)";
+
+  installFlags = "PREFIX=$(out) INSTALL_NONROOT=1";
+
+  meta = with stdenv.lib; {
+    description = "A free text editor for developers";
+    homepage = http://fte.sourceforge.net/;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.volth ];
+    platforms = platforms.all;
+  };
+}