Unverified Commit a408375f authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

flashmq: 1.18.2 -> 1.19.0 (#371128)

parents c78bdbc5 61ff8b71
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -7,15 +7,15 @@
  openssl,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "flashmq";
  version = "1.18.2";
  version = "1.19.0";

  src = fetchFromGitHub {
    owner = "halfgaar";
    repo = "FlashMQ";
    rev = "v${version}";
    hash = "sha256-sr3gKCovw5bhX9WsuiHQxwq/SaoLHOPCoNjtSop8ka8=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-sMpXDriH/uko0zvrliK+knAcw2unBbDHQfYHG7brhTk=";
  };

  nativeBuildInputs = [
@@ -34,12 +34,12 @@ stdenv.mkDerivation rec {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Fast light-weight MQTT broker/server";
    mainProgram = "flashmq";
    homepage = "https://www.flashmq.org/";
    license = licenses.agpl3Only;
    maintainers = with maintainers; [ sikmir ];
    platforms = platforms.linux;
    license = lib.licenses.agpl3Only;
    maintainers = with lib.maintainers; [ sikmir ];
    platforms = lib.platforms.linux;
  };
}
})