Merge pull request #98280 from MetaDark/protontricks

protontricks: 1.4.1 -> 1.4.2
This commit is contained in:
Daniël de Kok 2020-09-20 11:10:50 +02:00 committed by GitHub
commit 68f4e27857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,24 @@
{ stdenv, lib, buildPythonApplication, fetchFromGitHub { stdenv
, setuptools_scm, vdf , lib
, wine, winetricks, zenity , buildPythonApplication
, fetchFromGitHub
, setuptools_scm
, vdf
, wine
, winetricks
, zenity
, pytest , pytest
}: }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "protontricks"; pname = "protontricks";
version = "1.4.1"; version = "1.4.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Matoking"; owner = "Matoking";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "083ncg6yjd7s3dx91zd52w166x709mnxknwwr78ggka8d8vlyi0b"; sha256 = "0ri4phi1rna9snrxa6gl23walyack09mgax7zpjqfpxivwls3ach";
}; };
# Fix interpreter in mock run.sh for tests # Fix interpreter in mock run.sh for tests
@ -47,7 +53,7 @@ buildPythonApplication rec {
description = "A simple wrapper for running Winetricks commands for Proton-enabled games"; description = "A simple wrapper for running Winetricks commands for Proton-enabled games";
homepage = "https://github.com/Matoking/protontricks"; homepage = "https://github.com/Matoking/protontricks";
license = licenses.gpl3; license = licenses.gpl3;
platforms = with platforms; linux;
maintainers = with maintainers; [ metadark ]; maintainers = with maintainers; [ metadark ];
platforms = platforms.linux;
}; };
} }