summary refs log tree commit diff
path: root/pkgs/tools/archivers/p7zip/default.nix
blob: bb9743e8e5d9971bd92ec026ab3897f7301d1290 (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
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "p7zip-9.13";
  
  src = fetchurl {
    url = mirror://sourceforge/p7zip/p7zip_9.13_src_all.tar.bz2;
    sha256 = "08yr0cfbjx60r1ia7vhphzvc3gax62xhgsn3vdm7sdmxxai0z77w";
  };

  preConfigure =
    ''
      makeFlagsArray=(DEST_HOME=$out)
      buildFlags=all3
    '';

  meta = {
    homepage = http://p7zip.sourceforge.net/;
    description = "A port of the 7-zip archiver";
    # license = "LGPLv2.1+"; + "unRAR restriction"
    platforms = stdenv.lib.platforms.unix;
  };
}