Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #240311 from Luflosi/update/kubo-migrator

authored by Sandro and committed by GitHub b37bb797 da3ea1e4

+6 -4
+3 -1
pkgs/applications/networking/kubo-migrator/all-migrations.nix
··· 36 }; 37 38 # Concatenation of the latest repo version and the version of that migration 39 - version = "13.1.0.0"; 40 41 fs-repo-12-to-13 = fs-repo-common "fs-repo-12-to-13" "1.0.0"; 42 fs-repo-11-to-12 = fs-repo-common "fs-repo-11-to-12" "1.0.2"; 43 fs-repo-10-to-11 = fs-repo-common "fs-repo-10-to-11" "1.0.1"; ··· 53 fs-repo-0-to-1 = fs-repo-common "fs-repo-0-to-1" "1.0.1"; 54 55 all-migrations = [ 56 fs-repo-12-to-13 57 fs-repo-11-to-12 58 fs-repo-10-to-11
··· 36 }; 37 38 # Concatenation of the latest repo version and the version of that migration 39 + version = "14.1.0.0"; 40 41 + fs-repo-13-to-14 = fs-repo-common "fs-repo-13-to-14" "1.0.0"; 42 fs-repo-12-to-13 = fs-repo-common "fs-repo-12-to-13" "1.0.0"; 43 fs-repo-11-to-12 = fs-repo-common "fs-repo-11-to-12" "1.0.2"; 44 fs-repo-10-to-11 = fs-repo-common "fs-repo-10-to-11" "1.0.1"; ··· 54 fs-repo-0-to-1 = fs-repo-common "fs-repo-0-to-1" "1.0.1"; 55 56 all-migrations = [ 57 + fs-repo-13-to-14 58 fs-repo-12-to-13 59 fs-repo-11-to-12 60 fs-repo-10-to-11
+3 -3
pkgs/applications/networking/kubo-migrator/unwrapped.nix
··· 11 owner = "ipfs"; 12 repo = "fs-repo-migrations"; 13 # Use the latest git tag here, since v2.0.2 does not 14 - # contain the latest migration fs-repo-11-to-12/v1.0.2 15 # The fs-repo-migrations code itself is the same between 16 # the two versions but the migration code, which is built 17 # into separate binaries, is not. 18 - rev = "fs-repo-12-to-13/v1.0.0"; 19 - hash = "sha256-QQone7E2Be+jVfnrwqQ1Ny4jo6mSDHhaY3ErkNdn2f8="; 20 }; 21 22 sourceRoot = "source/fs-repo-migrations";
··· 11 owner = "ipfs"; 12 repo = "fs-repo-migrations"; 13 # Use the latest git tag here, since v2.0.2 does not 14 + # contain the latest migration fs-repo-13-to-14/v1.0.0 15 # The fs-repo-migrations code itself is the same between 16 # the two versions but the migration code, which is built 17 # into separate binaries, is not. 18 + rev = "fs-repo-13-to-14/v1.0.0"; 19 + hash = "sha256-y0IYSKKZlFbPrTUC6XqYKhS3a79rieNGBL58teWMlC4="; 20 }; 21 22 sourceRoot = "source/fs-repo-migrations";