summary refs log tree commit diff
path: root/pkgs/tools/networking/qr-filetransfer/default.nix
blob: b95d0facda89344c579bf3eaf3b3901b3408b527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage {
  pname = "qr-filetransfer-unstable";
  version = "2018-10-22";

  goPackagePath = "github.com/claudiodangelis/qr-filetransfer";

  src = fetchFromGitHub {
    rev = "b1e5b91aa2aa469f870c62074e879d46e353edae";
    owner = "claudiodangelis";
    repo = "qr-filetransfer";
    sha256 = "04cl3v6bzpaxp1scpsa42xxa1c1brbplq408bb7nixa98bacj4x1";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    homepage = https://github.com/claudiodangelis/qr-filetransfer;
    description = "Transfer files over wifi by scanning a QR code from your terminal";
    longDescription = ''
      qr-filetransfer 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 ];
  };
}