foot: 1.22.0 -> 1.22.2 (#403074)

authored by

Felix Bargfeldt and committed by
GitHub
dfb2af50 1053d3a6

+12 -3
+6 -3
pkgs/by-name/fo/foot/package.nix
··· 27 27 }: 28 28 29 29 let 30 - version = "1.22.0"; 30 + version = "1.22.2"; 31 31 32 32 # build stimuli file for PGO build and the script to generate it 33 33 # independently of the foot's build, so we can cache the result ··· 103 103 domain = "codeberg.org"; 104 104 owner = "dnkl"; 105 105 repo = "foot"; 106 - rev = version; 107 - hash = "sha256-OCDFfOEyE8CrgisswSfPXH1rNoaM1C1ztm9R77P0MOk="; 106 + tag = version; 107 + hash = "sha256-eX9nSAl2pHbJU8g80q3RifDlFh00LSi8GvYU4+rlIsA="; 108 108 }; 109 109 110 110 separateDebugInfo = true; ··· 199 199 "terminfo" 200 200 "themes" 201 201 ]; 202 + 203 + passthru = { inherit stimulusGenerator; }; 204 + passthru.updateScript = ./update.sh; 202 205 203 206 passthru.tests = { 204 207 clang-default-compilation = foot.override {
+6
pkgs/by-name/fo/foot/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash 3 + #!nix-shell -p nix-update 4 + 5 + nix-update foot 6 + nix-update --version=skip foot.stimulusGenerator