33 lines
1017 B
Nix
33 lines
1017 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fftw, rtl-sdr, libusb1 }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "kalibrate-rtl";
|
|
version = "unstable-2013-12-14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "steve-m";
|
|
repo = "kalibrate-rtl";
|
|
rev = "aae11c8a8dc79692a94ccfee39ba01e8c8c05d38";
|
|
sha256 = "1spbfflkqnw9s8317ppsf7b1nnkicqsmaqsnz1zf8i49ix70i6kn";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [ fftw rtl-sdr libusb1 ];
|
|
|
|
meta = with lib; {
|
|
description = "Calculate local oscillator frequency offset in RTL-SDR devices";
|
|
longDescription = ''
|
|
Kalibrate, or kal, can scan for GSM base stations in a given frequency
|
|
band and can use those GSM base stations to calculate the local
|
|
oscillator frequency offset.
|
|
|
|
This package is for RTL-SDR devices.
|
|
'';
|
|
homepage = "https://github.com/steve-m/kalibrate-rtl";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
};
|
|
}
|