summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/radio/kalibrate-rtl
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-02-09 19:58:52 +0100
committerElis Hirwing <elis@hirwing.se>2019-02-09 21:40:12 +0100
commit7bbe7e34a70f5d87b5e169b406dd536123ded3e4 (patch)
tree6ac8651f3c79b979957ea10bc6c5c92a88013329 /pkgs/applications/radio/kalibrate-rtl
parent8a17826eed56aa1e19e867e382dc105ee238fe65 (diff)
kalibrate-rtl: Move from misc to radio
Diffstat (limited to 'pkgs/applications/radio/kalibrate-rtl')
-rw-r--r--pkgs/applications/radio/kalibrate-rtl/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/radio/kalibrate-rtl/default.nix b/pkgs/applications/radio/kalibrate-rtl/default.nix
new file mode 100644
index 000000000000..19ebd05e23c1
--- /dev/null
+++ b/pkgs/applications/radio/kalibrate-rtl/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchgit, autoreconfHook, pkgconfig, fftw, rtl-sdr, libusb1 }:
+
+stdenv.mkDerivation rec {
+ name = "kalibrate-rtl-20131214";
+
+ # There are no tags/releases, so use the latest commit from git master.
+ # Currently, the latest commit is from 2013-12-14.
+ src = fetchgit {
+ url = "https://github.com/steve-m/kalibrate-rtl.git";
+ rev = "aae11c8a8dc79692a94ccfee39ba01e8c8c05d38";
+ sha256 = "1spbfflkqnw9s8317ppsf7b1nnkicqsmaqsnz1zf8i49ix70i6kn";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ buildInputs = [ fftw rtl-sdr libusb1 ];
+
+ meta = with stdenv.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 = [ maintainers.bjornfor ];
+ };
+}