uade: nixfmt

This commit is contained in:
OPNA2608
2024-11-11 12:41:13 +01:00
parent 4038161320
commit c802a0129d
+22 -14
View File
@@ -1,16 +1,17 @@
{ lib
, stdenv
, fetchFromGitLab
, python3
, pkg-config
, which
, makeWrapper
, libao
, bencodetools
, sox
, lame
, flac
, vorbis-tools
{
lib,
stdenv,
fetchFromGitLab,
python3,
pkg-config,
which,
makeWrapper,
libao,
bencodetools,
sox,
lame,
flac,
vorbis-tools,
}:
stdenv.mkDerivation rec {
@@ -65,7 +66,14 @@ stdenv.mkDerivation rec {
postInstall = ''
wrapProgram $out/bin/mod2ogg2.sh \
--prefix PATH : $out/bin:${lib.makeBinPath [ sox lame flac vorbis-tools ]}
--prefix PATH : $out/bin:${
lib.makeBinPath [
sox
lame
flac
vorbis-tools
]
}
# This is an old script, don't break expectations by renaming it
ln -s $out/bin/mod2ogg2{.sh,}
'';