lol

uade: nixfmt

+22 -14
+22 -14
pkgs/by-name/ua/uade/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitLab 4 - , python3 5 - , pkg-config 6 - , which 7 - , makeWrapper 8 - , libao 9 - , bencodetools 10 - , sox 11 - , lame 12 - , flac 13 - , vorbis-tools 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitLab, 5 + python3, 6 + pkg-config, 7 + which, 8 + makeWrapper, 9 + libao, 10 + bencodetools, 11 + sox, 12 + lame, 13 + flac, 14 + vorbis-tools, 14 15 }: 15 16 16 17 stdenv.mkDerivation rec { ··· 65 66 66 67 postInstall = '' 67 68 wrapProgram $out/bin/mod2ogg2.sh \ 68 - --prefix PATH : $out/bin:${lib.makeBinPath [ sox lame flac vorbis-tools ]} 69 + --prefix PATH : $out/bin:${ 70 + lib.makeBinPath [ 71 + sox 72 + lame 73 + flac 74 + vorbis-tools 75 + ] 76 + } 69 77 # This is an old script, don't break expectations by renaming it 70 78 ln -s $out/bin/mod2ogg2{.sh,} 71 79 '';