forked from mirrors/nixpkgs
wifi-password: init at 0.1.0 (#68373)
* wifi-password: init at 0.1.0 * Apply suggestions from code review Co-Authored-By: symphorien <symphorien@users.noreply.github.com>
This commit is contained in:
parent
78879ae0e9
commit
8b75a0a25f
26
pkgs/os-specific/darwin/wifi-password/default.nix
Normal file
26
pkgs/os-specific/darwin/wifi-password/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.1.0";
|
||||
pname = "wifi-password";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rauchg";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0sfvb40h7rz9jzp4l9iji3jg80paklqsbmnk5h7ipsv2xbsplp64";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp wifi-password.sh $out/bin/wifi-password
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/rauchg/wifi-password;
|
||||
description = "Get the password of the wifi you're on";
|
||||
platforms = stdenv.lib.platforms.darwin;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.nikitavoloboev ];
|
||||
};
|
||||
}
|
|
@ -24831,4 +24831,6 @@ in
|
|||
|
||||
nix-store-gcs-proxy = callPackage ../tools/nix/nix-store-gcs-proxy {};
|
||||
|
||||
wifi-password = callPackage ../os-specific/darwin/wifi-password {};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue