ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
60 lines
1.7 KiB
Nix
60 lines
1.7 KiB
Nix
{ stdenv, fetchurl, pkgconfig, glib, gtk, libmowgli, libmcs
|
|
, gettext, dbus_glib, libxml2, libmad, xlibs, alsaLib, libogg
|
|
, libvorbis, libcdio, libcddb, flac, ffmpeg
|
|
}:
|
|
|
|
let
|
|
version = "3.2.2";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "audacious-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://distfiles.audacious-media-player.org/audacious-${version}.tar.bz2";
|
|
sha256 = "1vj2f3jq67r9wc3s8p51w8338cjhidj3lpxmzyh31lrfikj21766";
|
|
};
|
|
|
|
pluginsSrc = fetchurl {
|
|
url = "http://distfiles.audacious-media-player.org/audacious-plugins-${version}.tar.bz2";
|
|
sha256 = "1z5p4ny0kzszaki4f1fgrvcr0q1j6i19847jhplc07nl1rvycdy6";
|
|
};
|
|
|
|
# `--enable-amidiplug' is to prevent configure from looking in /proc/asound.
|
|
configureFlags = "--enable-amidiplug --disable-oss";
|
|
|
|
buildInputs =
|
|
[ gettext pkgconfig glib gtk libmowgli libmcs libxml2 dbus_glib
|
|
libmad xlibs.libXcomposite libogg libvorbis flac alsaLib libcdio
|
|
libcddb ffmpeg
|
|
];
|
|
|
|
# Here we build bouth 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.
|
|
(
|
|
nativeBuildInputs="$out $nativeBuildInputs" # to find audacious
|
|
source $stdenv/setup
|
|
rm -rfv audacious-*
|
|
src=$pluginsSrc
|
|
genericBuild
|
|
)
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Audacious, a media player forked from the Beep Media Player, which was itself an XMMS fork";
|
|
homepage = http://audacious-media-player.org/;
|
|
maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|