about summary refs log tree commit diff
path: root/pkgs/tools/archivers/7zz/default.nix
blob: f5344a63f4947312695cdc9cd7b63a16dae55ed7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ stdenv, lib, fetchurl, p7zip }:

stdenv.mkDerivation rec {
  pname = "7zz";
  version = "21.07";

  src = fetchurl {
    url = "https://7-zip.org/a/7z${lib.replaceStrings [ "." ] [ "" ] version}-src.7z";
    sha256 = "sha256-0QdNVvQVqrmdmeWXp7ZtxFXbpjSa6KTInfdkdbahKEw=";
  };

  sourceRoot = "CPP/7zip/Bundles/Alone2";

  # we need https://github.com/nidud/asmc/tree/master/source/asmc/linux in order
  # to build with the optimized assembler but that doesn't support building with
  # GCC: https://github.com/nidud/asmc/issues/8
  makefile = "../../cmpl_gcc.mak"; # "../../cmpl_gcc_x64.mak";

  nativeBuildInputs = [ p7zip ];

  enableParallelBuilding = true;

  installPhase = ''
    runHook preInstall

    install -Dm555 -t $out/bin b/g/7zz
    install -Dm444 -t $out/share/doc/${pname} ../../../../DOC/*.txt

    runHook postInstall
  '';

  doInstallCheck = true;

  installCheckPhase = ''
    $out/bin/7zz --help | grep ${version}
  '';

  meta = with lib; {
    description = "Command line archiver utility";
    homepage = "https://7zip.org";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ anna328p peterhoeg ];
    platforms = platforms.linux;
  };
}