mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "qrcp";
|
|
version = "0.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "claudiodangelis";
|
|
repo = "qrcp";
|
|
rev = version;
|
|
sha256 = "sha256-3GPZ6+gx5i/xULM3lq7D+b0onBC6clgeZsI1CvZ943s=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-XVBDPhQsnUdftS+jZ1zWZlfSbFXxXrKSqiGTPpLq5i0=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd qrcp \
|
|
--bash <($out/bin/qrcp completion bash) \
|
|
--fish <($out/bin/qrcp completion fish) \
|
|
--zsh <($out/bin/qrcp completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://claudiodangelis.com/qrcp/";
|
|
description = "Transfer files over wifi by scanning a QR code from your terminal";
|
|
longDescription = ''
|
|
qrcp binds a web server to the address of your Wi-Fi network
|
|
interface on a random port and creates a handler for it. The default
|
|
handler serves the content and exits the program when the transfer is
|
|
complete.
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fgaz SuperSandro2000 ];
|
|
broken = stdenv.isDarwin; # needs golang.org/x/sys bump
|
|
};
|
|
}
|