vgm2x: 0.0.0-unstable-2023-08-27 -> 0-unstable-2024-06-18 (#325500)

This commit is contained in:
Cosima Neidahl 2024-08-28 10:13:26 +02:00 committed by GitHub
commit 94864fc39b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,43 +1,47 @@
{ stdenv
, lib
, fetchFromGitHub
, unstableGitUpdater
, libfmvoice
, zlib
{
stdenv,
lib,
fetchFromGitHub,
unstableGitUpdater,
libarchive,
libzip,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "vgm2x";
version = "0.0.0-unstable-2023-08-27";
version = "0-unstable-2024-06-18";
src = fetchFromGitHub {
owner = "vampirefrog";
repo = "vgm2x";
rev = "5128055ab2b356e173b53e2afd31202a59505a39";
hash = "sha256-DwDcSUdfOsDlajYtzg5xM5P9QPOqLp8b0sEpE18kfzA=";
rev = "1c379d74d2365d4478abe25a12572f357d35d576";
fetchSubmodules = true;
hash = "sha256-lWyOyaV9dDrvGfmCE7m5M8DsxcB8bzJ35Amj3DAOVeA=";
};
postPatch = ''
rmdir libfmvoice
cp --no-preserve=all -r ${libfmvoice.src} libfmvoice
substituteInPlace Makefile \
--replace-fail 'pkg-config' "$PKG_CONFIG"
'';
strictDeps = true;
enableParallelBuilding = true;
nativeBuildInputs = [ pkg-config ];
buildInputs = [
zlib
libarchive
libzip
];
buildFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
];
buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
installPhase = ''
runHook preInstall
install -Dm755 vgm2opm $out/bin/vgm2opm
install -Dm755 vgm2x $out/bin/vgm2x
runHook postInstall
'';
@ -46,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: {
updateScript = unstableGitUpdater { };
};
meta = with lib; {
meta = {
description = "VGM file extraction tools";
homepage = "https://github.com/vampirefrog/vgm2x";
license = licenses.gpl3Only;
mainProgram = "vgm2opm";
maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.all;
license = lib.licenses.gpl3Only;
mainProgram = "vgm2x";
maintainers = with lib.maintainers; [ OPNA2608 ];
platforms = lib.platforms.all;
};
})