ma pkgs.opl-utils: init at 2017-10-17
This commit is contained in:
parent
ef1c8705e4
commit
80d0b63560
27
5pkgs/opl-utils/default.nix
Normal file
27
5pkgs/opl-utils/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, lib, pkgs, fetchFromGitHub }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "opl-utils";
|
||||||
|
version = "881c0d2";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ifcaro";
|
||||||
|
repo = "open-ps2-loader";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1c2hgbyp5hymyq60mrk7g0m3gi00wqx165pdwwwb740q0qig07d1";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
preBuild = "cd pc/";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp */bin/* $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/ifcaro/Open-PS2-Loader;
|
||||||
|
description = "open-ps2-loader utils (opl2iso,iso2opl,genvmc)";
|
||||||
|
license = lib.licenses.afl3;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue