b41148f4a5
automated update of helium appimage version and hash ## changelog from `0.9.4.1` to `0.10.2.1` upstream release: https://github.com/imputnet/helium-linux/releases/tag/0.10.2.1 Changes since last build: ### helium-linux ``` 9dcfae5 update: helium 0.10.2.1 (#215) ``` Co-authored-by: gitea actions <actions@localhost> Reviewed-on: #12
23 lines
784 B
Nix
23 lines
784 B
Nix
{ ... }: {
|
|
perSystem = { pkgs, ... }: {
|
|
packages.helium = pkgs.appimageTools.wrapType2 rec {
|
|
pname = "helium";
|
|
version = "0.10.2.1";
|
|
|
|
src = pkgs.fetchurl {
|
|
url = "https://github.com/imputnet/helium-linux/releases/download/${version}/${pname}-${version}-x86_64.AppImage";
|
|
hash = "sha256-Kh6UgdleK+L+G4LNiQL2DkQIwS43cyzX+Jo6K0/fX1M=";
|
|
};
|
|
|
|
extraInstallCommands = let
|
|
contents = pkgs.appimageTools.extract { inherit pname version src; };
|
|
in ''
|
|
install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
cp -r ${contents}/usr/share/icons $out/share
|
|
'';
|
|
};
|
|
};
|
|
}
|