authoscope: renamed from badtouch (#127953)

This commit is contained in:
Fabian Affolter 2021-06-26 18:44:56 +02:00 committed by GitHub
parent f6c9ffc9b6
commit 6e289155b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 10 deletions

View file

@ -11,17 +11,17 @@
}:
rustPlatform.buildRustPackage rec {
pname = "badtouch";
version = "0.7.3";
pname = "authoscope";
version = "0.8.0";
src = fetchFromGitHub {
owner = "kpcyrd";
repo = pname;
rev = "v${version}";
sha256 = "05dzwx9y8zh0y9zd4mibp02255qphc6iqy916fkm3ahaw0rg84h3";
sha256 = "11ci38m6d3lj4f0g7cl3dqf10kfk258k2k92phd2nav1my4i90pf";
};
cargoSha256 = "0mmglgz037dk3g7qagf1dyss5hvvsdy0m5m1h6c3rk5bp5kjzg87";
cargoSha256 = "13x7i52i3k88vkfvk2smy2aqfg3na4317scvw7ali1rv545nbxds";
nativeBuildInputs = [
installShellFiles
@ -43,8 +43,8 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "Scriptable network authentication cracker";
homepage = "https://github.com/kpcyrd/badtouch";
license = with licenses; [ gpl3Only ];
homepage = "https://github.com/kpcyrd/authoscope";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -70,6 +70,7 @@ mapAliases ({
aucdtect = throw "aucdtect: Upstream no longer provides download urls."; # added 2020-12-26
avldrums-lv2 = x42-avldrums; # added 2020-03-29
avxsynth = throw "avxsynth was removed because it was broken"; # added 2021-05-18
badtouch = authoscope; # Project was renamed, added 20210626
bar-xft = lemonbar-xft; # added 2015-01-16
bashCompletion = bash-completion; # Added 2016-09-28
batti = throw "batti has been removed from nixpkgs, as it was unmaintained"; # added 2019-12-10

View file

@ -1777,6 +1777,10 @@ in
atftp = callPackage ../tools/networking/atftp { };
authoscope = callPackage ../tools/security/authoscope {
inherit (darwin.apple_sdk.frameworks) Security;
};
autogen = callPackage ../development/tools/misc/autogen { };
autojump = callPackage ../tools/misc/autojump { };
@ -1827,10 +1831,6 @@ in
backblaze-b2 = callPackage ../development/tools/backblaze-b2 { };
badtouch = callPackage ../tools/security/badtouch {
inherit (darwin.apple_sdk.frameworks) Security;
};
bandwhich = callPackage ../tools/networking/bandwhich {
inherit (darwin.apple_sdk.frameworks) Security;
};