Compare commits
3 changed files with 29 additions and 114 deletions
|
|
@ -238,10 +238,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
DEB="$(find releases -maxdepth 1 -type f -name 'Tensamin-*-linux-amd64.deb' -print -quit)"
|
APPIMAGE="$(find releases -maxdepth 1 -type f -name 'Tensamin-*-linux-x86_64.AppImage' -print -quit)"
|
||||||
test -n "$DEB"
|
test -n "$APPIMAGE"
|
||||||
|
|
||||||
HASH="$(node -e 'const fs = require("fs"); const crypto = require("crypto"); const file = process.argv[1]; console.log("sha256-" + crypto.createHash("sha256").update(fs.readFileSync(file)).digest("base64"));' "$DEB")"
|
HASH="$(node -e 'const fs = require("fs"); const crypto = require("crypto"); const file = process.argv[1]; console.log("sha256-" + crypto.createHash("sha256").update(fs.readFileSync(file)).digest("base64"));' "$APPIMAGE")"
|
||||||
export HASH
|
export HASH
|
||||||
|
|
||||||
node -e '
|
node -e '
|
||||||
|
|
@ -250,37 +250,15 @@ jobs:
|
||||||
const hash = process.env.HASH;
|
const hash = process.env.HASH;
|
||||||
let content = fs.readFileSync("flake.nix", "utf8");
|
let content = fs.readFileSync("flake.nix", "utf8");
|
||||||
content = content.replace(/version = "[^"]+";/, `version = "${version}";`);
|
content = content.replace(/version = "[^"]+";/, `version = "${version}";`);
|
||||||
content = content.replace(/x86_64DebHash = "sha256-[^"]+";/, `x86_64DebHash = "${hash}";`);
|
content = content.replace(/hash = "sha256-[^"]+";/, `hash = "${hash}";`);
|
||||||
fs.writeFileSync("flake.nix", content);
|
fs.writeFileSync("flake.nix", content);
|
||||||
'
|
'
|
||||||
|
|
||||||
if git diff --quiet -- flake.nix; then
|
if git diff --quiet -- flake.nix; then
|
||||||
echo "flake.nix already has the current release hash on main."
|
echo "flake.nix already has the current release hash."
|
||||||
else
|
|
||||||
git add flake.nix
|
|
||||||
git -c user.name="forgejo-actions" -c user.email="forgejo-actions@localhost" commit -m "(qol): update release flake hash"
|
|
||||||
git push
|
|
||||||
fi
|
|
||||||
|
|
||||||
git fetch origin dev
|
|
||||||
git worktree add ../dev-flake-update origin/dev
|
|
||||||
cd ../dev-flake-update
|
|
||||||
|
|
||||||
node -e '
|
|
||||||
const fs = require("fs");
|
|
||||||
const version = process.env.TAG;
|
|
||||||
const hash = process.env.HASH;
|
|
||||||
let content = fs.readFileSync("flake.nix", "utf8");
|
|
||||||
content = content.replace(/version = "[^"]+";/, `version = "${version}";`);
|
|
||||||
content = content.replace(/x86_64DebHash = "sha256-[^"]+";/, `x86_64DebHash = "${hash}";`);
|
|
||||||
fs.writeFileSync("flake.nix", content);
|
|
||||||
'
|
|
||||||
|
|
||||||
if git diff --quiet -- flake.nix; then
|
|
||||||
echo "flake.nix already has the current release hash on dev."
|
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git add flake.nix
|
git add flake.nix
|
||||||
git -c user.name="forgejo-actions" -c user.email="forgejo-actions@localhost" commit -m "(qol): update release flake hash"
|
git -c user.name="forgejo-actions" -c user.email="forgejo-actions@localhost" commit -m "(qol): update release flake hash"
|
||||||
git push origin HEAD:dev
|
git push
|
||||||
|
|
|
||||||
105
flake.nix
105
flake.nix
|
|
@ -4,100 +4,37 @@
|
||||||
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
outputs = {nixpkgs, ...}: let
|
outputs = {nixpkgs, ...}: let
|
||||||
systems = ["x86_64-linux"];
|
systems = ["x86_64-linux" "aarch64-linux"];
|
||||||
forAllSystems = nixpkgs.lib.genAttrs systems;
|
forAllSystems = nixpkgs.lib.genAttrs systems;
|
||||||
version = "0.0.5";
|
version = "0.0.3";
|
||||||
x86_64DebHash = "sha256-flC62rhhKyE/yRoNZRwXVHn/vwxE/Klxzj8uWhItDkY=";
|
|
||||||
forgejoBaseUrl = "https://git.methanium.net/tensamin/client/releases/download/${version}";
|
forgejoBaseUrl = "https://git.methanium.net/tensamin/client/releases/download/${version}";
|
||||||
in {
|
in {
|
||||||
packages = forAllSystems (system: let
|
packages = forAllSystems (system: let
|
||||||
pkgs = import nixpkgs {inherit system;};
|
pkgs = import nixpkgs {inherit system;};
|
||||||
debArtifact = "Tensamin-${version}-linux-amd64.deb";
|
artifact = if system == "aarch64-linux" then "Tensamin-${version}-linux-arm64.AppImage" else "Tensamin-${version}-linux-x86_64.AppImage";
|
||||||
localDebPath = builtins.getEnv "TENSAMIN_DEB";
|
appImagePath = /. + builtins.getEnv "TENSAMIN_APPIMAGE";
|
||||||
debPath = /. + localDebPath;
|
desktopItem = pkgs.makeDesktopItem {
|
||||||
electronRuntimeLibs = with pkgs; [
|
name = "tensamin";
|
||||||
alsa-lib
|
desktopName = "Tensamin";
|
||||||
at-spi2-atk
|
exec = "tensamin %U";
|
||||||
at-spi2-core
|
icon = "tensamin";
|
||||||
cairo
|
categories = ["Network"];
|
||||||
cups
|
};
|
||||||
dbus
|
wrapAppImage = src:
|
||||||
expat
|
pkgs.appimageTools.wrapType2 {
|
||||||
fontconfig
|
|
||||||
freetype
|
|
||||||
gdk-pixbuf
|
|
||||||
glib
|
|
||||||
gtk3
|
|
||||||
libdrm
|
|
||||||
libgbm
|
|
||||||
libnotify
|
|
||||||
libpulseaudio
|
|
||||||
libuuid
|
|
||||||
libxkbcommon
|
|
||||||
mesa
|
|
||||||
nspr
|
|
||||||
nss
|
|
||||||
pango
|
|
||||||
systemd
|
|
||||||
wayland
|
|
||||||
libX11
|
|
||||||
libXScrnSaver
|
|
||||||
libXcomposite
|
|
||||||
libXcursor
|
|
||||||
libXdamage
|
|
||||||
libXext
|
|
||||||
libXfixes
|
|
||||||
libXi
|
|
||||||
libXrandr
|
|
||||||
libXtst
|
|
||||||
libxcb
|
|
||||||
];
|
|
||||||
packageDeb = src:
|
|
||||||
pkgs.stdenv.mkDerivation {
|
|
||||||
pname = "tensamin";
|
pname = "tensamin";
|
||||||
inherit version;
|
inherit version src;
|
||||||
|
extraInstallCommands = ''
|
||||||
inherit src;
|
install -Dm444 ${desktopItem}/share/applications/tensamin.desktop $out/share/applications/tensamin.desktop
|
||||||
nativeBuildInputs = with pkgs; [
|
|
||||||
autoPatchelfHook
|
|
||||||
dpkg
|
|
||||||
makeWrapper
|
|
||||||
];
|
|
||||||
buildInputs = electronRuntimeLibs;
|
|
||||||
|
|
||||||
dontConfigure = true;
|
|
||||||
dontBuild = true;
|
|
||||||
|
|
||||||
unpackPhase = ''
|
|
||||||
runHook preUnpack
|
|
||||||
dpkg-deb -x $src .
|
|
||||||
runHook postUnpack
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
mkdir -p $out
|
|
||||||
cp -r opt $out/
|
|
||||||
cp -r usr/* $out/
|
|
||||||
|
|
||||||
mkdir -p $out/bin
|
|
||||||
makeWrapper $out/opt/Tensamin/tensamin $out/bin/tensamin
|
|
||||||
|
|
||||||
substituteInPlace $out/share/applications/tensamin.desktop \
|
|
||||||
--replace-fail "Exec=/opt/Tensamin/tensamin" "Exec=tensamin"
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
defaultPackage = packageDeb (pkgs.fetchurl {
|
|
||||||
url = "${forgejoBaseUrl}/${debArtifact}";
|
|
||||||
hash = x86_64DebHash;
|
|
||||||
});
|
|
||||||
in {
|
in {
|
||||||
default = defaultPackage;
|
default = wrapAppImage (pkgs.fetchurl {
|
||||||
|
url = "${forgejoBaseUrl}/${artifact}";
|
||||||
|
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
|
||||||
|
});
|
||||||
|
|
||||||
localPathForDev = if localDebPath == "" then defaultPackage else packageDeb debPath;
|
localPathForDev = wrapAppImage appImagePath;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "tensamin",
|
"name": "tensamin",
|
||||||
"version": "0.0.6",
|
"version": "0.0.5",
|
||||||
"private": true,
|
"private": true,
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"packages/*",
|
"packages/*",
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
"build:mobile": "cd apps/tauri && bun run build:mobile",
|
"build:mobile": "cd apps/tauri && bun run build:mobile",
|
||||||
"dev:desktop": "cd apps/electron && bun run dev",
|
"dev:desktop": "cd apps/electron && bun run dev",
|
||||||
"build:desktop": "cd apps/electron && bun run package",
|
"build:desktop": "cd apps/electron && bun run package",
|
||||||
"run:desktop": "TENSAMIN_DEB=\"$PWD/apps/electron/release/Tensamin-$(node -p \\\"require('./package.json').version\\\")-linux-amd64.deb\" nix run .#localPathForDev --impure",
|
"run:desktop": "TENSAMIN_APPIMAGE=\"$PWD/apps/electron/release/Tensamin-0.0.3-linux-x86_64.AppImage\" nix run .#localPathForDev --impure",
|
||||||
"delete:mobile": "cd apps/tauri && nix develop --command adb uninstall net.tensamin.client"
|
"delete:mobile": "cd apps/tauri && nix develop --command adb uninstall net.tensamin.client"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue