mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
preserves-tools: 4.994.0 -> 4.996.1
Add installation of shell completion files.
This commit is contained in:
parent
006d834e8c
commit
8307a29969
@ -1,19 +1,32 @@
|
|||||||
{ lib, rustPlatform, fetchCrate }:
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
rustPlatform,
|
||||||
|
fetchCrate,
|
||||||
|
installShellFiles,
|
||||||
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "preserves-tools";
|
pname = "preserves-tools";
|
||||||
version = "4.994.0";
|
version = "4.996.1";
|
||||||
|
|
||||||
src = fetchCrate {
|
src = fetchCrate {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-+I2uxdAe4SHg8ZLRvkIUr862FH6GvCwnyhxcCPD3JBA=";
|
hash = "sha256-Uyh5mXCypX3TDxxJtnTe6lBoVI8aqdG56ywn7htDGUY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-09uxXD9EZzzk42tBYbuqaLRFyGmOUuvC7G0XMDjsK6E=";
|
cargoHash = "sha256-rDo/jA4b+GV90SKM82JcGTX1pcAQUeBrLvGwU/geGOw=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
||||||
|
installShellCompletion --cmd preserves-tool \
|
||||||
|
--bash <($out/bin/preserves-tool completions bash) \
|
||||||
|
--fish <($out/bin/preserves-tool completions fish) \
|
||||||
|
--zsh <($out/bin/preserves-tool completions zsh)
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description =
|
description = "Command-line utilities for working with Preserves documents";
|
||||||
"Command-line utilities for working with Preserves documents";
|
|
||||||
homepage = "https://preserves.dev/doc/preserves-tool.html";
|
homepage = "https://preserves.dev/doc/preserves-tool.html";
|
||||||
license = lib.licenses.asl20;
|
license = lib.licenses.asl20;
|
||||||
maintainers = with lib.maintainers; [ ehmry ];
|
maintainers = with lib.maintainers; [ ehmry ];
|
||||||
|
Loading…
Reference in New Issue
Block a user