Merge pull request #52396 from bignaux/ps2client

ps2client: init at 2018-10-18
This commit is contained in:
Anderson Torres 2019-04-03 05:48:55 -03:00 committed by GitHub
commit 84b7a7645f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "unstable-2018-10-18";
name = "ps2client-${version}";
src = fetchFromGitHub {
owner = "ps2dev";
repo = "ps2client";
rev = "92fcaf18aabf74daaed40bd50d428cce326a87c0";
sha256 = "1rlmns44pxm6dkh6d3cz9sw8v7pvi53r7r5r3kgwdzkhixjj0cdg";
};
patchPhase = ''
sed -i -e "s|-I/usr/include||g" -e "s|-I/usr/local/include||g" Makefile
'';
installPhase = ''
make PREFIX=$out install
'';
meta = with stdenv.lib; {
description = "Desktop clients to interact with ps2link and ps2netfs";
homepage = https://github.com/ps2dev/ps2client;
license = licenses.bsd3;
maintainers = [ maintainers.genesis ];
platforms = platforms.unix;
};
}

View File

@ -19188,6 +19188,8 @@ in
protonvpn-cli = callPackage ../applications/networking/protonvpn-cli { };
ps2client = callPackage ../applications/networking/ps2client { };
psi = callPackage ../applications/networking/instant-messengers/psi { };
psi-plus = callPackage ../applications/networking/instant-messengers/psi-plus { };