linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / lifecycled / default.nix
blob1c30b760a9c8e2fc049ea49c0cf29a4bd91b93ce
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
5 buildGoModule rec {
6   pname = "lifecycled";
7   version = "3.1.0";
9   src = fetchFromGitHub {
10     owner = "buildkite";
11     repo = "lifecycled";
12     rev = "v${version}";
13     sha256 = "F9eovZpwbigP0AMdjAIxULPLDC3zO6GxQmPdt5Xvpkk=";
14   };
16   vendorSha256 = "q5wYKSLHRzL+UGn29kr8+mUupOPR1zohTscbzjMRCS0=";
18   postInstall = ''
19     mkdir -p $out/lib/systemd/system
20     substitute init/systemd/lifecycled.unit $out/lib/systemd/system/lifecycled.service \
21       --replace /usr/bin/lifecycled $out/bin/lifecycled
22   '';
24   meta = with lib; {
25     description = "A daemon for responding to AWS AutoScaling Lifecycle Hooks";
26     homepage = "https://github.com/buildkite/lifecycled/";
27     license = licenses.mit;
28     maintainers = with maintainers; [ cole-h grahamc ];
29   };