f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, asciidoctor
|
|
, installShellFiles
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "qrtool";
|
|
version = "0.11.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sorairolake";
|
|
repo = "qrtool";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-TA4JuFd01gOzLDFYzuP0Ohk+Bd6lT3oZF9sFY9KjOfM=";
|
|
};
|
|
|
|
cargoHash = "sha256-bcrwf7Ufd7o2FPIxEReZGy9EANdWNOgoFBHzSdoYTlI=";
|
|
|
|
nativeBuildInputs = [ asciidoctor installShellFiles ];
|
|
|
|
postInstall = ''
|
|
# Built by ./build.rs using `asciidoctor`
|
|
installManPage ./target/*/release/build/qrtool*/out/*.?
|
|
|
|
installShellCompletion --cmd qrtool \
|
|
--bash <($out/bin/qrtool --generate-completion bash) \
|
|
--fish <($out/bin/qrtool --generate-completion fish) \
|
|
--zsh <($out/bin/qrtool --generate-completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ philiptaron ];
|
|
description = "Utility for encoding and decoding QR code images";
|
|
license = licenses.asl20;
|
|
homepage = "https://sorairolake.github.io/qrtool/book/index.html";
|
|
changelog = "https://sorairolake.github.io/qrtool/book/changelog.html";
|
|
mainProgram = "qrtool";
|
|
};
|
|
}
|