Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5 eio, 6 ssl, 7}: 8 9buildDunePackage rec { 10 pname = "eio-ssl"; 11 version = "0.3.0"; 12 13 src = fetchurl { 14 url = "https://github.com/anmonteiro/eio-ssl/releases/download/${version}/eio-ssl-${version}.tbz"; 15 hash = "sha256-m4CiUQtXVSMfLthbDsAftpiOsr24I5IGiU1vv7Rz8go="; 16 }; 17 18 propagatedBuildInputs = [ 19 eio 20 ssl 21 ]; 22 23 meta = { 24 homepage = "https://github.com/anmonteiro/eio-ssl"; 25 description = "OpenSSL binding to EIO"; 26 license = lib.licenses.lgpl21; 27 }; 28}