Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
autoPatchelfHook,
|
|
makeWrapper,
|
|
alsa-lib,
|
|
curl,
|
|
gtk3,
|
|
webkitgtk_4_0,
|
|
zenity,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rymcast";
|
|
version = "1.0.6";
|
|
|
|
src = fetchzip {
|
|
url = "https://www.inphonik.com/files/rymcast/rymcast-${version}-linux-x64.tar.gz";
|
|
hash = "sha256:0vjjhfrwdibjjgz3awbg30qxkjrzc4cya1f4pigwjh3r0vvrq0ga";
|
|
stripRoot = false;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
curl
|
|
gtk3
|
|
(lib.getLib stdenv.cc.cc)
|
|
webkitgtk_4_0
|
|
zenity
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
cp RYMCast "$out/bin/"
|
|
wrapProgram "$out/bin/RYMCast" \
|
|
--set PATH "${lib.makeBinPath [ zenity ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Player for Mega Drive/Genesis VGM files";
|
|
homepage = "https://www.inphonik.com/products/rymcast-genesis-vgm-player/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|