nixpkgs/pkgs/tools/admin/afterburn/default.nix

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

38 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, openssl, pkg-config, fetchFromGitHub, rustPlatform }:
2019-09-13 16:11:03 +00:00
rustPlatform.buildRustPackage rec {
pname = "afterburn";
2023-06-21 08:21:34 +00:00
version = "5.4.3";
2019-09-13 16:11:03 +00:00
src = fetchFromGitHub {
owner = "coreos";
repo = "afterburn";
rev = "v${version}";
2023-06-21 08:21:34 +00:00
sha256 = "sha256-IxAmamWJjM8DAEihH3lYgOLKOcSRvh48GSIX797Nhjo=";
2019-09-13 16:11:03 +00:00
};
2023-06-21 08:21:34 +00:00
cargoHash = "sha256-vQTxqAnnfjg4zFSOPLIcchRjqv0HJ3L2jBSNubpO9DM=";
2019-09-13 16:11:03 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
2021-08-11 08:35:43 +00:00
postPatch = ''
2019-09-13 16:11:03 +00:00
substituteInPlace ./systemd/afterburn-checkin.service --replace /usr/bin $out/bin
substituteInPlace ./systemd/afterburn-firstboot-checkin.service --replace /usr/bin $out/bin
substituteInPlace ./systemd/afterburn-sshkeys@.service.in --replace /usr/bin $out/bin
substituteInPlace ./systemd/afterburn.service --replace /usr/bin $out/bin
'';
postInstall = ''
DEFAULT_INSTANCE=root PREFIX= DESTDIR=$out make install-units
'';
meta = with lib; {
homepage = "https://github.com/coreos/ignition";
description = "A one-shot cloud provider agent";
2019-09-13 16:11:03 +00:00
license = licenses.asl20;
maintainers = [ maintainers.arianvp ];
2023-02-09 07:41:01 +00:00
platforms = platforms.linux;
2019-09-13 16:11:03 +00:00
};
}