Merge pull request #301620 from stv0g/update-libiec61850

Update libiec61850
This commit is contained in:
Weijia Wang
2024-04-05 08:42:53 +02:00
committed by GitHub
+9 -9
View File
@@ -1,9 +1,11 @@
{ cmake
, lib
, stdenv
, fetchFromGitHub
, gitUpdater
{
cmake,
lib,
stdenv,
fetchFromGitHub,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libiec61850";
version = "1.5.3";
@@ -19,15 +21,13 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ cmake ];
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = with lib; {
description = "Open-source library for the IEC 61850 protocols";
homepage = "https://libiec61850.com/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ stv0g ];
platforms = [ "x86_64-linux" ];
platforms = platforms.linux;
};
})