nixpkgs/pkgs/applications/misc/hackrf/default.nix

29 lines
687 B
Nix
Raw Normal View History

2017-07-26 10:01:42 -07:00
{ stdenv, fetchgit, cmake, pkgconfig, libusb, fftwSinglePrec }:
2015-05-08 08:31:26 -07:00
stdenv.mkDerivation rec {
name = "hackrf-${version}";
2017-07-26 10:01:42 -07:00
version = "2017.02.1";
2015-05-08 08:31:26 -07:00
src = fetchgit {
url = "git://github.com/mossmann/hackrf";
rev = "refs/tags/v${version}";
2017-07-26 10:01:42 -07:00
sha256 = "16hd61icvzaciv7s9jpgm9c8q6m4mwvj97gxrb20sc65p5gjb7hv";
2015-05-08 08:31:26 -07:00
};
buildInputs = [
2017-07-26 10:01:42 -07:00
cmake pkgconfig libusb fftwSinglePrec
2015-05-08 08:31:26 -07:00
];
2017-07-26 10:01:42 -07:00
2015-05-08 08:31:26 -07:00
preConfigure = ''
2017-07-26 10:01:42 -07:00
cd host
2015-05-08 08:31:26 -07:00
'';
2017-07-26 10:01:42 -07:00
2015-05-08 08:31:26 -07:00
meta = with stdenv.lib; {
description = "An open source SDR platform";
homepage = http://greatscottgadgets.com/hackrf/;
license = licenses.gpl2;
2015-10-31 15:47:24 -07:00
platforms = platforms.all;
2015-07-27 04:00:39 -07:00
maintainers = with maintainers; [ sjmackenzie the-kenny ];
2015-05-08 08:31:26 -07:00
};
}