81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{
|
|
bash,
|
|
bc,
|
|
coreutils,
|
|
fetchFromGitHub,
|
|
ffmpeg,
|
|
findutils,
|
|
gawk,
|
|
gnugrep,
|
|
gnused,
|
|
jq,
|
|
lame,
|
|
lib,
|
|
mediainfo,
|
|
mp4v2,
|
|
ncurses,
|
|
resholve,
|
|
}:
|
|
|
|
resholve.mkDerivation rec {
|
|
pname = "aaxtomp3";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "damajor";
|
|
repo = "aaxtomp3";
|
|
rev = "patch-1";
|
|
hash = "sha256-e+A4PLr3/WF/KeEeS6mwpc0ybvTyXTpxoOn6Bj6ZmMg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace AAXtoMP3 \
|
|
--replace 'AAXtoMP3' 'aaxtomp3'
|
|
substituteInPlace interactiveAAXtoMP3 \
|
|
--replace 'AAXtoMP3' 'aaxtomp3' \
|
|
--replace 'call="./aaxtomp3"' 'call="$AAXTOMP3"'
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm 755 AAXtoMP3 $out/bin/aaxtomp3
|
|
install -Dm 755 interactiveAAXtoMP3 $out/bin/interactiveaaxtomp3
|
|
'';
|
|
|
|
solutions.default = {
|
|
scripts = [
|
|
"bin/aaxtomp3"
|
|
"bin/interactiveaaxtomp3"
|
|
];
|
|
interpreter = "${bash}/bin/bash";
|
|
inputs = [
|
|
bc
|
|
coreutils
|
|
ffmpeg
|
|
findutils
|
|
gawk
|
|
gnugrep
|
|
gnused
|
|
jq
|
|
lame
|
|
mediainfo
|
|
mp4v2
|
|
ncurses
|
|
];
|
|
keep."$call" = true;
|
|
fix = {
|
|
"$AAXTOMP3" = [ "${placeholder "out"}/bin/aaxtomp3" ];
|
|
"$FIND" = [ "find" ];
|
|
"$GREP" = [ "grep" ];
|
|
"$SED" = [ "sed" ];
|
|
"$FFPROBE" = [ "ffprobe" ];
|
|
"$FFMPEG" = [ "ffmpeg" ];
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Convert Audible's .aax filetype to MP3, FLAC, M4A, or OPUS";
|
|
homepage = "https://krumpetpirate.github.io/AAXtoMP3";
|
|
license = licenses.wtfpl;
|
|
maintainers = with maintainers; [ urandom ];
|
|
};
|
|
}
|