nixpkgs/pkgs/tools/misc/chezmoi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-26 19:55:25 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
2019-02-07 01:17:17 +00:00
2019-11-01 09:20:00 +00:00
buildGoModule rec {
pname = "chezmoi";
2023-03-07 08:02:32 +00:00
version = "2.31.1";
2019-02-07 01:17:17 +00:00
src = fetchFromGitHub {
owner = "twpayne";
repo = "chezmoi";
rev = "v${version}";
2023-03-07 08:02:32 +00:00
hash = "sha256-zSr4lvrrGM+BgPWtq/J7vnB1lWHI8PmqP/N5csFL9kU=";
2019-02-07 01:17:17 +00:00
};
2023-03-07 08:02:32 +00:00
vendorHash = "sha256-/CGdz6wIpEZrhZe6IYa43Z3bpN1byeSi9h4dTxCMxog=";
2019-02-07 01:17:17 +00:00
doCheck = false;
2021-08-26 07:45:51 +01:00
ldflags = [
"-s" "-w" "-X main.version=${version}" "-X main.builtBy=nixpkgs"
2019-02-07 01:17:17 +00:00
];
2019-11-01 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
2020-03-04 23:00:00 +00:00
installShellCompletion --bash --name chezmoi.bash completions/chezmoi-completion.bash
2019-11-01 09:20:00 +00:00
installShellCompletion --fish completions/chezmoi.fish
installShellCompletion --zsh completions/chezmoi.zsh
'';
subPackages = [ "." ];
meta = with lib; {
2020-03-04 23:00:00 +00:00
homepage = "https://www.chezmoi.io/";
2019-02-07 01:17:17 +00:00
description = "Manage your dotfiles across multiple machines, securely";
2022-12-26 19:55:25 +00:00
changelog = "https://github.com/twpayne/chezmoi/releases/tag/v${version}";
2019-02-07 01:17:17 +00:00
license = licenses.mit;
maintainers = with maintainers; [ jhillyerd ];
};
}