pegasus-frontend: init at 0-unstable-2023-05-22
This commit is contained in:
parent
130cc08506
commit
356e05651a
2 changed files with 53 additions and 0 deletions
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;
|
||||
};
|
||||
}
|
|
@ -10647,6 +10647,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 { };
|
||||
|
|
Loading…
Reference in a new issue