about summary refs log tree commit diff
path: root/pkgs/by-name/ch/chezmoi/package.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-04-26 22:07:53 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-04-26 22:22:36 -0300
commit18e5fe0e7979e44d2d0f37a65ae42e21a5013d54 (patch)
tree121ffe5a57019ac23ba6cc89cf989e49e7955975 /pkgs/by-name/ch/chezmoi/package.nix
parentda5dcb65f7389d01a649297e6d973d55895fe0ce (diff)
chezmoi: migrate to by-name
Diffstat (limited to 'pkgs/by-name/ch/chezmoi/package.nix')
-rw-r--r--pkgs/by-name/ch/chezmoi/package.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/by-name/ch/chezmoi/package.nix b/pkgs/by-name/ch/chezmoi/package.nix
new file mode 100644
index 0000000000000..7c63f174f35ec
--- /dev/null
+++ b/pkgs/by-name/ch/chezmoi/package.nix
@@ -0,0 +1,44 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+, installShellFiles
+}:
+
+buildGoModule rec {
+  pname = "chezmoi";
+  version = "2.47.4";
+
+  src = fetchFromGitHub {
+    owner = "twpayne";
+    repo = "chezmoi";
+    rev = "v${version}";
+    hash = "sha256-clhW/Y+OJ7iQVK8I2xwoVT9rXF2CXRBaUxDZrREAjYc=";
+  };
+
+  vendorHash = "sha256-8Puy1IKLMENduWyOAJtvpd7FV1a0IdmkMYztIJdeaBs=";
+
+  doCheck = false;
+
+  ldflags = [
+    "-s" "-w" "-X main.version=${version}" "-X main.builtBy=nixpkgs"
+  ];
+
+  nativeBuildInputs = [ installShellFiles ];
+
+  postInstall = ''
+    installShellCompletion --bash --name chezmoi.bash completions/chezmoi-completion.bash
+    installShellCompletion --fish completions/chezmoi.fish
+    installShellCompletion --zsh completions/chezmoi.zsh
+  '';
+
+  subPackages = [ "." ];
+
+  meta = with lib; {
+    homepage = "https://www.chezmoi.io/";
+    description = "Manage your dotfiles across multiple machines, securely";
+    changelog = "https://github.com/twpayne/chezmoi/releases/tag/v${version}";
+    license = licenses.mit;
+    maintainers = with maintainers; [ ];
+    mainProgram = "chezmoi";
+  };
+}