nixpkgs/pkgs/applications/audio/mpc/default.nix

28 lines
871 B
Nix
Raw Normal View History

2013-09-23 13:41:04 +00:00
{ stdenv, fetchurl, mpd_clientlib }:
stdenv.mkDerivation rec {
2015-06-10 17:03:10 +00:00
version = "0.27";
2013-09-23 13:41:04 +00: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";
2015-06-10 17:03:10 +00:00
sha256 = "0r10wsqxsi07gns6mfnicvpci0sbwwj4qa9iyr1ysrgadl5bx8j5";
2013-09-23 13:41:04 +00:00
};
buildInputs = [ mpd_clientlib ];
2013-09-23 13:41:04 +00:00
preConfigure =
''
2015-07-19 15:52:01 +00:00
export LIBMPDCLIENT_LIBS=${mpd_clientlib}/lib/libmpdclient.${if stdenv.isDarwin then mpd_clientlib.majorVersion + ".dylib" else "so." + mpd_clientlib.majorVersion + ".0." + mpd_clientlib.minorVersion}
2013-09-23 13:41:04 +00:00
export LIBMPDCLIENT_CFLAGS=${mpd_clientlib}
'';
2015-07-19 15:52:01 +00:00
meta = with stdenv.lib; {
2013-09-23 13:41:04 +00:00
description = "A minimalist command line interface to MPD";
homepage = http://www.musicpd.org/clients/mpc/;
2015-07-19 15:52:01 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.algorith ];
platforms = with platforms; linux ++ darwin;
2013-09-23 13:41:04 +00:00
};
2014-01-25 14:19:36 +00:00
}