kalibrate-hackrf: init at 2016-08-27
This commit is contained in:
parent
76223aa4b2
commit
145bbbe17b
37
pkgs/tools/misc/kalibrate-hackrf/default.nix
Normal file
37
pkgs/tools/misc/kalibrate-hackrf/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fftw, hackrf, libusb1 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "kalibrate-hackrf-unstable-20160827";
|
||||||
|
|
||||||
|
# There are no tags/releases, so use the latest commit from git master.
|
||||||
|
# Currently, the latest commit is from 2016-07-03.
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "scateu";
|
||||||
|
repo = "kalibrate-hackrf";
|
||||||
|
rev = "2492c20822ca6a49dce97967caf394b1d4b2c43e";
|
||||||
|
sha256 = "1jvn1qx7csgycxpx1k804sm9gk5a0c65z9gh8ybp9awq3pziv0nx";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ fftw hackrf libusb1 ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mv $out/bin/kal $out/bin/kal-hackrf
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Calculate local oscillator frequency offset in hackrf 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 hackrf devices.
|
||||||
|
'';
|
||||||
|
homepage = https://github.com/scateu/kalibrate-hackrf;
|
||||||
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.mog ];
|
||||||
|
};
|
||||||
|
}
|
@ -2190,6 +2190,8 @@ in
|
|||||||
|
|
||||||
kalibrate-rtl = callPackage ../tools/misc/kalibrate-rtl { };
|
kalibrate-rtl = callPackage ../tools/misc/kalibrate-rtl { };
|
||||||
|
|
||||||
|
kalibrate-hackrf = callPackage ../tools/misc/kalibrate-hackrf { };
|
||||||
|
|
||||||
kakoune = callPackage ../applications/editors/kakoune { };
|
kakoune = callPackage ../applications/editors/kakoune { };
|
||||||
|
|
||||||
kbdd = callPackage ../applications/window-managers/kbdd { };
|
kbdd = callPackage ../applications/window-managers/kbdd { };
|
||||||
|
Loading…
Reference in New Issue
Block a user