mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
p7zip: small update to fix CVE-2015-1038
This commit is contained in:
parent
8afa77cb07
commit
d3b25752f1
@ -1,11 +1,14 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
let
|
||||
version = "9.38";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "p7zip-9.20.1";
|
||||
|
||||
name = "p7zip-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/p7zip/p7zip_9.20.1_src_all.tar.bz2;
|
||||
sha256 = "10j7rc1nzdp7vvcpc3340yi3qw7abby4szv8zkwh10d0zizpwma9";
|
||||
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
|
||||
sha256 = "0mxribb9a3lz3bifz6002hg7vyy8h9piinypian533hw8qvswfx7";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
Loading…
Reference in New Issue
Block a user