aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-06-03 00:31:13 -0700
committerMario Rodas <marsam@users.noreply.github.com>2019-06-04 08:15:45 -0500
commitb2732a541da008dacd85e293f693acfb95976321 (patch)
tree3b9403caefbc92687755321d854d4f49d47c6320 /pkgs/applications/radio
parentca4f7e0518f66d32c0ebcc2930aba219568aaeed (diff)
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
Diffstat (limited to 'pkgs/applications/radio')
-rw-r--r--pkgs/applications/radio/urh/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/radio/urh/default.nix b/pkgs/applications/radio/urh/default.nix
index ced3bccd7b6..11a132ba06f 100644
--- a/pkgs/applications/radio/urh/default.nix
+++ b/pkgs/applications/radio/urh/default.nix
@@ -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 ];
};