Unverified Commit b8cc9d60 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #305277 from surfaceflinger/steamtinkerlaunch-unstable

steamtinkerlaunch: 12.12 -> 12.12-unstable-2024-05-03
parents f0129ad8 6496a33b
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
{ bash
, fetchFromGitHub
, gawk
, git
, gnugrep
, fetchFromGitHub
, lib
, makeWrapper
, stdenv
, procps
, stdenvNoCC
, unixtools
, unzip
, wget
@@ -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
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
      bash
      gawk
      git
      gnugrep
      procps
      unixtools.xxd
      unzip
      wget
@@ -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;
  };
}