mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 18:23:44 +00:00
Merge pull request #171243 from viraptor/fm-fune-init
fm-tune: init at 1.1
This commit is contained in:
commit
668824ae86
32
pkgs/applications/radio/fm-tune/default.nix
Normal file
32
pkgs/applications/radio/fm-tune/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, liquid-dsp, soapysdr }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fm-tune";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "viraptor";
|
||||
repo = "fm_tune";
|
||||
rev = version;
|
||||
sha256 = "pwL2G1Ni1Ixw/N0diSoGGIoVrtmF92mWZ5i57OOvkX4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [ liquid-dsp soapysdr ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Find initial calibration offset for SDR devices";
|
||||
longDescription = ''
|
||||
fm_tune finds the initial offset for calibrating an SDR device. This is
|
||||
based a given FM radio station frequency. The offset given by this tool is
|
||||
not precise, but can be useful as a starting point for other tools which
|
||||
cannot correct for very large errors.
|
||||
'';
|
||||
homepage = "https://github.com/viraptor/fm_tune";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ viraptor ];
|
||||
mainProgram = "fm_tune";
|
||||
};
|
||||
}
|
@ -1679,6 +1679,8 @@ with pkgs;
|
||||
|
||||
fabs = callPackage ../tools/backup/fabs { };
|
||||
|
||||
fm-tune = callPackage ../applications/radio/fm-tune { };
|
||||
|
||||
fwbuilder = libsForQt5.callPackage ../tools/security/fwbuilder { };
|
||||
|
||||
hblock = callPackage ../tools/networking/hblock { };
|
||||
|
Loading…
Reference in New Issue
Block a user