mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
72 lines
2.3 KiB
Nix
72 lines
2.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, wrapGAppsHook, gettext, glib, gtk3
|
|
, libmowgli, libmcs, dbus_glib, libxml2, xorg, gnome3, alsaLib
|
|
, libpulseaudio, libjack2, fluidsynth, libmad, libogg, libvorbis
|
|
, libcdio082, libcddb, flac, ffmpeg, mpg123, libcue, libmms, libbs2b
|
|
, libsndfile, libmodplug, libsamplerate, soxr, lirc, curl, wavpack
|
|
, neon, faad2, lame, libnotify, libsidplayfp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "audacious-${version}";
|
|
version = "3.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://distfiles.audacious-media-player.org/audacious-${version}-gtk3.tar.bz2";
|
|
sha256 = "1g08xprc9q0lyw3knq723j7xr7i15f8v1x1j3k5wvi8jv21bvijf";
|
|
};
|
|
|
|
pluginsSrc = fetchurl {
|
|
url = "http://distfiles.audacious-media-player.org/audacious-plugins-${version}-gtk3.tar.bz2";
|
|
sha256 = "1vqcxwqinlwb2l0kkrarg33sw1brjzrnq5jbhzrql6z6x95h4jbq";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gettext glib gtk3 libmowgli libmcs dbus_glib libxml2
|
|
xorg.libXcomposite gnome3.defaultIconTheme alsaLib libjack2
|
|
libpulseaudio fluidsynth libmad libogg libvorbis libcdio082
|
|
libcddb flac ffmpeg mpg123 libcue libmms libbs2b libsndfile
|
|
libmodplug libsamplerate soxr lirc curl wavpack neon faad2
|
|
lame libnotify libsidplayfp
|
|
];
|
|
|
|
configureFlags = [ "--enable-statusicon" ];
|
|
|
|
# Here we build both audacious and audacious-plugins in one
|
|
# derivations, since they really expect to be in the same prefix.
|
|
# This is slighly tricky.
|
|
builder = builtins.toFile "builder.sh" ''
|
|
# First build audacious.
|
|
(
|
|
source $stdenv/setup
|
|
genericBuild
|
|
)
|
|
|
|
# Then build the plugins.
|
|
(
|
|
dontWrapGApps=true
|
|
nativeBuildInputs="$out $nativeBuildInputs" # to find audacious
|
|
source $stdenv/setup
|
|
rm -rfv audacious-*
|
|
src=$pluginsSrc
|
|
genericBuild
|
|
)
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Audio player";
|
|
homepage = http://audacious-media-player.org/;
|
|
maintainers = with maintainers; [ eelco ramkromberg ];
|
|
platforms = with platforms; linux;
|
|
license = with licenses; [
|
|
bsd2 bsd3 #https://github.com/audacious-media-player/audacious/blob/master/COPYING
|
|
gpl2 gpl3 lgpl2Plus #http://redmine.audacious-media-player.org/issues/46
|
|
];
|
|
};
|
|
}
|