3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/mpc/default.nix

28 lines
732 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mpd_clientlib }:
2013-09-23 14:41:04 +01:00
stdenv.mkDerivation rec {
name = "mpc-${version}";
version = "0.28";
2013-09-23 14:41:04 +01:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "mpc";
rev = "v${version}";
sha256 = "1g8i4q5xsqdhidyjpvj6hzbhxacv27cb47ndv9k68whd80c5f9n9";
2013-09-23 14:41:04 +01:00
};
buildInputs = [ mpd_clientlib ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
enableParallelBuilding = true;
2015-07-19 16:52:01 +01:00
meta = with stdenv.lib; {
2013-09-23 14:41:04 +01:00
description = "A minimalist command line interface to MPD";
homepage = https://www.musicpd.org/clients/mpc/;
2015-07-19 16:52:01 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ algorith ];
2015-07-19 16:52:01 +01:00
platforms = with platforms; linux ++ darwin;
2013-09-23 14:41:04 +01:00
};
2014-01-25 14:19:36 +00:00
}