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
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{
|
|
cmake,
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
mbedtls,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "lib60870";
|
|
version = "2.3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mz-automation";
|
|
repo = "lib60870";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-9VqLl1pDmi8TauBA8uCyymzsYd3w4b5AKtqH7XW80N4=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/lib60870-C";
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace src/CMakeLists.txt --replace-warn "-lrt" ""
|
|
'';
|
|
|
|
separateDebugInfo = true;
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ mbedtls ];
|
|
|
|
cmakeFlags = [ (lib.cmakeBool "WITH_MBEDTLS3" true) ];
|
|
|
|
env.NIX_LDFLAGS = "-lmbedcrypto -lmbedx509 -lmbedtls";
|
|
|
|
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
|
|
|
|
meta = {
|
|
description = "Implementation of the IEC 60870-5-101/104 protocol";
|
|
homepage = "https://libiec61850.com/";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ stv0g ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|