urh: 2.5.7 -> 2.7.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/urh/versions
This commit is contained in:
R. RyanTM 2019-06-03 00:31:13 -07:00 committed by Mario Rodas
parent ca4f7e0518
commit b2732a541d
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -2,14 +2,14 @@
, hackrf, rtl-sdr, airspy, limesuite }:
python3Packages.buildPythonApplication rec {
name = "urh-${version}";
version = "2.5.7";
pname = "urh";
version = "2.7.0";
src = fetchFromGitHub {
owner = "jopohl";
repo = "urh";
repo = pname;
rev = "v${version}";
sha256 = "110fwlj2fw8jgrsgqfkha7lx8f06w0ymh51mgpckx8a0wycznhcy";
sha256 = "0yxv38p8a2srk9c55jj96vcib6m6pb6m485ysfg2ilwjzipx2ab0";
};
buildInputs = [ hackrf rtl-sdr airspy limesuite ];
@ -20,9 +20,9 @@ python3Packages.buildPythonApplication rec {
doCheck = false;
meta = with stdenv.lib; {
inherit (src.meta) homepage;
homepage = "https://github.com/jopohl/urh";
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
license = licenses.asl20;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz ];
};