28 lines
780 B
Nix
Executable file
28 lines
780 B
Nix
Executable file
{ stdenv, fetchurl, mpd_clientlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.25";
|
|
name = "mpc-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.musicpd.org/download/mpc/0/${name}.tar.xz";
|
|
sha256 = "095gmik5vrnab5a1g92qiznn48w7499fr0gldp3s6xd26kvs9kvh";
|
|
};
|
|
|
|
buildInputs = [ mpd_clientlib ];
|
|
|
|
preConfigure =
|
|
''
|
|
export LIBMPDCLIENT_LIBS=${mpd_clientlib}/lib/libmpdclient.so.${mpd_clientlib.majorVersion}.0.${mpd_clientlib.minorVersion}
|
|
export LIBMPDCLIENT_CFLAGS=${mpd_clientlib}
|
|
'';
|
|
|
|
meta = {
|
|
description = "A minimalist command line interface to MPD";
|
|
homepage = http://www.musicpd.org/clients/mpc/;
|
|
license = "GPL2";
|
|
maintainers = [ stdenv.lib.maintainers.algorith ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|