mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
19 lines
334 B
Nix
19 lines
334 B
Nix
|
|
{ stdenv }:
|
||
|
|
|
||
|
|
stdenv.mkDerivation rec {
|
||
|
|
pname = "prismlauncher";
|
||
|
|
version = "1.0";
|
||
|
|
|
||
|
|
src = null;
|
||
|
|
unpackPhase = ":";
|
||
|
|
|
||
|
|
installPhase = ''
|
||
|
|
mkdir -p $out/bin
|
||
|
|
cat > $out/bin/prismlauncher <<'EOF'
|
||
|
|
#!/bin/sh
|
||
|
|
appimage-run /home/coast/AppImages/PrismLauncher-Linux-x86_64.AppImage
|
||
|
|
EOF
|
||
|
|
chmod +x $out/bin/prismlauncher
|
||
|
|
'';
|
||
|
|
}
|