mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge pull request #238453 from tengkuizdihar/pegasus_frontend_init
pegasus-frontend: init at 0-unstable-2023-05-22
This commit is contained in:
commit
0d58a7b21a
@ -16008,6 +16008,13 @@
|
|||||||
githubId = 1755789;
|
githubId = 1755789;
|
||||||
name = "Robert Irelan";
|
name = "Robert Irelan";
|
||||||
};
|
};
|
||||||
|
tengkuizdihar = {
|
||||||
|
name = "Tengku Izdihar";
|
||||||
|
email = "tengkuizdihar@gmail.com";
|
||||||
|
matrix = "@tengkuizdihar:matrix.org";
|
||||||
|
github = "tengkuizdihar";
|
||||||
|
githubId = 22078730;
|
||||||
|
};
|
||||||
tennox = {
|
tennox = {
|
||||||
email = "tennox+nix@txlab.io";
|
email = "tennox+nix@txlab.io";
|
||||||
github = "tennox";
|
github = "tennox";
|
||||||
|
51
pkgs/games/pegasus-frontend/default.nix
Normal file
51
pkgs/games/pegasus-frontend/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -10756,6 +10756,8 @@ with pkgs;
|
|||||||
|
|
||||||
pcmsolver = callPackage ../development/libraries/pcmsolver { };
|
pcmsolver = callPackage ../development/libraries/pcmsolver { };
|
||||||
|
|
||||||
|
pegasus-frontend = libsForQt5.callPackage ../games/pegasus-frontend {};
|
||||||
|
|
||||||
pgbadger = perlPackages.callPackage ../tools/misc/pgbadger { };
|
pgbadger = perlPackages.callPackage ../tools/misc/pgbadger { };
|
||||||
|
|
||||||
pffft = callPackage ../development/libraries/pffft { };
|
pffft = callPackage ../development/libraries/pffft { };
|
||||||
|
Loading…
Reference in New Issue
Block a user