summary refs log tree commit diff
path: root/pkgs/tools/compression
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2016-10-10 20:48:00 +0000
committerSander van der Burg <svanderburg@gmail.com>2016-10-10 20:48:00 +0000
commitb44e79e2406c4da151b9eb6a35756dc2c51c94b1 (patch)
tree0f87bf417b50222371b0d7d303aa8d7798282427 /pkgs/tools/compression
parente0ac20bb36d222d70c8691fab4d8a192b51fcc8a (diff)
downloadnixpkgs-b44e79e2406c4da151b9eb6a35756dc2c51c94b1.tar
nixpkgs-b44e79e2406c4da151b9eb6a35756dc2c51c94b1.tar.gz
nixpkgs-b44e79e2406c4da151b9eb6a35756dc2c51c94b1.tar.bz2
nixpkgs-b44e79e2406c4da151b9eb6a35756dc2c51c94b1.tar.lz
nixpkgs-b44e79e2406c4da151b9eb6a35756dc2c51c94b1.tar.xz
nixpkgs-b44e79e2406c4da151b9eb6a35756dc2c51c94b1.tar.zst
nixpkgs-b44e79e2406c4da151b9eb6a35756dc2c51c94b1.zip
lhasa: init at 0.3.1
Diffstat (limited to 'pkgs/tools/compression')
-rw-r--r--pkgs/tools/compression/lhasa/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/compression/lhasa/default.nix b/pkgs/tools/compression/lhasa/default.nix
new file mode 100644
index 00000000000..f270d29a694
--- /dev/null
+++ b/pkgs/tools/compression/lhasa/default.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "lhasa-0.3.1";
+  src = fetchurl {
+    url = https://soulsphere.org/projects/lhasa/lhasa-0.3.1.tar.gz;
+    sha256 = "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z";
+  };
+  meta = {
+    description = "Free Software replacement for the Unix LHA tool";
+    longDescription = ''
+      Lhasa is a Free Software replacement for the Unix LHA tool, for
+      decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for
+      the tool is a library, so that it can be reused for other purposes.
+    '';
+    license = stdenv.lib.licenses.isc;
+    homepage = http://fragglet.github.io/lhasa;
+    maintainers = with stdenv.lib; [ maintainers.sander ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}