Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
808 B
Nix
44 lines
808 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
autoreconfHook,
|
|
libtool,
|
|
openssl,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libretls";
|
|
version = "3.8.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.causal.agency/libretls";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-cFu9v8vOkfvIj/OfD0Er3n+gbH1h1CHOHA6a0pJuwXY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
libtool
|
|
];
|
|
|
|
autoreconfFlags = [
|
|
"--force"
|
|
"--install"
|
|
];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description = "Libtls for OpenSSL";
|
|
homepage = "https://git.causal.agency/libretls/about/";
|
|
changelog = "https://git.causal.agency/libretls/tag/?h=${finalAttrs.version}";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ mtrsk ];
|
|
};
|
|
})
|