nixpkgs/pkgs/by-name/ur/urh/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Nix
Raw Normal View History

2024-07-15 15:48:58 +00:00
{ stdenv, lib, fetchFromGitHub, python3Packages
, hackrf, rtl-sdr, airspy, limesuite, libiio
2021-12-27 17:50:35 +00:00
, libbladeRF
, qt5
2024-11-21 09:54:20 +00:00
, wrapGAppsHook3
, USRPSupport ? false, uhd }:
2017-02-13 21:16:12 +00:00
python3Packages.buildPythonApplication rec {
pname = "urh";
2024-01-24 03:27:41 +00:00
version = "2.9.6";
2017-02-13 21:16:12 +00:00
src = fetchFromGitHub {
owner = "jopohl";
repo = pname;
2023-01-30 23:50:27 +00:00
rev = "refs/tags/v${version}";
2024-01-24 03:27:41 +00:00
sha256 = "sha256-4Fe2+BUdnVdNQHqZeftXLabn/vTzgyynOtqy0rAb0Rk=";
2017-02-13 21:16:12 +00:00
};
2024-11-21 09:54:20 +00:00
nativeBuildInputs = [ qt5.wrapQtAppsHook wrapGAppsHook3 ];
2024-07-15 15:48:58 +00:00
buildInputs = [ hackrf rtl-sdr airspy limesuite libiio libbladeRF ]
++ lib.optional USRPSupport uhd
++ lib.optional stdenv.hostPlatform.isLinux qt5.qtwayland;
2017-03-03 15:40:51 +00:00
propagatedBuildInputs = with python3Packages; [
pyqt5 numpy psutil cython pyzmq pyaudio setuptools
2017-03-03 15:40:51 +00:00
];
2017-02-13 21:16:12 +00:00
postFixup = ''
wrapQtApp $out/bin/urh
'';
2017-02-13 21:16:12 +00:00
doCheck = false;
meta = with lib; {
homepage = "https://github.com/jopohl/urh";
2017-02-13 21:16:12 +00:00
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
license = licenses.gpl3;
2023-07-23 09:58:00 +00:00
platforms = platforms.unix;
2017-02-13 21:16:12 +00:00
maintainers = with maintainers; [ fpletz ];
};
}