Unverified Commit 90f0588b authored by Rick van Schijndel's avatar Rick van Schijndel Committed by GitHub
Browse files

lib60870: remove 'with lib' usage (#351601)

parents 6d320a90 f917315f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -32,11 +32,11 @@ stdenv.mkDerivation (finalAttrs: {

  passthru.updateScript = gitUpdater { rev-prefix = "v"; };

  meta = with lib; {
  meta = {
    description = "Implementation of the IEC 60870-5-101/104 protocol";
    homepage = "https://libiec61850.com/";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ stv0g ];
    platforms = platforms.unix;
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ stv0g ];
    platforms = lib.platforms.unix;
  };
})