mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
47 lines
1019 B
Nix
47 lines
1019 B
Nix
{ lib
|
|
, buildGoModule
|
|
, curl
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cameradar";
|
|
version = "5.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Ullaakut";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GOqmz/aiOLGMfs9rQBIEQSgBycPzhu8BohcAc2U+gBw=";
|
|
};
|
|
|
|
vendorHash = "sha256-AIi57DWMvAKl0PhuwHO/0cHoDKk5e0bJsqHYBka4NiU=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
];
|
|
|
|
subPackages = [
|
|
"cmd/cameradar"
|
|
];
|
|
# At least one test is outdated
|
|
#doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "RTSP stream access tool";
|
|
homepage = "https://github.com/Ullaakut/cameradar";
|
|
changelog = "https://github.com/Ullaakut/cameradar/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with 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;
|
|
};
|
|
}
|