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

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

39 lines
1,007 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-02-07 02:17:17 +01:00
2019-11-01 10:20:00 +01:00
buildGoModule rec {
pname = "chezmoi";
2022-11-25 10:21:42 +01:00
version = "2.27.2";
2019-02-07 02:17:17 +01:00
src = fetchFromGitHub {
owner = "twpayne";
repo = "chezmoi";
rev = "v${version}";
2022-11-25 10:21:42 +01:00
sha256 = "sha256-H+9DFJm8V7MCeq7/iXNsCPe2NZFirf+nQfluihxNCFw=";
2019-02-07 02:17:17 +01:00
};
2022-11-25 10:21:42 +01:00
vendorSha256 = "sha256-yfT32MxnzYQr+UXqZEgGLuAxbMDfc/PWhmhDUXAIRhA=";
2019-02-07 02:17:17 +01:00
doCheck = false;
2021-08-26 08:45:51 +02:00
ldflags = [
"-s" "-w" "-X main.version=${version}" "-X main.builtBy=nixpkgs"
2019-02-07 02:17:17 +01:00
];
2019-11-01 10:20:00 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
2020-03-05 00:00:00 +01:00
installShellCompletion --bash --name chezmoi.bash completions/chezmoi-completion.bash
2019-11-01 10:20:00 +01:00
installShellCompletion --fish completions/chezmoi.fish
installShellCompletion --zsh completions/chezmoi.zsh
'';
subPackages = [ "." ];
meta = with lib; {
2020-03-05 00:00:00 +01:00
homepage = "https://www.chezmoi.io/";
2019-02-07 02:17:17 +01:00
description = "Manage your dotfiles across multiple machines, securely";
license = licenses.mit;
maintainers = with maintainers; [ jhillyerd ];
};
}