* Added Audacious, a fork of beep-media-player (which doesn't seem to
work very well after the Glibc update), plus its dependencies. TODO: make an audacious-wrapper that lets Audacious find its plugins automatically. Currently you have to install audacious-plugins and symlink ~/.nix-profile/lib/audacious/* in ~/.local/share/audacious/Plugins. svn path=/nixpkgs/trunk/; revision=10927
This commit is contained in:
parent
25f81f6438
commit
f30f36104b
32
pkgs/applications/audio/audacious/player.nix
Normal file
32
pkgs/applications/audio/audacious/player.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, glib, gtk, libmowgli
|
||||||
|
, libglade, libmcs, gettext, xlibs, dbus_glib
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "audacious-1.4.6";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://distfiles.atheme.org/audacious-1.4.6.tbz2;
|
||||||
|
sha256 = "0n4za82xlh3nfvfk0hq81bmh0sx233gxq8xj68jzalmbijsnbs0l";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [pkgconfig libglade libmcs gettext dbus_glib];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [glib gtk libmowgli libmcs];
|
||||||
|
|
||||||
|
NIX_LDFLAGS = "-rpath ${xlibs.libX11}/lib";
|
||||||
|
|
||||||
|
# Otherwise we barf with "libgcc_s.so.1 must be installed for
|
||||||
|
# pthread_cancel to work" on exit, as it tries to find libgcc_s
|
||||||
|
# dynamically.
|
||||||
|
dontPatchELF = true;
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
ensureDir $out/lib
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Audacious, a media player forked from the Beep Media Player, which was itself an XMMS fork";
|
||||||
|
homepage = http://audacious-media-player.org/;
|
||||||
|
};
|
||||||
|
}
|
29
pkgs/applications/audio/audacious/plugins.nix
Normal file
29
pkgs/applications/audio/audacious/plugins.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, audacious, dbus_glib, gettext
|
||||||
|
, libmad, xlibs, alsaLib, taglib, libmpcdec, libogg, libvorbis
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "audacious-plugins-1.4.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://distfiles.atheme.org/audacious-plugins-1.4.5.tbz2;
|
||||||
|
sha256 = "145dn2x1rldwbaxnl19j7cw338fs9fwcn607r8gk01adfy3warxq";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pkgconfig audacious dbus_glib gettext libmad
|
||||||
|
xlibs.libXcomposite alsaLib taglib libmpcdec
|
||||||
|
libogg libvorbis
|
||||||
|
];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
makeFlagsArray=(pluginlibdir=$out/lib/audacious)
|
||||||
|
'';
|
||||||
|
|
||||||
|
NIX_LDFLAGS = "-L${audacious}/lib/audacious"; # needed because we override pluginlibdir
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Plugins for the Audacious media player";
|
||||||
|
homepage = http://audacious-media-player.org/;
|
||||||
|
};
|
||||||
|
}
|
17
pkgs/development/libraries/libmcs/default.nix
Normal file
17
pkgs/development/libraries/libmcs/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{stdenv, fetchurl, pkgconfig, libmowgli}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "libmcs-0.7.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://distfiles.atheme.org/libmcs-0.7.0.tgz;
|
||||||
|
sha256 = "11qjrxxgk0yvqm668dyaj54kgijcnkaid8dld8lf4br2glmz2jy5";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [pkgconfig libmowgli];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A library and set of userland tools which abstract the storage of configuration settings away from userland applications";
|
||||||
|
homepage = http://www.atheme.org/projects/mcs.shtml;
|
||||||
|
};
|
||||||
|
}
|
15
pkgs/development/libraries/libmowgli/default.nix
Normal file
15
pkgs/development/libraries/libmowgli/default.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "libmowgli-0.6.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://distfiles.atheme.org/libmowgli-0.6.1.tgz;
|
||||||
|
sha256 = "0bhxgyx6c913pyiib768qmsi059dnq1zj3k2nik9976hy5yd8m0l";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A development framework for C providing high performance and highly flexible algorithms";
|
||||||
|
homepage = http://www.atheme.org/projects/mowgli.shtml;
|
||||||
|
};
|
||||||
|
}
|
@ -1,9 +1,9 @@
|
|||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "libmpcdec-1.2.2";
|
name = "libmpcdec-1.2.6";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://files2.musepack.net/source/libmpcdec-1.2.2.tar.bz2;
|
url = http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2;
|
||||||
md5 = "f14e07285b9b102a806649074c1d779b";
|
md5 = "7f7a060e83b4278acf4b77d7a7b9d2c0";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2641,6 +2641,14 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libmcs = import ../development/libraries/libmcs {
|
||||||
|
inherit fetchurl stdenv pkgconfig libmowgli;
|
||||||
|
};
|
||||||
|
|
||||||
|
libmowgli = import ../development/libraries/libmowgli {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
libmpcdec = import ../development/libraries/libmpcdec {
|
libmpcdec = import ../development/libraries/libmpcdec {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
@ -2664,7 +2672,6 @@ rec {
|
|||||||
|
|
||||||
liboil = liboilFun null;
|
liboil = liboilFun null;
|
||||||
|
|
||||||
|
|
||||||
liboop = import ../development/libraries/liboop {
|
liboop = import ../development/libraries/liboop {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
@ -2788,7 +2795,7 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
#failed to build
|
# failed to build
|
||||||
mediastreamerFun = lib.sumArgs (selectVersion
|
mediastreamerFun = lib.sumArgs (selectVersion
|
||||||
../development/libraries/mediastreamer "2.2.0-cvs20080207") {
|
../development/libraries/mediastreamer "2.2.0-cvs20080207") {
|
||||||
inherit fetchurl stdenv automake libtool autoconf alsaLib pkgconfig speex
|
inherit fetchurl stdenv automake libtool autoconf alsaLib pkgconfig speex
|
||||||
@ -4564,6 +4571,17 @@ rec {
|
|||||||
libstdcpp = gcc33.gcc;
|
libstdcpp = gcc33.gcc;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
audacious = import ../applications/audio/audacious/player.nix {
|
||||||
|
inherit fetchurl stdenv pkgconfig libmowgli libmcs gettext xlibs dbus_glib;
|
||||||
|
inherit (gnome) libglade;
|
||||||
|
inherit (gtkLibs) glib gtk;
|
||||||
|
};
|
||||||
|
|
||||||
|
audacious_plugins = import ../applications/audio/audacious/plugins.nix {
|
||||||
|
inherit fetchurl stdenv pkgconfig audacious dbus_glib gettext
|
||||||
|
libmad xlibs alsaLib taglib libmpcdec libogg libvorbis;
|
||||||
|
};
|
||||||
|
|
||||||
audacity = import ../applications/audio/audacity {
|
audacity = import ../applications/audio/audacity {
|
||||||
inherit fetchurl stdenv libogg libvorbis libsndfile libmad
|
inherit fetchurl stdenv libogg libvorbis libsndfile libmad
|
||||||
pkgconfig gettext;
|
pkgconfig gettext;
|
||||||
|
@ -12,6 +12,8 @@ let
|
|||||||
aspell
|
aspell
|
||||||
aspellDicts
|
aspellDicts
|
||||||
aterm
|
aterm
|
||||||
|
audacious
|
||||||
|
audacious_plugins
|
||||||
autoconf
|
autoconf
|
||||||
automake19x
|
automake19x
|
||||||
bash
|
bash
|
||||||
@ -20,9 +22,6 @@ let
|
|||||||
binutils
|
binutils
|
||||||
bison23
|
bison23
|
||||||
bittorrent
|
bittorrent
|
||||||
bmp
|
|
||||||
bmp_plugin_musepack
|
|
||||||
bmp_plugin_wma
|
|
||||||
bsdiff
|
bsdiff
|
||||||
bzip2
|
bzip2
|
||||||
cabextract
|
cabextract
|
||||||
|
Loading…
x
Reference in New Issue
Block a user