mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
17 lines
681 B
Nix
17 lines
681 B
Nix
{ stdenv, lib, writeScript, python3, common-updater-scripts, coreutils, gnugrep, gnused }:
|
|
{ packageName, attrPath ? packageName, versionPolicy ? "odd-unstable" }:
|
|
|
|
let
|
|
python = python3.withPackages (p: [ p.requests ]);
|
|
updateScript = writeScript "gnome-update-script" ''
|
|
#!${stdenv.shell}
|
|
set -o errexit
|
|
package_name="$1"
|
|
attr_path="$2"
|
|
version_policy="$3"
|
|
PATH=${lib.makeBinPath [ common-updater-scripts coreutils gnugrep gnused python ]}
|
|
latest_tag=$(python "${./find-latest-version.py}" "$package_name" "$version_policy" "stable")
|
|
update-source-version "$attr_path" "$latest_tag"
|
|
'';
|
|
in [ updateScript packageName attrPath versionPolicy ]
|