nixpkgs/pkgs/servers/mpd/libmpdclient.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
702 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, fixDarwinDylibNames
}:
stdenv.mkDerivation rec {
pname = "libmpdclient";
2021-12-10 03:53:53 +00:00
version = "2.20";
2013-09-23 13:41:04 +00:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = pname;
rev = "v${version}";
2021-12-10 03:53:53 +00:00
sha256 = "sha256-qEgdwG7ygVblIa3uRf1tddxHg7T1yvY17nbhZ7NRNvg=";
};
nativeBuildInputs = [ meson ninja ]
2021-01-15 07:07:56 +00:00
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
2013-09-23 13:41:04 +00:00
meta = with lib; {
description = "Client library for MPD (music player daemon)";
homepage = "https://www.musicpd.org/libs/libmpdclient/";
license = licenses.bsd2;
maintainers = with maintainers; [ ehmry AndersonTorres ];
2015-04-17 14:38:13 +00:00
platforms = platforms.unix;
};
}