Skip to content

Commit

Permalink
thcrap-steam-proton-wrapper: init at 2b636c3
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuramaruzxc committed Apr 5, 2024
1 parent f5eb492 commit 14a035d
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
lib,
stdenv,
fetchFromGitHub,
makeWrapper,
bash,
subversion,
gnome,
}:
with lib; let
version = "2b636c3";
in
stdenv.mkDerivation {
pname = "thcrap-proton";
inherit version;

src = fetchFromGitHub {
owner = "tactikauan";
repo = "thcrap-steam-proton-wrapper";
rev = version;
sha256 = "sha256-J2O8F75NMdsxSaNVr8zLf+vLEJE6CHqWQIIscuuJZ3o=";
};

buildInputs = [bash subversion];

nativeBuildInputs = [
makeWrapper
];
installPhase = ''
mkdir -p $out/bin
cp thcrap_proton $out/bin/thcrap_proton
'';
postFixup = ''
wrapProgram $out/bin/thcrap_proton \
--prefix PATH : ${lib.makeBinPath [bash subversion gnome.zenity]}
'';
meta = {
description = "A wrapper script for launching the official Touhou games on Steam with patches through Proton on GNU/Linux";
homepage = "https://github.com/tactikauan/thcrap-steam-proton-wrapper";
changelog = "https://github.com/tactikauan/thcrap-steam-proton-wrapper/${version}";
license = licenses.unlicense;
maintainers = with maintainers; [ashuramaruzxc];
platforms = ["x86_64-linux" "aarch64-linux"];
mainProgram = "thcrap_proton";
};
}

0 comments on commit 14a035d

Please sign in to comment.