rpcs3: 0.0.8-9300-341fdf7eb -> 0.0.12-10811-a86a3d2fe (#100773)

* rpcs3: 0.0.8-9300-341fdf7eb -> 0.0.12-10811-a86a3d2fe

added neonfuz as maintainer

Co-authored-by: Milan Pässler <milan@petabyte.dev>
This commit is contained in:
Sage 2020-12-12 19:16:41 -06:00 committed by GitHub
parent 9452323207
commit 58cb538386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@
}:
let
majorVersion = "0.0.8";
gitVersion = "9300-341fdf7eb"; # echo $(git rev-list HEAD --count)-$(git rev-parse --short HEAD)
majorVersion = "0.0.12";
gitVersion = "10811-a86a3d2fe"; # echo $(git rev-list HEAD --count)-$(git rev-parse --short HEAD)
in
mkDerivation {
pname = "rpcs3";
@ -17,12 +17,13 @@ mkDerivation {
src = fetchgit {
url = "https://github.com/RPCS3/rpcs3";
rev = "v${majorVersion}";
sha256 = "1qx97zkkjl6bmv5rhfyjqynbz0v8h40b2wxqnl59g287wj0yk3y1";
sha256 = "182rkmbnnlcfzam4bwas7lwv10vqiqvvaw3299a3hariacd7rq8x";
};
preConfigure = ''
cat > ./rpcs3/git-version.h <<EOF
#define RPCS3_GIT_VERSION "${gitVersion}"
#define RPCS3_GIT_FULL_BRANCH "RPCS3/rpcs3/master"
#define RPCS3_GIT_BRANCH "HEAD"
#define RPCS3_GIT_VERSION_NO_UPDATE 1
EOF
@ -48,7 +49,7 @@ mkDerivation {
meta = with lib; {
description = "PS3 emulator/debugger";
homepage = "https://rpcs3.net/";
maintainers = with maintainers; [ abbradar nocent ];
maintainers = with maintainers; [ abbradar neonfuz nocent ];
license = licenses.gpl2;
platforms = [ "x86_64-linux" ];
};