Merge pull request #129908 from IvanMalison/quill-qr
quill-qr: init at 0.1.0
This commit is contained in:
commit
3f9ec03c49
2 changed files with 47 additions and 0 deletions
pkgs
45
pkgs/tools/security/quill-qr/default.nix
Normal file
45
pkgs/tools/security/quill-qr/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -26734,6 +26734,8 @@ in
|
||||||
tag = "-daemon-qt5";
|
tag = "-daemon-qt5";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
quill-qr = callPackage ../tools/security/quill-qr { };
|
||||||
|
|
||||||
quirc = callPackage ../tools/graphics/quirc {};
|
quirc = callPackage ../tools/graphics/quirc {};
|
||||||
|
|
||||||
quilter = callPackage ../applications/editors/quilter { };
|
quilter = callPackage ../applications/editors/quilter { };
|
||||||
|
|
Loading…
Reference in a new issue