biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / em / emulationstation / sources.nix
blob88273e845fee93f2fc071ffbba9035d2b9ece59e
1 { fetchFromGitHub }:
4   emulationstation =
5     let
6       self = {
7         pname = "emulationstation";
8         version = "2.11.2";
10         src = fetchFromGitHub {
11           owner = "RetroPie";
12           repo = "EmulationStation";
13           rev = "v${self.version}";
14           hash = "sha256-f2gRkp+3Pp2qnvg2RBzaHPpzhAnwx0+5x1Pe3kD90xE=";
15         };
16       };
17     in
18     self;
20   pugixml =
21     let
22       self = {
23         pname = "pugixml";
24         version = "1.8.1";
26         src = fetchFromGitHub {
27           owner = "zeux";
28           repo = "pugixml";
29           rev = "v${self.version}";
30           hash = "sha256-LbjTN1hnIbqI79C+gCdwuDG0+B/5yXf7hg0Q+cDFIf4=";
31         };
32       };
33     in
34     self;