Merge pull request #160212 from sikmir/cudatext

cudatext: 1.155.0 → 1.156.2

authored by Bobby Rong and committed by GitHub ab4c14fc 81ce9155

+13 -13
+2 -2
pkgs/applications/editors/cudatext/default.nix
··· 38 38 in 39 39 stdenv.mkDerivation rec { 40 40 pname = "cudatext"; 41 - version = "1.155.0"; 41 + version = "1.156.2"; 42 42 43 43 src = fetchFromGitHub { 44 44 owner = "Alexey-T"; 45 45 repo = "CudaText"; 46 46 rev = version; 47 - sha256 = "sha256-k6ALTbA2PhMZscinXKceM7MSzgr759Y6GxMrQAXMgwM="; 47 + sha256 = "sha256-waVTNyK3OHpOvBJrXio+Xjn9q3WmUczbx3E26ChsuKo="; 48 48 }; 49 49 50 50 postPatch = ''
+10 -10
pkgs/applications/editors/cudatext/deps.json
··· 16 16 }, 17 17 "ATSynEdit": { 18 18 "owner": "Alexey-T", 19 - "rev": "2022.01.20", 20 - "sha256": "sha256-4UJ6t8j8uHB27jprqnlsGB8ytOMQLe4ZzSaYKiw4y70=" 19 + "rev": "2022.02.19", 20 + "sha256": "sha256-cq2dirFNPaWRmZJu0F+CFA//+SuFOOpTH3Q5zL4oPQo=" 21 21 }, 22 22 "ATSynEdit_Cmp": { 23 23 "owner": "Alexey-T", 24 - "rev": "2021.12.28", 25 - "sha256": "sha256-bXTjPdn0DIVTdoi30Ws5+M+UsC7F99IphMSTpI5ia/Q=" 24 + "rev": "2022.01.21", 25 + "sha256": "sha256-el5YtzewnHV0fRPgVhApZUVP7huSQseqrO2ibvm6Ctg=" 26 26 }, 27 27 "EControl": { 28 28 "owner": "Alexey-T", 29 - "rev": "2022.01.07", 30 - "sha256": "sha256-dgkyXrFs2hzuFjt9GW+WNyrLIp/i/AbRsM/MyMbatdA=" 29 + "rev": "2022.02.02", 30 + "sha256": "sha256-T/6SQJHKzbv/PlObDyc9bcpC14krHgcLDQn0v2fNkLM=" 31 31 }, 32 32 "ATSynEdit_Ex": { 33 33 "owner": "Alexey-T", 34 - "rev": "2022.01.20", 35 - "sha256": "sha256-CaGo38NV+mbwekzkgw0DxM4TZf2xwHtYFnC6RbWH+ts=" 34 + "rev": "2022.02.01", 35 + "sha256": "sha256-FAcq6ixmFPQFBAGG2gqB4T+YGYT+Rh/OlKdGcH/iL3g=" 36 36 }, 37 37 "Python-for-Lazarus": { 38 38 "owner": "Alexey-T", ··· 41 41 }, 42 42 "Emmet-Pascal": { 43 43 "owner": "Alexey-T", 44 - "rev": "2020.09.05", 45 - "sha256": "0qfiirxnk5g3whx8y8hp54ch3h6gkkd01yf79m95bwar5qvdfybg" 44 + "rev": "2022.01.17", 45 + "sha256": "sha256-5yqxRW7xFJ4MwHjKnxYL8/HrCDLn30a1gyQRjGMx/qw=" 46 46 }, 47 47 "CudaText-lexers": { 48 48 "owner": "Alexey-T",
+1 -1
pkgs/applications/editors/cudatext/update.sh
··· 18 18 url="https://github.com/${owner}/${repo}/archive/refs/tags/${latest}.tar.gz" 19 19 hash=$(nix-prefetch-url --quiet --unpack --type sha256 $url) 20 20 sriHash=$(nix hash to-sri --type sha256 $hash) 21 - jq ".${repo}.rev = \"${latest}\" | .${repo}.sha256 = \"${sriHash}\"" deps.json | sponge deps.json 21 + jq ".\"${repo}\".rev = \"${latest}\" | .\"${repo}\".sha256 = \"${sriHash}\"" deps.json | sponge deps.json 22 22 fi 23 23 done <<< $(jq -r 'to_entries[]|[.key,.value.owner,.value.rev]|@tsv' deps.json)