about summary refs log tree commit diff
path: root/pkgs/applications/radio/hackrf/default.nix
blob: 09b4c84c1314432a6f656c619e44d9d9d84fcf38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libusb, fftwSinglePrec }:

stdenv.mkDerivation rec {
  pname = "hackrf";
  version = "2018.01.1";

  src = fetchFromGitHub {
    owner = "mossmann";
    repo = "hackrf";
    rev = "v${version}";
    sha256 = "0idh983xh6gndk9kdgx5nzz76x3mxb42b02c5xvdqahadsfx3b9w";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [
    cmake libusb fftwSinglePrec
  ];

  cmakeFlags = [ "-DUDEV_RULES_GROUP=plugdev" "-DUDEV_RULES_PATH=lib/udev/rules.d" ];

  preConfigure = ''
    cd host
  '';

  meta = with stdenv.lib; {
    description = "An open source SDR platform";
    homepage = http://greatscottgadgets.com/hackrf/;
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = with maintainers; [ sjmackenzie the-kenny ];
  };
}