about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/compression/lhasa/default.nix
blob: 77df84879b8d98e5df18a531f7440b43203d100c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{lib, 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 = lib.licenses.isc;
    homepage = "http://fragglet.github.io/lhasa";
    maintainers = with lib; [ maintainers.sander ];
    platforms = with lib.platforms; linux ++ darwin;
  };
}