mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +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.
31 lines
807 B
Nix
31 lines
807 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
|
, libusb1, rtl-sdr, soapysdr-with-plugins
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "24.10";
|
|
pname = "rtl_433";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "merbanan";
|
|
repo = "rtl_433";
|
|
rev = version;
|
|
hash = "sha256-o4eAG6iYK4JXbh9JRv5NLmSxg396ErH++H0J8tTXiUA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Decode traffic from devices that broadcast on 433.9 MHz, 868 MHz, 315 MHz, 345 MHz and 915 MHz";
|
|
homepage = "https://github.com/merbanan/rtl_433";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ earldouglas markuskowa ];
|
|
platforms = platforms.all;
|
|
mainProgram = "rtl_433";
|
|
};
|
|
}
|