ma tools/consoles: add opl-pc-tools
This commit is contained in:
parent
51eaeac0bc
commit
9e27690932
@ -1,10 +1,14 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
users.users.makefu.packages = with pkgs; [
|
users.users.makefu.packages = with pkgs; [
|
||||||
|
# PS2
|
||||||
opl-utils
|
opl-utils
|
||||||
|
#opl-pc-tools
|
||||||
hdl-dump
|
hdl-dump
|
||||||
bin2iso
|
bin2iso
|
||||||
cue2pops
|
cue2pops
|
||||||
|
|
||||||
|
# switch
|
||||||
nx_game_info
|
nx_game_info
|
||||||
hactool
|
hactool
|
||||||
nsrenamer
|
nsrenamer
|
||||||
|
44
makefu/5pkgs/opl-pc-tools/default.nix
Normal file
44
makefu/5pkgs/opl-pc-tools/default.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, pkg-config
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, qt5
|
||||||
|
, wrapQtAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "OPL-PC-Tools";
|
||||||
|
version = "3.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "brainstream";
|
||||||
|
repo = "OPL-PC-Tools";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1772j99r7ssf45512z5256142gj2ds9mgqv5m8k6hszd5jbnc9qc";
|
||||||
|
};
|
||||||
|
|
||||||
|
#dontUseCmakeConfigure = true;
|
||||||
|
nativeBuildInputs = [ cmake pkg-config meson ninja
|
||||||
|
wrapQtAppsHook
|
||||||
|
];
|
||||||
|
buildInputs = with qt5;[ qtbase
|
||||||
|
qttools
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ls -lahtr .
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp oplpctools $out/bin/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/joshkunz/ashuffle";
|
||||||
|
description = "Automatic library-wide shuffle for mpd";
|
||||||
|
maintainers = [ maintainers.tcbravo ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user