xin/pkgs/rtlamr.nix

27 lines
567 B
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, buildGoModule
, fetchFromGitHub
, ...
}:
with lib;
2023-09-12 08:44:05 -06:00
buildGoModule rec {
pname = "rtlamr";
version = "0.9.3";
2023-09-12 08:44:05 -06:00
src = fetchFromGitHub {
owner = "bemasher";
repo = pname;
rev = "v${version}";
hash = "sha256-0LufLU/wTmCRqTnQBNJg5UnDv0u1Thec5FSWATWqZsQ=";
};
2023-09-12 08:44:05 -06:00
vendorHash = "sha256-uT6zfsWgIot0EMNqwtwJNFXN/WaAyOGfcYJjuyOXT4g=";
2023-09-12 08:44:05 -06:00
meta = {
description = "rtl-sdr receiver for Itron ETR meters";
homepage = "https://github.com/bemasher/rtlamr";
2024-05-31 07:51:16 -06:00
license = licenses.agpl3Only;
2023-09-12 08:44:05 -06:00
maintainers = with maintainers; [ qbit ];
};
}