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

28 lines
731 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mpd_clientlib }:
2013-09-23 15:41:04 +02:00
stdenv.mkDerivation rec {
name = "mpc-${version}";
version = "0.28";
2013-09-23 15:41:04 +02:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "mpc";
rev = "v${version}";
sha256 = "1g8i4q5xsqdhidyjpvj6hzbhxacv27cb47ndv9k68whd80c5f9n9";
2013-09-23 15:41:04 +02:00
};
buildInputs = [ mpd_clientlib ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
enableParallelBuilding = true;
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 = with maintainers; [ algorith ];
2015-07-19 17:52:01 +02:00
platforms = with platforms; linux ++ darwin;
2013-09-23 15:41:04 +02:00
};
2014-01-25 15:19:36 +01:00
}