* Added p7zip for decompressing 7-zip archives.
svn path=/nixpkgs/trunk/; revision=9248
This commit is contained in:
parent
7a3b9fc2f8
commit
af7da7f19d
12
pkgs/tools/archivers/p7zip/default.nix
Normal file
12
pkgs/tools/archivers/p7zip/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{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)
|
||||
";
|
||||
}
|
@ -547,6 +547,10 @@ rec {
|
||||
pamSupport = true;
|
||||
};
|
||||
|
||||
p7zip = import ../tools/archivers/p7zip {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
par2cmdline = import ../tools/networking/par2cmdline {
|
||||
inherit fetchurl;
|
||||
stdenv = overrideGCC stdenv gcc34;
|
||||
|
Loading…
x
Reference in New Issue
Block a user