* 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:
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.mkDerivation {
|
||||
name = "libmpcdec-1.2.2";
|
||||
name = "libmpcdec-1.2.6";
|
||||
src = fetchurl {
|
||||
url = http://files2.musepack.net/source/libmpcdec-1.2.2.tar.bz2;
|
||||
md5 = "f14e07285b9b102a806649074c1d779b";
|
||||
url = http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2;
|
||||
md5 = "7f7a060e83b4278acf4b77d7a7b9d2c0";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user