firecracker: 0.24.3 -> 0.24.4

Updated firecracker to v0.24.4. This required updating the buildPhase to
point to new compilation result paths.

Formatting changes were performed by `nix-update --format`

(cherry picked from commit 6fc6e325e6fc6d28a3e2a862e398e773e7442179)
This commit is contained in:
Danielle Lancashire 2021-07-16 00:53:45 +02:00 committed by github-actions[bot]
parent 2cc557dcae
commit 507eabd549
1 changed files with 12 additions and 12 deletions

View File

@ -1,7 +1,7 @@
{ fetchurl, lib, stdenv }:
let
version = "0.24.3";
version = "0.24.4";
suffix = {
x86_64-linux = "x86_64";
@ -22,15 +22,15 @@ stdenv.mkDerivation {
sourceRoot = ".";
src = dlbin {
x86_64-linux = "sha256-i6NMVFoLm4hQJH7RnhfC0t+0DJCINoP5b/iCv9JyRdk=";
aarch64-linux = "0m7xs12g97z1ipzaf7dgknf3azlah0p6bdr9i454azvzg955238b";
x86_64-linux = "sha256-EKndfLdkxn+S+2ElAyQ+mKEo5XN6kqZLuLCsQf+fKuk=";
aarch64-linux = "0zzr8x776aya6f6pw0dc0a6jxgbqv3f37p1vd8mmlsdv66c4kmfb";
};
configurePhase = ":";
buildPhase = ''
mv firecracker-* firecracker
mv jailer-* jailer
mv release-v${version}/firecracker-v${version}-${suffix} firecracker
mv release-v${version}/jailer-v${version}-${suffix} jailer
chmod +x firecracker jailer
'';
@ -51,6 +51,6 @@ stdenv.mkDerivation {
homepage = "http://firecracker-microvm.io";
license = licenses.asl20;
platforms = [ "x86_64-linux" "aarch64-linux" ];
maintainers = with maintainers; [ thoughtpolice ];
maintainers = with maintainers; [ thoughtpolice endocrimes ];
};
}