Unverified Commit ee847178 authored by Paul Meyer's avatar Paul Meyer Committed by GitHub
Browse files

cameradar: 5.0.2 -> 5.0.4 (#360196)

parents f48a0106 54e1c9fe
Loading
Loading
Loading
Loading
+8 −20
Original line number Diff line number Diff line
@@ -8,40 +8,28 @@

buildGoModule rec {
  pname = "cameradar";
  version = "5.0.2";
  version = "5.0.4";

  src = fetchFromGitHub {
    owner = "Ullaakut";
    repo = "cameradar";
    rev = "v${version}";
    sha256 = "sha256-GOqmz/aiOLGMfs9rQBIEQSgBycPzhu8BohcAc2U+gBw=";
    tag = "v${version}";
    hash = "sha256-nfqgBUgcLjPLdn8hs1q0FLDBHbloeMKETDrv3a5SZq0=";
  };

  vendorHash = "sha256-AIi57DWMvAKl0PhuwHO/0cHoDKk5e0bJsqHYBka4NiU=";

  nativeBuildInputs = [
    pkg-config
  ];
  nativeBuildInputs = [ pkg-config ];

  buildInputs = [
    curl
  ];
  buildInputs = [ curl ];

  subPackages = [
    "cmd/cameradar"
  ];
  # At least one test is outdated
  #doCheck = false;
  subPackages = [ "cmd/cameradar" ];

  meta = {
    description = "RTSP stream access tool";
    homepage = "https://github.com/Ullaakut/cameradar";
    changelog = "https://github.com/Ullaakut/cameradar/releases/tag/v${version}";
    license = with lib.licenses; [ mit ];
    changelog = "https://github.com/Ullaakut/cameradar/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    # Upstream issue, doesn't build with latest curl, see
    # https://github.com/Ullaakut/cameradar/issues/320
    # https://github.com/andelf/go-curl/issues/84
    broken = true;
  };
}