biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / compression / lhasa / default.nix
blob9ced4a9b7bfba908b8c70e8e3fe683eab0d6f315
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "lhasa";
5   version = "0.4.0";
7   src = fetchurl {
8     url = "https://soulsphere.org/projects/lhasa/lhasa-${version}.tar.gz";
9     sha256 = "sha256-p/yIPDBMUIVi+5P6MHpMNCsMiG/MJl8ouS3Aw5IgxbM=";
10   };
12   meta = with lib; {
13     description = "Free Software replacement for the Unix LHA tool";
14     longDescription = ''
15       Lhasa is a Free Software replacement for the Unix LHA tool, for
16       decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for
17       the tool is a library, so that it can be reused for other purposes.
18     '';
19     license = licenses.isc;
20     homepage = "http://fragglet.github.io/lhasa";
21     maintainers = [ maintainers.sander ];
22     mainProgram = "lha";
23     platforms = platforms.unix;
24   };