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

29 lines
664 B
Nix
Raw Normal View History

2015-05-08 15:31:26 +00:00
{ stdenv, fetchgit, cmake, pkgconfig, libusb }:
stdenv.mkDerivation rec {
name = "hackrf-${version}";
2015-07-27 11:00:39 +00:00
version = "2015.07.2";
2015-05-08 15:31:26 +00:00
src = fetchgit {
url = "git://github.com/mossmann/hackrf";
rev = "refs/tags/v${version}";
2015-07-27 11:00:39 +00:00
sha256 = "0wa4m0kdq8q2ib724w8ry8shmmm1liaaawhjygrjx6zxz9jxr3vm";
2015-05-08 15:31:26 +00:00
};
buildInputs = [
cmake pkgconfig libusb
];
preConfigure = ''
cd host
'';
meta = with stdenv.lib; {
description = "An open source SDR platform";
homepage = http://greatscottgadgets.com/hackrf/;
license = licenses.gpl2;
platforms = platforms.linux;
2015-07-27 11:00:39 +00:00
maintainers = with maintainers; [ sjmackenzie the-kenny ];
2015-05-08 15:31:26 +00:00
};
}