mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
25 lines
505 B
Nix
25 lines
505 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, fetchurl
|
|
, eio
|
|
, ssl
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "eio-ssl";
|
|
version = "0.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/anmonteiro/eio-ssl/releases/download/${version}/eio-ssl-${version}.tbz";
|
|
hash = "sha256-m4CiUQtXVSMfLthbDsAftpiOsr24I5IGiU1vv7Rz8go=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ eio ssl ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/anmonteiro/eio-ssl";
|
|
description = "OpenSSL binding to EIO";
|
|
license = lib.licenses.lgpl21;
|
|
};
|
|
}
|