open62541: 1.3.7 -> 1.3.8

https://github.com/open62541/open62541/releases/tag/v1.3.8
This commit is contained in:
Nicolas Benes
2023-10-11 08:53:04 +02:00
parent 0ccfba07f2
commit f1137c4db5
@@ -5,8 +5,10 @@
, cmake
, pkg-config
, check
, libxcrypt
, subunit
, python3Packages
, nix-update-script
, withDoc ? false
, graphviz-nox
@@ -31,13 +33,13 @@ in
stdenv.mkDerivation (finalAttrs: {
pname = "open62541";
version = "1.3.7";
version = "1.3.8";
src = fetchFromGitHub {
owner = "open62541";
repo = "open62541";
rev = "v${finalAttrs.version}";
hash = "sha256-XmoLmBGTMA6cejLiNU8hAVnHd35eh6lTIu9csmiR+4U=";
hash = "sha256-koifSynnJX9IuwX8HUT1TzHoKgJfweNGAVlqUx7nEc4=";
fetchSubmodules = true;
};
@@ -82,6 +84,7 @@ stdenv.mkDerivation (finalAttrs: {
checkInputs = [
check
libxcrypt
subunit
];
@@ -126,6 +129,8 @@ stdenv.mkDerivation (finalAttrs: {
rm -r bin/libopen62541*
'';
passthru.updateScript = nix-update-script { };
passthru.tests = let
open62541Full = encBackend: open62541.override {
withDoc = true;
@@ -151,6 +156,7 @@ stdenv.mkDerivation (finalAttrs: {
OPC UA-based communication into existing applications.
'';
homepage = "https://www.open62541.org";
changelog = "https://github.com/open62541/open62541/releases/tag/v${finalAttrs.version}";
license = licenses.mpl20;
maintainers = with maintainers; [ panicgh ];
platforms = platforms.linux;