Skip to content

Commit

Permalink
Merge pull request NixOS#119880 from fgaz/qrcp/0.7.1
Browse files Browse the repository at this point in the history
qrcp: 0.7.0 -> 0.8.1
  • Loading branch information
SuperSandro2000 authored Apr 20, 2021
2 parents 9913909 + 7aecbba commit 0df8f62
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions pkgs/tools/networking/qrcp/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,34 @@
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:

buildGoModule rec {
pname = "qrcp";
version = "0.7.0";
version = "0.8.1";

src = fetchFromGitHub {
owner = "claudiodangelis";
repo = "qrcp";
rev = version;
sha256 = "0rx0pzy7p3dklayr2lkmyfdc00x9v4pd5xnzydbjx12hncnkpw4l";
sha256 = "001w15hj5xb7p9gpvw1216lp26g5018qdi8mq6i84akb7zfd2q01";
};

vendorSha256 = "0iffy43x3njcahrxl99a71v8p7im102nzv8iqbvd5c6m14rsckqa";
vendorSha256 = "1hn8c72fvih6ws1y2c4963pww3ld64m0yh3pmx62hwcy83bhb0v4";

subPackages = [ "." ];

nativeBuildInputs = [
installShellFiles
];

postInstall = ''
installShellCompletion --bash --cmd qrcp <($out/bin/qrcp completion bash)
installShellCompletion --fish --cmd qrcp <($out/bin/qrcp completion fish)
installShellCompletion --zsh --cmd qrcp <($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";
Expand Down

0 comments on commit 0df8f62

Please sign in to comment.