anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / office / libreoffice / darwin / update.nix
blobb74cca802fcb1e2dbc1fab93e8ee3950ac2b3b07
1 # Impure functions, for passthru.updateScript runtime only
2 { aarch64Url
3 , x86_64Url
4 , version
5 , pkgs ? import ../../../../../default.nix { }
7 }:
8 let
9   inherit (import ./update-utils.nix { inherit (pkgs) lib; })
10     getLatestStableVersion
11     getSha256;
13 pkgs.mkShell rec {
14   buildInputs = [ pkgs.common-updater-scripts ];
15   newVersion = getLatestStableVersion;
16   newAarch64Sha256 = getSha256 aarch64Url version newVersion;
17   newX86_64Sha256 = getSha256 x86_64Url version newVersion;