mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
asciidoctor,
|
|
installShellFiles,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "qrtool";
|
|
version = "0.11.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sorairolake";
|
|
repo = "qrtool";
|
|
rev = "v${version}";
|
|
hash = "sha256-2Msc8VTEzpK5eQHxJxNekj6YSqFRX/DN206hvYshiOg=";
|
|
};
|
|
|
|
cargoHash = "sha256-wBEimPiht7VN3lQfPlflrG2L47bfNnipK/JmurKqHrg=";
|
|
|
|
nativeBuildInputs = [
|
|
asciidoctor
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall =
|
|
''
|
|
# Built by ./build.rs using `asciidoctor`
|
|
installManPage ./target/*/release/build/qrtool*/out/*.?
|
|
|
|
''
|
|
+ lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
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";
|
|
};
|
|
}
|