aaxtomp3: init at 1.3

Fixes #197312
This commit is contained in:
Colin Arnott 2022-11-07 18:16:42 +00:00
parent f9fcccaaf0
commit 451fb3f721
No known key found for this signature in database
GPG key ID: 0447A663F7F3E236
2 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,56 @@
{ coreutils
, fetchFromGitHub
, ffmpeg
, findutils
, gnugrep
, gnused
, jq
, lame
, lib
, makeWrapper
, mediainfo
, mp4v2
, stdenv
}:
let
runtimeInputs = [
coreutils
ffmpeg
findutils
gnugrep
gnused
jq
lame
mediainfo
mp4v2
];
in
stdenv.mkDerivation rec {
pname = "aaxtomp3";
version = "1.3";
src = fetchFromGitHub {
owner = "krumpetpirate";
repo = pname;
rev = "v${version}";
hash = "sha256-7a9ZVvobWH/gPxa3cFiPL+vlu8h1Dxtcq0trm3HzlQg=";
};
dontBuild = false;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
install -Dm755 AAXtoMP3 $out/bin/aaxtomp3
wrapProgram $out/bin/aaxtomp3 --prefix PATH : ${lib.makeBinPath runtimeInputs}
install -Dm755 interactiveAAXtoMP3 $out/bin/interactiveaaxtomp3
wrapProgram $out/bin/interactiveaaxtomp3 --prefix PATH : ${lib.makeBinPath runtimeInputs}
'';
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 ];
};
}

View file

@ -27124,6 +27124,8 @@ with pkgs;
aacgain = callPackage ../applications/audio/aacgain { };
aaxtomp3 = callPackage ../applications/audio/aaxtomp3 {};
abcde = callPackage ../applications/audio/abcde {
inherit (python3Packages) eyeD3;
};