nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 21 lines 767 B view raw
1{lib, stdenv, fetchurl}: 2 3stdenv.mkDerivation { 4 name = "lhasa-0.3.1"; 5 src = fetchurl { 6 url = "https://soulsphere.org/projects/lhasa/lhasa-0.3.1.tar.gz"; 7 sha256 = "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z"; 8 }; 9 meta = { 10 description = "Free Software replacement for the Unix LHA tool"; 11 longDescription = '' 12 Lhasa is a Free Software replacement for the Unix LHA tool, for 13 decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for 14 the tool is a library, so that it can be reused for other purposes. 15 ''; 16 license = lib.licenses.isc; 17 homepage = "http://fragglet.github.io/lhasa"; 18 maintainers = with lib; [ maintainers.sander ]; 19 platforms = with lib.platforms; linux ++ darwin; 20 }; 21}