emulationstation: nixfmt-rfc-style

This commit is contained in:
Anderson Torres 2024-07-24 21:51:46 -03:00
parent 985e8f4674
commit b88906ab32
2 changed files with 30 additions and 29 deletions

View File

@ -48,9 +48,7 @@ stdenv.mkDerivation {
rapidjson
];
cmakeFlags = [
(lib.cmakeBool "GL" true)
];
cmakeFlags = [ (lib.cmakeBool "GL" true) ];
strictDeps = true;
@ -81,7 +79,10 @@ stdenv.mkDerivation {
description = "Flexible emulator front-end supporting keyboardless navigation and custom system themes (forked by RetroPie)";
license = with lib.licenses; [ mit ];
mainProgram = "emulationstation";
maintainers = with lib.maintainers; [ AndersonTorres edwtjo ];
maintainers = with lib.maintainers; [
AndersonTorres
edwtjo
];
platforms = lib.platforms.linux;
};
}

View File

@ -1,35 +1,35 @@
{
fetchFromGitHub,
}:
{ fetchFromGitHub }:
{
emulationstation = let
self = {
pname = "emulationstation";
version = "2.11.2";
emulationstation =
let
self = {
pname = "emulationstation";
version = "2.11.2";
src = fetchFromGitHub {
owner = "RetroPie";
repo = "EmulationStation";
rev = "v${self.version}";
hash = "sha256-f2gRkp+3Pp2qnvg2RBzaHPpzhAnwx0+5x1Pe3kD90xE=";
src = fetchFromGitHub {
owner = "RetroPie";
repo = "EmulationStation";
rev = "v${self.version}";
hash = "sha256-f2gRkp+3Pp2qnvg2RBzaHPpzhAnwx0+5x1Pe3kD90xE=";
};
};
};
in
in
self;
pugixml = let
self = {
pname = "pugixml";
version = "1.8.1";
pugixml =
let
self = {
pname = "pugixml";
version = "1.8.1";
src = fetchFromGitHub {
owner = "zeux";
repo = "pugixml";
rev = "v${self.version}";
hash = "sha256-LbjTN1hnIbqI79C+gCdwuDG0+B/5yXf7hg0Q+cDFIf4=";
src = fetchFromGitHub {
owner = "zeux";
repo = "pugixml";
rev = "v${self.version}";
hash = "sha256-LbjTN1hnIbqI79C+gCdwuDG0+B/5yXf7hg0Q+cDFIf4=";
};
};
};
in
in
self;
}