mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
26 lines
795 B
Nix
26 lines
795 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lhasa";
|
|
version = "0.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://soulsphere.org/projects/lhasa/lhasa-${version}.tar.gz";
|
|
sha256 = "sha256-p/yIPDBMUIVi+5P6MHpMNCsMiG/MJl8ouS3Aw5IgxbM=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
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 = licenses.isc;
|
|
homepage = "http://fragglet.github.io/lhasa";
|
|
maintainers = [ maintainers.sander ];
|
|
mainProgram = "lha";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|