summary refs log tree commit diff
path: root/pkgs/applications/misc/xfe
diff options
context:
space:
mode:
authorBaptist BENOIST <return_0@live.com>2012-10-16 17:30:44 +0200
committerBaptist BENOIST <return_0@live.com>2012-10-16 18:03:12 +0200
commit829ad425d31311408547fc00c6b721080ea8f3cc (patch)
treee89d545e5e6bbb92e4aba49050ef498a85cb7f7a /pkgs/applications/misc/xfe
parent946dcba80bdd67402db091cbebd0259b3218684e (diff)
downloadnixlib-829ad425d31311408547fc00c6b721080ea8f3cc.tar
nixlib-829ad425d31311408547fc00c6b721080ea8f3cc.tar.gz
nixlib-829ad425d31311408547fc00c6b721080ea8f3cc.tar.bz2
nixlib-829ad425d31311408547fc00c6b721080ea8f3cc.tar.lz
nixlib-829ad425d31311408547fc00c6b721080ea8f3cc.tar.xz
nixlib-829ad425d31311408547fc00c6b721080ea8f3cc.tar.zst
nixlib-829ad425d31311408547fc00c6b721080ea8f3cc.zip
Add xfe-1.33 and fox-1.6.9
This specific version of fox is required by xfe

Signed-off-by: Baptist BENOIST <return_0@live.com>
Diffstat (limited to 'pkgs/applications/misc/xfe')
-rw-r--r--pkgs/applications/misc/xfe/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/misc/xfe/default.nix b/pkgs/applications/misc/xfe/default.nix
new file mode 100644
index 000000000000..67ff2ec55411
--- /dev/null
+++ b/pkgs/applications/misc/xfe/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, fox_1_6, pkgconfig, gettext, x11, gcc, intltool, file, libpng }:
+
+let
+  version = "1.33";
+in
+
+stdenv.mkDerivation rec {
+  name = "xfe-${version}";
+
+  src = fetchurl {
+    url = "http://downloads.sourceforge.net/project/xfe/xfe/${version}/${name}.tar.gz";
+    md5 = "fb089ba73add411b08a6560eeb51742d";
+  };
+
+  buildInputs = [ fox_1_6 pkgconfig gettext x11 gcc intltool file libpng ];
+
+  doCheck = false;
+
+  enableParallelBuilding = true;
+
+  meta = {
+    description = "X File Explorer (Xfe) is an MS-Explorer like file manager for X.";
+    longDescription = ''
+      X File Explorer (Xfe) is an MS-Explorer like file manager for X.
+      It is based on the popular, but discontinued, X Win Commander, which was developed by Maxim Baranov.
+      Xfe aims to be the filemanager of choice for all the Unix addicts!
+    '';
+    homepage = "http://sourceforge.net/projects/xfe/";
+    license = "GPLv2";
+    maintainers = [ stdenv.lib.maintainers.bbenoist ];
+    platforms = stdenv.lib.platforms.all;
+  };
+}