afterburn: 5.7.0 -> 5.8.2 (#406858)

authored by

Wolfgang Walther and committed by
GitHub
28cee55a 89c100b2

+14 -12
+14 -12
pkgs/by-name/af/afterburn/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "afterburn"; 11 - version = "5.7.0"; 11 + version = "5.8.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "coreos"; 15 15 repo = "afterburn"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-j2eQUro0Rx1axBAaZDNICRrkygb4JAyxVAER/5BXXLY="; 17 + sha256 = "sha256-hlcUtEc0uWFolCt+mZd7f68PJPa+i/mv+2aJh4Vhmsw="; 18 18 }; 19 19 20 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-xA5hp7a4DFMh8Xrh2ft94s6aNjORKtyCuNy4GgJbSsw="; 21 + cargoHash = "sha256-Wn4Np1rwHh2sL1sqKalJrIDgMffxJgD1C2QOAR8bDRo="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24 buildInputs = [ openssl ]; 25 25 26 26 postPatch = '' 27 - substituteInPlace ./systemd/afterburn-checkin.service --replace /usr/bin $out/bin 28 - substituteInPlace ./systemd/afterburn-firstboot-checkin.service --replace /usr/bin $out/bin 29 - substituteInPlace ./systemd/afterburn-sshkeys@.service.in --replace /usr/bin $out/bin 30 - substituteInPlace ./systemd/afterburn.service --replace /usr/bin $out/bin 27 + substituteInPlace \ 28 + ./systemd/afterburn-checkin.service \ 29 + ./systemd/afterburn-firstboot-checkin.service \ 30 + ./systemd/afterburn-sshkeys@.service.in \ 31 + ./systemd/afterburn.service \ 32 + --replace-fail /usr/bin "$out/bin" 31 33 ''; 32 34 33 35 postInstall = '' 34 36 DEFAULT_INSTANCE=root PREFIX= DESTDIR=$out make install-units 35 37 ''; 36 38 37 - meta = with lib; { 38 - homepage = "https://github.com/coreos/ignition"; 39 + meta = { 40 + homepage = "https://github.com/coreos/afterburn"; 39 41 description = "One-shot cloud provider agent"; 40 - license = licenses.asl20; 41 - maintainers = [ maintainers.arianvp ]; 42 - platforms = platforms.linux; 42 + license = lib.licenses.asl20; 43 + maintainers = with lib.maintainers; [ arianvp ]; 44 + platforms = lib.platforms.linux; 43 45 mainProgram = "afterburn"; 44 46 }; 45 47 }