about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/qrcode/default.nix
blob: e870f53da82e88a7bf2709e8b619ef9113bf08c0 (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
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "qrcode";
  version = "unstable-2023-12-02";

  src = fetchFromGitHub {
    owner = "qsantos";
    repo = "qrcode";
    rev = "96fac69ad3e4f616ce75c0e3ef4ed0574cfab315";
    hash = "sha256-Aesjys6FchB6qcLRWJNGfcEZRlO3stw3+IM8Xe2pF+Q=";
  };

  makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];

  installPhase = ''
    mkdir -p "$out"/{bin,share/doc/qrcode}
    cp qrcode "$out/bin"
    cp DOCUMENTATION LICENCE "$out/share/doc/qrcode"
  '';

  meta = with lib; {
    description = "A small QR-code tool";
    homepage = "https://github.com/qsantos/qrcode";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ raskin ];
    platforms = with platforms; unix;
    mainProgram = "qrcode";
  };
}