summary refs log tree commit diff
path: root/pkgs/tools/misc/chezmoi/default.nix
blob: b6fffddeb53dd36affb861e6dfed8db99b867c82 (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
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "chezmoi";
  version = "1.5.5";

  goPackagePath = "github.com/twpayne/chezmoi";

  src = fetchFromGitHub {
    owner = "twpayne";
    repo = "chezmoi";
    rev = "v${version}";
    sha256 = "18kc3b2ncjzxivycx3mhqw9kbqp0sxmlgc2ddvhgj2vpvlkayzkh";
  };

  goDeps = ./deps.nix;

  buildFlagsArray = [
    "-ldflags=-s -w -X ${goPackagePath}/cmd.VersionStr=${version}"
  ];

  meta = with stdenv.lib; {
    homepage = https://github.com/twpayne/chezmoi;
    description = "Manage your dotfiles across multiple machines, securely";
    license = licenses.mit;
    maintainers = with maintainers; [ jhillyerd ];
    platforms = platforms.all;
  };
}