dotter: 0.13.1 -> 0.13.2
Co-authored-by: linsui <linsui@users.noreply.github.com>
This commit is contained in:
parent
e16e6c1332
commit
36959a9933
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user