32 lines
856 B
Nix
32 lines
856 B
Nix
|
{
|
||
|
fetchurl,
|
||
|
appimageTools,
|
||
|
|
||
|
pname,
|
||
|
version,
|
||
|
meta,
|
||
|
}:
|
||
|
|
||
|
appimageTools.wrapType2 rec {
|
||
|
inherit pname version meta;
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ThaUnknown/miru/releases/download/v${version}/linux-Miru-${version}.AppImage";
|
||
|
name = "${pname}-${version}.AppImage";
|
||
|
sha256 = "sha256-aPutbJthUhZtBYkYuUB5v88OdhOrcnqw4AhnepfO1B4=";
|
||
|
};
|
||
|
|
||
|
extraInstallCommands =
|
||
|
let
|
||
|
contents = appimageTools.extractType2 { inherit pname version src; };
|
||
|
in
|
||
|
''
|
||
|
mkdir -p "$out/share/applications"
|
||
|
mkdir -p "$out/share/lib/miru"
|
||
|
cp -r ${contents}/{locales,resources} "$out/share/lib/miru"
|
||
|
cp -r ${contents}/usr/* "$out"
|
||
|
cp "${contents}/${pname}.desktop" "$out/share/applications/"
|
||
|
substituteInPlace $out/share/applications/${pname}.desktop --replace 'Exec=AppRun' 'Exec=${pname}'
|
||
|
'';
|
||
|
}
|