blob: 441fbf6cc4e8037e7355ed54170510ba4731e474 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
rustPlatform,
darwin,
which,
installShellFiles,
}:
rustPlatform.buildRustPackage rec {
pname = "dotter";
version = "0.13.3";
src = fetchFromGitHub {
owner = "SuperCuber";
repo = "dotter";
rev = "v${version}";
hash = "sha256-7YExvmuliTL9oagXNUtZ7ZOPyELcS+igK1tXdhG0kQk=";
};
cargoHash = "sha256-LEOORHD0j+HVl/fB9Q2xVZ2AxZKsPE5SeOS1ZsKwTSo=";
buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreServices ];
nativeCheckInputs = [
which
installShellFiles
];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
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";
license = licenses.unlicense;
maintainers = with maintainers; [ linsui ];
mainProgram = "dotter";
};
}
|