mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
socat: Update to 1.7.2.1
CVE-2012-0219
This commit is contained in:
parent
4adad458e7
commit
8fc1fe9f6b
2 changed files with 9 additions and 7 deletions
|
@ -1,17 +1,20 @@
|
|||
{ stdenv, fetchurl, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "socat-1.7.2.0";
|
||||
|
||||
name = "socat-1.7.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.dest-unreach.org/socat/download/${name}.tar.bz2";
|
||||
sha256 = "00hq0ia1fs4sy0qpavzlpf4qmnhh2ybq5is2kqzvqky14zlvvcsr";
|
||||
sha256 = "0xw2qmmixv7jwsrgx2vy54bq695d6my3pm3z4dcpmf9vqvb2xsps";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
|
||||
meta = {
|
||||
description = "Socat - a different replacement for netcat";
|
||||
homepage = "http://www.dest-unreach.org/socat/";
|
||||
description = "A utility for bidirectional data transfer between two independent data channels";
|
||||
homepage = http://www.dest-unreach.org/socat/;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = stdenv.lib.maintainers.eelco;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -274,7 +274,6 @@ let
|
|||
slim = linux;
|
||||
sloccount = allBut "i686-cygwin";
|
||||
smartmontools = linux;
|
||||
socat = linux;
|
||||
spidermonkey = linux;
|
||||
splashutils = linux;
|
||||
sqlite = allBut "i686-cygwin";
|
||||
|
|
Loading…
Reference in a new issue