0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-24 14:34:39 +03:00

Merge pull request #17 from ein-shved/main

[nix] Add to version bumping script
This commit is contained in:
Andrey Onishchenko 2024-01-31 23:40:04 +03:00 committed by GitHub
commit 558db5e840
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 95 additions and 29 deletions

View File

@ -1,10 +1,8 @@
{
description = "Native Yandex Music desktop client";
inputs = {
ymExe = {
url = https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.0.8.exe;
flake = false;
};
ymExe.url = https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.0.8.exe;
ymExe.flake = false;
};
outputs = { self, ymExe, nixpkgs, flake-utils }:
let
@ -23,6 +21,7 @@
yandex-music-backgroud = yandex-music.override {
fixQuit = false;
};
generate_packages = pkgs.callPackage ./nix/generate_packages.nix {};
default = yandex-music;
};
}

View File

@ -2,12 +2,32 @@
set -e
TEMPDIR=
exe_link=
version=
exe_name=
exe_sha256=
clear() {
rm -rf "$TEMPDIR"
}
TEMPDIR="$(mktemp -d)"
trap clear EXIT
check_dep() {
if ! command -v "$@" &>/dev/null; then
echo "$@" not installed. >&2
return 1
fi
}
check_deps() {
check_dep sed
check_dep curl
check_dep jq
}
load_current_version() {
# loading json from file https://music-desktop-application.s3.yandex.net/stable/download.json
curl -s https://music-desktop-application.s3.yandex.net/stable/download.json > "$TEMPDIR"/download.json
@ -24,17 +44,23 @@ curl "$exe_link" > "$TEMPDIR/$exe_name"
exe_sha256="$(sha256sum "$TEMPDIR/$exe_name" | awk '{print $1}')"
echo "Exe sha256: $exe_sha256"
}
update_version() {
rm -rf ./version_info.json
echo "{
\"version\": \"$version\",
\"exe_name\": \"$exe_name\",
\"exe_link\": \"$exe_link\",
\"exe_sha256\": \"$exe_sha256\"
}" > ./version_info.json
cat > ./version_info.json <<EOF
{
"version": "$version",
"exe_name": "$exe_name",
"exe_link": "$exe_link",
"exe_sha256": "$exe_sha256"
}
EOF
rm -rf ./PKGBUILD
}
update_pkbuild() {
cp ./templates/PKGBUILD ./PKGBUILD
sed -i "s#%version%#$version#g" ./PKGBUILD
@ -42,3 +68,19 @@ sed -i "s#%release%#1#g" ./PKGBUILD
sed -i "s#%exe_name%#$exe_name#g" ./PKGBUILD
sed -i "s#%exe_link%#$exe_link#g" ./PKGBUILD
sed -i "s#%exe_sha256%#$exe_sha256#g" ./PKGBUILD
}
update_flake() {
sed -i 's#\(ymExe\.url\s*=\s*\).*;#\1'"$exe_link"';#' ./flake.nix
if check_dep nix; then
nix flake lock --update-input ymExe
else
echo "flake.nix was updated, but nix not installed to update flake.lock"
fi
}
check_deps
load_current_version
update_version
update_pkbuild
update_flake

25
nix/generate_packages.nix Normal file
View File

@ -0,0 +1,25 @@
{ jq
, curl
, runCommand
, lib
, makeWrapper
}:
let
paths = lib.makeBinPath [ jq curl ];
in
runCommand "generate_config"
{
src = ../generate_packages.sh;
name = "generate_packages";
nativeBuildInputs = [
makeWrapper
];
} ''
mkdir -p "$out/bin"
bin="$out/bin/$name"
cp "$src" "$bin"
chmod +x "$bin"
patchShebangs "$bin"
wrapProgram "$bin" \
--prefix PATH : ${paths}
''