nixpkgs/pkgs/tools/networking/qrcp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
2022-11-23 23:20:44 +01:00
, stdenv
, buildGoModule
, fetchFromGitHub
2021-04-19 18:16:41 +02:00
, installShellFiles
}:
buildGoModule rec {
pname = "qrcp";
2022-03-14 19:10:42 +01:00
version = "0.9.1";
src = fetchFromGitHub {
owner = "claudiodangelis";
repo = "qrcp";
rev = version;
2022-03-14 19:10:42 +01:00
sha256 = "sha256-oXtFkjCnbfjV15XWkmmJmhG82GyaY4FAcF5NrGnxHm0=";
};
2021-04-19 18:16:41 +02:00
vendorSha256 = "1hn8c72fvih6ws1y2c4963pww3ld64m0yh3pmx62hwcy83bhb0v4";
subPackages = [ "." ];
2021-04-19 18:16:41 +02:00
nativeBuildInputs = [
installShellFiles
];
postInstall = ''
2022-03-12 22:02:18 +01:00
installShellCompletion --cmd qrcp \
--bash <($out/bin/qrcp completion bash) \
--fish <($out/bin/qrcp completion fish) \
--zsh <($out/bin/qrcp completion zsh)
2021-04-19 18:16:41 +02:00
'';
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 ];
2022-11-23 23:20:44 +01:00
broken = stdenv.isDarwin; # needs golang.org/x/sys bump
};
}