vgmtools: init at unstable-2022-05-23
This commit is contained in:
parent
65db75774b
commit
1cda678ea0
44
pkgs/tools/audio/vgmtools/default.nix
Normal file
44
pkgs/tools/audio/vgmtools/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, unstableGitUpdater
|
||||
, cmake
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vgmtools";
|
||||
version = "unstable-2022-05-23";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vgmrips";
|
||||
repo = "vgmtools";
|
||||
rev = "e0df1511ddf7b1207b448487616ff18a9049c278";
|
||||
sha256 = "2nM3E/XeZ1OeOj3fPqvuJgQcPOtBerduGpVfpGLVhHQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
zlib
|
||||
];
|
||||
|
||||
# Some targets are not enabled by default
|
||||
makeFlags = [
|
||||
"all" "opt_oki" "optdac" "optvgm32"
|
||||
];
|
||||
|
||||
passthru.updateScript = unstableGitUpdater {
|
||||
url = "https://github.com/vgmrips/vgmtools.git";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/vgmrips/vgmtools";
|
||||
description = "A collection of tools for the VGM file format";
|
||||
license = licenses.gpl2; # Not clarified whether Only or Plus
|
||||
maintainers = with maintainers; [ OPNA2608 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -28838,6 +28838,8 @@ with pkgs;
|
||||
|
||||
vgmplay-libvgm = callPackage ../applications/audio/vgmplay-libvgm { };
|
||||
|
||||
vgmtools = callPackage ../tools/audio/vgmtools { };
|
||||
|
||||
vieb = callPackage ../applications/networking/browsers/vieb { };
|
||||
|
||||
vivaldi = callPackage ../applications/networking/browsers/vivaldi {};
|
||||
|
Loading…
Reference in New Issue
Block a user