summary refs log tree commit diff
path: root/pkgs/tools/archivers/p7zip/default.nix
blob: c9d970335001a34327874399b9122471d7081e6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "p7zip-4.53";
  
  src = fetchurl {
    url = mirror://sourceforge/p7zip/p7zip_4.53_src_all.tar.bz2;
    sha256 = "0pbgvpq852qnzq4isgc13p4nnp416xhy5vmn1rcwm8fk43l5rbqd";
  };
  
  preConfigure = "
    makeFlagsArray=(DEST_HOME=$out)
  ";

  meta = {
    homepage = http://p7zip.sourceforge.net/;
    description = "A port of the 7-zip archiver";
  };
}