Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

steamtinkerlaunch: 12.12 -> 12.12-unstable-2024-05-03 #305277

Merged
merged 2 commits into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions pkgs/tools/games/steamtinkerlaunch/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ bash
, fetchFromGitHub
, gawk
, git
, gnugrep
, fetchFromGitHub
, lib
, makeWrapper
, stdenv
, procps
, stdenvNoCC
, unixtools
, unzip
, wget
Expand All @@ -14,15 +14,15 @@
, yad
}:

stdenv.mkDerivation rec {
stdenvNoCC.mkDerivation {
pname = "steamtinkerlaunch";
version = "12.12";
version = "12.12-unstable-2024-05-03";

src = fetchFromGitHub {
owner = "sonic2kk";
repo = pname;
rev = "v${version}";
hash = "sha256-oigHNfg5rHxRabwUs66ye+chJzivmCIw8mg/GaJLPkg=";
repo = "steamtinkerlaunch";
rev = "59b421b2f3686120a076909a4a158824cd4ef05e";
hash = "sha256-CGtSGAm+52t2zFsPJEsm76w+FEHhbOd9NYuerGa31tc=";
};

# hardcode PROGCMD because #150841
Expand All @@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
bash
gawk
git
gnugrep
procps
unixtools.xxd
unzip
wget
Expand All @@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
mainProgram = "steamtinkerlaunch";
homepage = "https://github.com/sonic2kk/steamtinkerlaunch";
license = licenses.gpl3;
maintainers = with maintainers; [ urandom ];
maintainers = with maintainers; [ urandom surfaceflinger ];
platforms = lib.platforms.linux;
};
}