tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
audacious-plugins: format with nixfmt-rfc-style
Thiago Kenji Okada
1 year ago
d8a95443
b41a0997
+48
-45
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
audacious
plugins.nix
+48
-45
pkgs/applications/audio/audacious/plugins.nix
···
1
1
-
{ stdenv
2
2
-
, fetchFromGitHub
3
3
-
, alsa-lib
4
4
-
, audacious-bare
5
5
-
, curl
6
6
-
, faad2
7
7
-
, ffmpeg
8
8
-
, flac
9
9
-
, fluidsynth
10
10
-
, gdk-pixbuf
11
11
-
, lame
12
12
-
, libbs2b
13
13
-
, libcddb
14
14
-
, libcdio
15
15
-
, libcdio-paranoia
16
16
-
, libcue
17
17
-
, libjack2
18
18
-
, libmad
19
19
-
, libmms
20
20
-
, libmodplug
21
21
-
, libmowgli
22
22
-
, libnotify
23
23
-
, libogg
24
24
-
, libopenmpt
25
25
-
, libpulseaudio
26
26
-
, libsamplerate
27
27
-
, libsidplayfp
28
28
-
, libsndfile
29
29
-
, libvorbis
30
30
-
, libxml2
31
31
-
, lirc
32
32
-
, meson
33
33
-
, mpg123
34
34
-
, neon
35
35
-
, ninja
36
36
-
, pkg-config
37
37
-
, opusfile
38
38
-
, pipewire
39
39
-
, qtbase
40
40
-
, qtmultimedia
41
41
-
, qtwayland
42
42
-
, soxr
43
43
-
, vgmstream
44
44
-
, wavpack
1
1
+
{
2
2
+
stdenv,
3
3
+
fetchFromGitHub,
4
4
+
alsa-lib,
5
5
+
audacious-bare,
6
6
+
curl,
7
7
+
faad2,
8
8
+
ffmpeg,
9
9
+
flac,
10
10
+
fluidsynth,
11
11
+
gdk-pixbuf,
12
12
+
lame,
13
13
+
libbs2b,
14
14
+
libcddb,
15
15
+
libcdio,
16
16
+
libcdio-paranoia,
17
17
+
libcue,
18
18
+
libjack2,
19
19
+
libmad,
20
20
+
libmms,
21
21
+
libmodplug,
22
22
+
libmowgli,
23
23
+
libnotify,
24
24
+
libogg,
25
25
+
libopenmpt,
26
26
+
libpulseaudio,
27
27
+
libsamplerate,
28
28
+
libsidplayfp,
29
29
+
libsndfile,
30
30
+
libvorbis,
31
31
+
libxml2,
32
32
+
lirc,
33
33
+
meson,
34
34
+
mpg123,
35
35
+
neon,
36
36
+
ninja,
37
37
+
pkg-config,
38
38
+
opusfile,
39
39
+
pipewire,
40
40
+
qtbase,
41
41
+
qtmultimedia,
42
42
+
qtwayland,
43
43
+
soxr,
44
44
+
vgmstream,
45
45
+
wavpack,
45
46
}:
46
47
47
48
stdenv.mkDerivation rec {
···
111
112
dontWrapQtApps = true;
112
113
113
114
postInstall = ''
114
114
-
ln -s ${vgmstream.override { buildAudaciousPlugin = true; }}/lib/audacious/Input/* $out/lib/audacious/Input
115
115
+
ln -s ${
116
116
+
vgmstream.override { buildAudaciousPlugin = true; }
117
117
+
}/lib/audacious/Input/* $out/lib/audacious/Input
115
118
'';
116
119
117
120
meta = audacious-bare.meta // {