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 9 rustPlatform.buildRustPackage rec { 10 pname = "afterburn"; 11 - version = "5.7.0"; 12 13 src = fetchFromGitHub { 14 owner = "coreos"; 15 repo = "afterburn"; 16 rev = "v${version}"; 17 - sha256 = "sha256-j2eQUro0Rx1axBAaZDNICRrkygb4JAyxVAER/5BXXLY="; 18 }; 19 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-xA5hp7a4DFMh8Xrh2ft94s6aNjORKtyCuNy4GgJbSsw="; 22 23 nativeBuildInputs = [ pkg-config ]; 24 buildInputs = [ openssl ]; 25 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 31 ''; 32 33 postInstall = '' 34 DEFAULT_INSTANCE=root PREFIX= DESTDIR=$out make install-units 35 ''; 36 37 - meta = with lib; { 38 - homepage = "https://github.com/coreos/ignition"; 39 description = "One-shot cloud provider agent"; 40 - license = licenses.asl20; 41 - maintainers = [ maintainers.arianvp ]; 42 - platforms = platforms.linux; 43 mainProgram = "afterburn"; 44 }; 45 }
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "afterburn"; 11 + version = "5.8.2"; 12 13 src = fetchFromGitHub { 14 owner = "coreos"; 15 repo = "afterburn"; 16 rev = "v${version}"; 17 + sha256 = "sha256-hlcUtEc0uWFolCt+mZd7f68PJPa+i/mv+2aJh4Vhmsw="; 18 }; 19 20 useFetchCargoVendor = true; 21 + cargoHash = "sha256-Wn4Np1rwHh2sL1sqKalJrIDgMffxJgD1C2QOAR8bDRo="; 22 23 nativeBuildInputs = [ pkg-config ]; 24 buildInputs = [ openssl ]; 25 26 postPatch = '' 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" 33 ''; 34 35 postInstall = '' 36 DEFAULT_INSTANCE=root PREFIX= DESTDIR=$out make install-units 37 ''; 38 39 + meta = { 40 + homepage = "https://github.com/coreos/afterburn"; 41 description = "One-shot cloud provider agent"; 42 + license = lib.licenses.asl20; 43 + maintainers = with lib.maintainers; [ arianvp ]; 44 + platforms = lib.platforms.linux; 45 mainProgram = "afterburn"; 46 }; 47 }