Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 31 lines 806 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5}: 6 7buildGoModule { 8 pname = "rtlamr"; 9 version = "0.9.3-unstable-2023-08-13"; 10 11 src = fetchFromGitHub { 12 owner = "bemasher"; 13 repo = "rtlamr"; 14 rev = "dcdddc5a6e7717a038e9346d0adcf9669e4f60b7"; 15 sha256 = "sha256-r3dMCpNBCQsqSlFYYfOtVMMgPOagWks6PPWOn5PsLZs"; 16 }; 17 18 vendorHash = "sha256-uT6zfsWgIot0EMNqwtwJNFXN/WaAyOGfcYJjuyOXT4g="; 19 20 meta = { 21 description = "Rtl-sdr receiver for Itron ERT compatible smart meters"; 22 longDescription = '' 23 An rtl-sdr receiver for Itron ERT compatible smart meters operating 24 in the 900MHz ISM band 25 ''; 26 homepage = "https://github.com/bemasher/rtlamr"; 27 license = lib.licenses.agpl3Only; 28 maintainers = with lib.maintainers; [ jmendyk ]; 29 platforms = lib.platforms.unix; 30 }; 31}