Merge pull request #109124 from fabaff/bump-socat
socat: 1.7.3.4 -> 1.7.4.1
This commit is contained in:
commit
cc0d004530
@ -1,11 +1,19 @@
|
|||||||
{ stdenv, fetchurl, openssl, readline, which, nettools }:
|
{ lib
|
||||||
|
, fetchurl
|
||||||
|
, nettools
|
||||||
|
, openssl
|
||||||
|
, readline
|
||||||
|
, stdenv
|
||||||
|
, which
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "socat-1.7.3.4";
|
pname = "socat";
|
||||||
|
version = "1.7.4.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.dest-unreach.org/socat/download/${name}.tar.bz2";
|
url = "http://www.dest-unreach.org/socat/download/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "1z7xgnwiqpcv1j6aghhj9nqbx7cg3gpc4n9j7vi9hm7nhv5788wp";
|
sha256 = "1sbmqqvni3ss9wyay6ik5v81kxffkra80mh4ypgj74g82iba5b1z";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
@ -22,12 +30,12 @@ stdenv.mkDerivation rec {
|
|||||||
checkInputs = [ which nettools ];
|
checkInputs = [ which nettools ];
|
||||||
doCheck = false; # fails a bunch, hangs
|
doCheck = false; # fails a bunch, hangs
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "A utility for bidirectional data transfer between two independent data channels";
|
description = "Utility for bidirectional data transfer between two independent data channels";
|
||||||
homepage = "http://www.dest-unreach.org/socat/";
|
homepage = "http://www.dest-unreach.org/socat/";
|
||||||
repositories.git = "git://repo.or.cz/socat.git";
|
repositories.git = "git://repo.or.cz/socat.git";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = with licenses; [ gpl2Only ];
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = with maintainers; [ eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user