2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2018-12-16 16:55:16 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2018-12-16 16:55:16 +00:00
|
|
|
version = "unstable-2018-10-18";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ps2client";
|
2018-12-16 16:55:16 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
2020-11-18 08:42:33 +00:00
|
|
|
|
2018-12-16 16:55:16 +00:00
|
|
|
installPhase = ''
|
|
|
|
make PREFIX=$out install
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-12-16 16:55:16 +00:00
|
|
|
description = "Desktop clients to interact with ps2link and ps2netfs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ps2dev/ps2client";
|
2018-12-16 16:55:16 +00:00
|
|
|
license = licenses.bsd3;
|
2020-11-17 16:50:53 +00:00
|
|
|
maintainers = [ ];
|
2018-12-16 16:55:16 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|