From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:37543) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hCiIu-000434-4f for guix-patches@gnu.org; Sat, 06 Apr 2019 06:12:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hCiIs-0003ec-Ua for guix-patches@gnu.org; Sat, 06 Apr 2019 06:12:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:33033) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hCiIs-0003eM-P3 for guix-patches@gnu.org; Sat, 06 Apr 2019 06:12:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hCiIs-0007tL-Ft for guix-patches@gnu.org; Sat, 06 Apr 2019 06:12:02 -0400 Subject: [bug#35169] [PATCH] gnu: Add urh. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:37412) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hCiHj-0003Uu-N5 for guix-patches@gnu.org; Sat, 06 Apr 2019 06:10:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hCiHi-00039n-IV for guix-patches@gnu.org; Sat, 06 Apr 2019 06:10:51 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:43262) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hCiHh-00036b-9t for guix-patches@gnu.org; Sat, 06 Apr 2019 06:10:50 -0400 From: Arun Isaac Date: Sat, 6 Apr 2019 15:40:33 +0530 Message-Id: <20190406101033.24342-1-arunisaac@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35169@debbugs.gnu.org * gnu/packages/ham-radio.scm (urh): New variable. --- gnu/packages/ham-radio.scm | 40 +++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ham-radio.scm b/gnu/packages/ham-radio.scm index 6e91866905..16965810fc 100644 --- a/gnu/packages/ham-radio.scm +++ b/gnu/packages/ham-radio.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2017, 2018 Arun Isaac +;;; Copyright © 2017, 2018, 2019 Arun Isaac ;;; ;;; This file is part of GNU Guix. ;;; @@ -20,11 +20,13 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (gnu packages gtk) #:use-module (gnu packages libusb) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) + #:use-module (gnu packages qt) #:use-module (gnu packages xml) #:use-module (guix build-system cmake) #:use-module (guix build-system python)) @@ -82,3 +84,39 @@ growing list of radios across several manufacturers and allows transferring of memory contents between them.") (license (list license:gpl3+ license:lgpl3+)))) ; chirp/elib_intl.py + +(define-public urh + (package + (name "urh") + (version "2.5.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jopohl/urh") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "110fwlj2fw8jgrsgqfkha7lx8f06w0ymh51mgpckx8a0wycznhcy")))) + (build-system python-build-system) + (inputs + `(("python-numpy" ,python-numpy) + ("python-psutil" ,python-psutil) + ("python-pyqt" ,python-pyqt) + ("python-pyzmq" ,python-pyzmq))) + (native-inputs + `(("python-cython" ,python-cython))) + (arguments + `(#:tests? #f)) ; tests require an X server + (home-page "https://github.com/jopohl/urh") + (synopsis "Investigate unknown wireless protocols") + (description "The Universal Radio Hacker (URH) is a software for +investigating unknown wireless protocols. Features include hardware +interfaces for common Software Defined Radios, easy demodulation of signals, +assigning participants to keep overview of your data, customizable decodings +to crack even sophisticated encodings like CC1101 data whitening, assign +labels to reveal the logic of the protocol, fuzzing component to find security +leaks, modulation support to inject the data back into the system, simulation +environment to perform stateful attacks.") + (license license:gpl3))) -- 2.21.0