Skip to content

Commit

Permalink
format: use nixfmt-rfc-style instead of alejandra
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuramaruzxc committed Apr 9, 2024
1 parent 0becc15 commit d940e92
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
lib,
stdenv,
fetchFromGitHub,
makeWrapper,
bash,
subversion,
gnome,
lib
, stdenv
, fetchFromGitHub
, makeWrapper
, bash
, subversion
, gnome
}:
stdenv.mkDerivation {
pname = "thcrap-proton";
Expand All @@ -18,7 +18,7 @@ stdenv.mkDerivation {
sha256 = "sha256-J2O8F75NMdsxSaNVr8zLf+vLEJE6CHqWQIIscuuJZ3o=";
};

buildInputs = [subversion];
buildInputs = [ subversion ];

nativeBuildInputs = [ makeWrapper ];

Expand All @@ -33,15 +33,24 @@ stdenv.mkDerivation {

postFixup = ''
wrapProgram $out/bin/thcrap_proton \
--prefix PATH : ${lib.makeBinPath [bash subversion gnome.zenity]}
--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'';
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";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ashuramaruzxc];
platforms = ["x86_64-linux" "aarch64-linux"];
maintainers = with lib.maintainers; [ ashuramaruzxc ];
platforms = [
"x86_64-linux"
"aarch64-linux"
];
mainProgram = "thcrap_proton";
};
}

0 comments on commit d940e92

Please sign in to comment.