dotter: 0.13.1 -> 0.13.2

Co-authored-by: linsui <linsui@users.noreply.github.com>
This commit is contained in:
Miguel Madrid-Mencía 2024-06-19 18:51:33 +02:00
parent e16e6c1332
commit 36959a9933
No known key found for this signature in database
GPG Key ID: 4D0F6894D41C6957

View File

@ -5,29 +5,38 @@
, rustPlatform
, CoreServices
, which
, installShellFiles
}:
rustPlatform.buildRustPackage rec {
pname = "dotter";
version = "0.13.1";
version = "0.13.2";
src = fetchFromGitHub {
owner = "SuperCuber";
repo = "dotter";
rev = "v${version}";
hash = "sha256-Xmdg5ITKWhL5AxTS7z4f9ecigQpBqna+kZclA+mDJhA=";
hash = "sha256-IV3wvmRiRtzu5UhIlL1BnL8hy+fQHQA9Mfiy6dIsjdw=";
};
cargoHash = "sha256-W8khm9E5f/PROVJDAUr57nAiTEXV4a0fepzV00HoT8c=";
cargoHash = "sha256-jNHq1cH3I29b6LIoO2ApLDTYzFGGSua1lACvYCBpbQQ=";
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
nativeCheckInputs = [ which ];
nativeCheckInputs = [ which installShellFiles ];
postInstall = ''
installShellCompletion --cmd dotter \
--bash <($out/bin/dotter gen-completions --shell bash) \
--fish <($out/bin/dotter gen-completions --shell fish) \
--zsh <($out/bin/dotter gen-completions --shell zsh)
'';
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
description = "Dotfile manager and templater written in rust 🦀";
homepage = "https://github.com/SuperCuber/dotter";