3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #172145 from azuwis/uxplay

This commit is contained in:
Sandro 2022-05-11 00:49:16 +02:00 committed by GitHub
commit b133179ebe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,6 @@
, stdenv
, pkg-config
, fetchFromGitHub
, fetchpatch
, cmake
, wrapGAppsHook
, avahi
@ -14,23 +13,15 @@
stdenv.mkDerivation rec {
pname = "uxplay";
version = "1.50";
version = "1.52";
src = fetchFromGitHub {
owner = "FDH2";
repo = "UxPlay";
rev = "v${version}";
sha256 = "sha256-43BCpYh0XtsnI064/ddcz2/Imj399g+bxLlT0BpqLMI=";
sha256 = "sha256-2wPUG50fbXLg6w2Rni3NyeiCyUNPcOvxvqopD9QZJaQ=";
};
patches = [
# https://github.com/FDH2/UxPlay/issues/91
(fetchpatch {
url = "https://github.com/FDH2/UxPlay/commit/f373fb2edcfb1f4c279e5796cf21e4a865800a71.patch";
sha256 = "sha256-ENT/sMyPjDdZ4gdxiatYJ/UxuCl+ekk0iQOn8ELDAKQ=";
})
];
nativeBuildInputs = [
cmake
openssl