bootc: 1.1.2 -> 1.4.0; follow upstream redirect (#424643)

authored by Wolfgang Walther and committed by GitHub c1bdb17d 045d1185

+18 -5
+18 -5
pkgs/by-name/bo/bootc/package.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "bootc"; 16 - version = "1.1.2"; 16 + version = "1.4.0"; 17 17 useFetchCargoVendor = true; 18 - cargoHash = "sha256-/Sb2XtVguj5zpj/OTl90xFHFSaBeLgb8xIlNm4UrnRI="; 18 + cargoHash = "sha256-7Fn68bcm8ZyR5eALCMIdcXcZ595EnWFHKdnqI5vMso4="; 19 19 doInstallCheck = true; 20 20 21 21 src = fetchFromGitHub { 22 - owner = "containers"; 22 + owner = "bootc-dev"; 23 23 repo = "bootc"; 24 24 rev = "v${version}"; 25 - hash = "sha256-p1+j62MllmPcvWnijieSZmlgwYy76X17fv12Haetz78="; 25 + hash = "sha256-FuU3rQtKpK+ScQ10GivisSJseY2GOFJ/y2HRKIiU0G8="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ pkg-config ]; ··· 35 35 ostree-full 36 36 ]; 37 37 38 + checkFlags = [ 39 + # These all require a writable /var/tmp 40 + "--skip=test_cli_fns" 41 + "--skip=test_diff" 42 + "--skip=test_tar_export_reproducible" 43 + "--skip=test_tar_export_structure" 44 + "--skip=test_tar_import_empty" 45 + "--skip=test_tar_import_export" 46 + "--skip=test_tar_import_signed" 47 + "--skip=test_tar_write" 48 + "--skip=test_tar_write_tar_layer" 49 + ]; 50 + 38 51 nativeInstallCheckInputs = [ 39 52 versionCheckHook 40 53 ]; 41 54 42 55 meta = { 43 56 description = "Boot and upgrade via container images"; 44 - homepage = "https://containers.github.io/bootc"; 57 + homepage = "https://bootc-dev.github.io/bootc"; 45 58 license = lib.licenses.mit; 46 59 mainProgram = "bootc"; 47 60 maintainers = with lib.maintainers; [ thesola10 ];