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
48 lines
944 B
Nix
48 lines
944 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
unstableGitUpdater,
|
|
cmake,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "vgmtools";
|
|
version = "0.1-unstable-2025-08-20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vgmrips";
|
|
repo = "vgmtools";
|
|
rev = "7e071f9fff11031e6bbe3ccc73d180be08727804";
|
|
hash = "sha256-GTdMLDGVAeV4aIrnKYc/NE1FVU5DS1TspeTcx4qwUQA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
zlib
|
|
];
|
|
|
|
# Some targets are not enabled by default
|
|
makeFlags = [
|
|
"all"
|
|
"optdac"
|
|
"optvgm32"
|
|
];
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
url = "https://github.com/vgmrips/vgmtools.git";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/vgmrips/vgmtools";
|
|
description = "Collection of tools for the VGM file format";
|
|
license = licenses.gpl2Only; # Not clarified whether Only or Plus
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|