Unverified Commit 000f3090 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

cameradar: 5.0.4 -> 6.0.0 (#484559)

parents 463aaeae 779d4ec9
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -6,18 +6,18 @@
  pkg-config,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "cameradar";
  version = "5.0.4";
  version = "6.0.0";

  src = fetchFromGitHub {
    owner = "Ullaakut";
    repo = "cameradar";
    tag = "v${version}";
    hash = "sha256-nfqgBUgcLjPLdn8hs1q0FLDBHbloeMKETDrv3a5SZq0=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-cWxclfu0ywmqKnBxsaWWz2sMFExC5Dcrf+rceAhIW2U=";
  };

  vendorHash = "sha256-AIi57DWMvAKl0PhuwHO/0cHoDKk5e0bJsqHYBka4NiU=";
  vendorHash = "sha256-A8SJRky4dQHJoYpOaUBae89kHXwbdA+gnF/p7oRxcYo=";

  nativeBuildInputs = [ pkg-config ];

@@ -28,8 +28,8 @@ buildGoModule rec {
  meta = {
    description = "RTSP stream access tool";
    homepage = "https://github.com/Ullaakut/cameradar";
    changelog = "https://github.com/Ullaakut/cameradar/releases/tag/${src.tag}";
    changelog = "https://github.com/Ullaakut/cameradar/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})