1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 05:19:41 -04:00
nixpkgs/pkgs/tools/networking/stunnel/default.nix
Rickard Nilsson 08f1b426bc stunnel: Update to 4.56
Note, I had to add "fips = no" to my stunnel configuration after
the update.
2013-04-09 16:34:59 +02:00

19 lines
404 B
Nix

{ 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";
};
}