about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/quill-qr/default.nix
blob: 55c2f45cc683a955bb0b1d14afdc92345a344045 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ coreutils
, fetchFromGitHub
, gzip
, jq
, lib
, makeWrapper
, qrencode
, stdenvNoCC
}:

stdenvNoCC.mkDerivation rec {
  pname = "quill-qr";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "IvanMalison";
    repo = "quill-qr";
    rev = "v${version}";
    sha256 = "1kdsq6csmxfvs2wy31bc9r92l5pkmzlzkyqrangvrf4pbk3sk0r6";
  };

  nativeBuildInputs = [ makeWrapper ];

  dontBuild = true;

  installPhase = ''
    mkdir -p $out/bin
    cp -a quill-qr.sh $out/bin/quill-qr.sh
    patchShebangs $out/bin

    wrapProgram $out/bin/quill-qr.sh --prefix PATH : "${lib.makeBinPath [
      qrencode
      coreutils
      jq
      gzip
    ]}"
  '';

  meta = with lib; {
    description = "Print QR codes for use with https://p5deo-6aaaa-aaaab-aaaxq-cai.raw.ic0.app/";
    homepage = "https://github.com/IvanMalison/quill-qr";
    maintainers = with maintainers; [ imalison ];
    platforms = with platforms; linux;
  };
}