Merge pull request #238453 from tengkuizdihar/pegasus_frontend_init

pegasus-frontend: init at 0-unstable-2023-05-22
This commit is contained in:
Sandro 2023-07-02 12:47:12 +02:00 committed by GitHub
commit 0d58a7b21a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 60 additions and 0 deletions

View file

@ -16008,6 +16008,13 @@
githubId = 1755789;
name = "Robert Irelan";
};
tengkuizdihar = {
name = "Tengku Izdihar";
email = "tengkuizdihar@gmail.com";
matrix = "@tengkuizdihar:matrix.org";
github = "tengkuizdihar";
githubId = 22078730;
};
tennox = {
email = "tennox+nix@txlab.io";
github = "tennox";

View file

@ -0,0 +1,51 @@
{ lib
, fetchFromGitHub
, stdenv
, cmake
, qtbase
, qtgraphicaleffects
, qtmultimedia
, qtsvg
, qttools
, qtx11extras
, SDL2
, sqlite
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "pegasus-frontend";
version = "unstable-2023-05-22";
src = fetchFromGitHub {
owner = "mmatyas";
repo = "pegasus-frontend";
rev = "6421d7a75d29a82ea06008e4a08ec14e074430d9";
fetchSubmodules = true;
sha256 = "sha256-mwJm+3zMP4alcis7OFQUcH3eXlRTZhoZYtxKrvCQGc8=";
};
nativeBuildInputs = [
cmake
qttools
wrapQtAppsHook
];
buildInputs = [
qtbase
qtmultimedia
qtsvg
qtgraphicaleffects
qtx11extras
sqlite
SDL2
];
meta = with lib; {
description = "A cross platform, customizable graphical frontend for launching emulators and managing your game collection.";
homepage = "https://pegasus-frontend.org/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ tengkuizdihar ];
platforms = platforms.linux;
};
}

View file

@ -10756,6 +10756,8 @@ with pkgs;
pcmsolver = callPackage ../development/libraries/pcmsolver { };
pegasus-frontend = libsForQt5.callPackage ../games/pegasus-frontend {};
pgbadger = perlPackages.callPackage ../tools/misc/pgbadger { };
pffft = callPackage ../development/libraries/pffft { };