···11+{stdenv, fetchurl}:
22+33+stdenv.mkDerivation {
44+ name = "lhasa-0.3.1";
55+ src = fetchurl {
66+ url = https://soulsphere.org/projects/lhasa/lhasa-0.3.1.tar.gz;
77+ sha256 = "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z";
88+ };
99+ meta = {
1010+ description = "Free Software replacement for the Unix LHA tool";
1111+ longDescription = ''
1212+ Lhasa is a Free Software replacement for the Unix LHA tool, for
1313+ decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for
1414+ the tool is a library, so that it can be reused for other purposes.
1515+ '';
1616+ license = stdenv.lib.licenses.isc;
1717+ homepage = http://fragglet.github.io/lhasa;
1818+ maintainers = with stdenv.lib; [ maintainers.sander ];
1919+ platforms = stdenv.lib.platforms.linux;
2020+ };
2121+}