ma pkgs.ps3netsrv: package webman-mod ps3netsrv
This commit is contained in:
parent
12cbc5ed1e
commit
620398a22b
33
makefu/5pkgs/ps3netsrv/default.nix
Normal file
33
makefu/5pkgs/ps3netsrv/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, mbedtls
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ps3netsrv";
|
||||||
|
version = "20220813";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "aldostools";
|
||||||
|
repo = "webMAN-MOD";
|
||||||
|
rev = "5301277a0eb2275c73d7c82af9cb9e9ec34369e4";
|
||||||
|
hash = "sha256-hgQSqRKFomHgOr1ejfKoR/Sywa3AjbinmAAgscVYs44=";
|
||||||
|
};
|
||||||
|
postUnpack = "pwd; ls -alhtr; ls -alhtr source";
|
||||||
|
|
||||||
|
#dontUseCmakeConfigure = true;
|
||||||
|
nativeBuildInputs = [ mbedtls meson ninja ];
|
||||||
|
buildInputs = [ mbedtls ];
|
||||||
|
sourceRoot = "./source/_Projects_/ps3netsrv";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/aldostools/webMAN-MOD/wiki/~-PS3-NET-Server";
|
||||||
|
description = "a server application used to stream content from a remote server to the PS3";
|
||||||
|
maintainers = [ maintainers.makefu ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user