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

stdenv.mkDerivation {
  name = "stunnel-4.56";
  
  src = fetchurl {
    url = http://www.stunnel.org/downloads/stunnel-4.56.tar.gz;
    sha256 = "14qjhwfa0y17ipnd5mc970vfmralvgaxfl6fk0rl91vdwbxjrblw";
  };

  buildInputs = [openssl];
  
  meta = {
    description = "Stunnel - Universal SSL wrapper";
    homepage = http://www.stunnel.org/;
    license = "GPLv2";
  };
}