Merge pull request #7762 from sjmackenzie/hackrf

hackrf: new package
This commit is contained in:
Pascal Wittmann 2015-05-08 22:12:13 +02:00
commit 52c1fab46d
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ stdenv, fetchgit, cmake, pkgconfig, libusb }:
stdenv.mkDerivation rec {
name = "hackrf-${version}";
version = "2014.08.1";
src = fetchgit {
url = "git://github.com/mossmann/hackrf";
rev = "refs/tags/v${version}";
sha256 = "1f3mmzyn6qqbl02h6dkz0zybppihqgpdxjgqmkb1pn3i0d98ydb3";
};
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;
maintainers = [ maintainers.sjmackenzie ];
};
}

View File

@ -11078,6 +11078,8 @@ let
guvcview = callPackage ../os-specific/linux/guvcview { };
hackrf = callPackage ../applications/misc/hackrf { };
hello = callPackage ../applications/misc/hello/ex-2 { };
helmholtz = callPackage ../applications/audio/pd-plugins/helmholtz { };