mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
freac: add missing encoders (#553120)
This commit is contained in:
@@ -4,6 +4,14 @@
|
||||
fetchFromGitHub,
|
||||
|
||||
boca,
|
||||
makeWrapper,
|
||||
faac,
|
||||
faad2,
|
||||
flac,
|
||||
lame,
|
||||
libopus,
|
||||
libvorbis,
|
||||
mpg123,
|
||||
smooth,
|
||||
systemd,
|
||||
wrapGAppsHook3,
|
||||
@@ -34,7 +42,24 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/freac \
|
||||
--prefix LD_LIBRARY_PATH : "${
|
||||
lib.makeLibraryPath [
|
||||
lame
|
||||
flac
|
||||
faac
|
||||
faad2
|
||||
libvorbis
|
||||
libopus
|
||||
mpg123
|
||||
]
|
||||
}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Audio converter and CD ripper with support for various popular formats and encoders";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
homepage = "https://www.freac.org/";
|
||||
|
||||
Reference in New Issue
Block a user