lol

Merge pull request #129908 from IvanMalison/quill-qr

quill-qr: init at 0.1.0

authored by

Sandro and committed by
GitHub
3f9ec03c 042b5fb9

+47
+45
pkgs/tools/security/quill-qr/default.nix
··· 1 + { coreutils 2 + , fetchFromGitHub 3 + , gzip 4 + , jq 5 + , lib 6 + , makeWrapper 7 + , qrencode 8 + , stdenvNoCC 9 + }: 10 + 11 + stdenvNoCC.mkDerivation rec { 12 + pname = "quill-qr"; 13 + version = "0.1.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "IvanMalison"; 17 + repo = "quill-qr"; 18 + rev = "v${version}"; 19 + sha256 = "1kdsq6csmxfvs2wy31bc9r92l5pkmzlzkyqrangvrf4pbk3sk0r6"; 20 + }; 21 + 22 + nativeBuildInputs = [ makeWrapper ]; 23 + 24 + dontBuild = true; 25 + 26 + installPhase = '' 27 + mkdir -p $out/bin 28 + cp -a quill-qr.sh $out/bin/quill-qr.sh 29 + patchShebangs $out/bin 30 + 31 + wrapProgram $out/bin/quill-qr.sh --prefix PATH : "${lib.makeBinPath [ 32 + qrencode 33 + coreutils 34 + jq 35 + gzip 36 + ]}" 37 + ''; 38 + 39 + meta = with lib; { 40 + description = "Print QR codes for use with https://p5deo-6aaaa-aaaab-aaaxq-cai.raw.ic0.app/"; 41 + homepage = "https://github.com/IvanMalison/quill-qr"; 42 + maintainers = with maintainers; [ imalison ]; 43 + platforms = with platforms; linux; 44 + }; 45 + }
+2
pkgs/top-level/all-packages.nix
··· 26734 26734 tag = "-daemon-qt5"; 26735 26735 }; 26736 26736 26737 + quill-qr = callPackage ../tools/security/quill-qr { }; 26738 + 26737 26739 quirc = callPackage ../tools/graphics/quirc {}; 26738 26740 26739 26741 quilter = callPackage ../applications/editors/quilter { };