Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
806 B
Nix
32 lines
806 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "rtlamr";
|
|
version = "0.9.3-unstable-2023-08-13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bemasher";
|
|
repo = "rtlamr";
|
|
rev = "dcdddc5a6e7717a038e9346d0adcf9669e4f60b7";
|
|
sha256 = "sha256-r3dMCpNBCQsqSlFYYfOtVMMgPOagWks6PPWOn5PsLZs";
|
|
};
|
|
|
|
vendorHash = "sha256-uT6zfsWgIot0EMNqwtwJNFXN/WaAyOGfcYJjuyOXT4g=";
|
|
|
|
meta = {
|
|
description = "Rtl-sdr receiver for Itron ERT compatible smart meters";
|
|
longDescription = ''
|
|
An rtl-sdr receiver for Itron ERT compatible smart meters operating
|
|
in the 900MHz ISM band
|
|
'';
|
|
homepage = "https://github.com/bemasher/rtlamr";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ jmendyk ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|