1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/audio/mpc/default.nix

28 lines
798 B
Nix
Raw Normal View History

2013-09-23 14:41:04 +01:00
{ stdenv, fetchurl, mpd_clientlib }:
stdenv.mkDerivation rec {
2014-01-25 14:19:36 +00:00
version = "0.25";
2013-09-23 14:41:04 +01:00
name = "mpc-${version}";
src = fetchurl {
2014-01-25 14:19:36 +00:00
url = "http://www.musicpd.org/download/mpc/0/${name}.tar.xz";
sha256 = "095gmik5vrnab5a1g92qiznn48w7499fr0gldp3s6xd26kvs9kvh";
2013-09-23 14:41:04 +01:00
};
buildInputs = [ mpd_clientlib ];
preConfigure =
''
export LIBMPDCLIENT_LIBS=${mpd_clientlib}/lib/libmpdclient.so.${mpd_clientlib.majorVersion}.0.${mpd_clientlib.minorVersion}
2013-09-23 14:41:04 +01:00
export LIBMPDCLIENT_CFLAGS=${mpd_clientlib}
'';
meta = {
description = "A minimalist command line interface to MPD";
homepage = http://www.musicpd.org/clients/mpc/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.algorith ];
2013-09-23 14:41:04 +01:00
platforms = stdenv.lib.platforms.linux;
};
2014-01-25 14:19:36 +00:00
}