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

28 lines
871 B
Nix
Raw Normal View History

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