summary refs log tree commit diff
path: root/pkgs/tools/archivers/xarchiver
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-02-21 13:18:56 +0100
committerDomen Kožar <domen@dev.si>2014-02-21 13:19:25 +0100
commit68a5b5e5fbaf0c379bc2185b03eda4673bb3d448 (patch)
tree4fdd0643d8c69932a400df52b3596cfcef1e43ad /pkgs/tools/archivers/xarchiver
parent0ca4f087b3bd33b4fbd0412ce075caf43b383d15 (diff)
downloadnixpkgs-68a5b5e5fbaf0c379bc2185b03eda4673bb3d448.tar
nixpkgs-68a5b5e5fbaf0c379bc2185b03eda4673bb3d448.tar.gz
nixpkgs-68a5b5e5fbaf0c379bc2185b03eda4673bb3d448.tar.bz2
nixpkgs-68a5b5e5fbaf0c379bc2185b03eda4673bb3d448.tar.lz
nixpkgs-68a5b5e5fbaf0c379bc2185b03eda4673bb3d448.tar.xz
nixpkgs-68a5b5e5fbaf0c379bc2185b03eda4673bb3d448.tar.zst
nixpkgs-68a5b5e5fbaf0c379bc2185b03eda4673bb3d448.zip
add xarchiver: GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)
Diffstat (limited to 'pkgs/tools/archivers/xarchiver')
-rw-r--r--pkgs/tools/archivers/xarchiver/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/archivers/xarchiver/default.nix b/pkgs/tools/archivers/xarchiver/default.nix
new file mode 100644
index 00000000000..fc5b984bd90
--- /dev/null
+++ b/pkgs/tools/archivers/xarchiver/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, gtk2, pkgconfig, intltool }:
+
+stdenv.mkDerivation rec {
+  version = "0.5.3";
+  name = "xarchiver-${version}";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/xarchiver/${name}.tar.bz2";
+    sha256 = "10bdq406xkl2q6rl6qvvipdr3ini5lnh1sjykgw66fp8jns9r2f5";
+  };
+
+  buildInputs = [ gtk2 pkgconfig intltool ];
+
+  meta = {
+    description = "GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
+    homepage = http://sourceforge.net/projects/xarchiver/;
+    mainatainers = [ stdenv.lib.maintainers.iElectric ];
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.all;
+  };
+}