ashuffle: mpd_clientlib -> libmpdclient
This commit is contained in:
parent
12a2c647bc
commit
ea01de98f6
|
@ -1,4 +1,12 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, mpd_clientlib, meson, ninja }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, pkg-config
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, libmpdclient
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ashuffle";
|
pname = "ashuffle";
|
||||||
|
@ -14,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
dontUseCmakeConfigure = true;
|
dontUseCmakeConfigure = true;
|
||||||
nativeBuildInputs = [ cmake pkg-config meson ninja ];
|
nativeBuildInputs = [ cmake pkg-config meson ninja ];
|
||||||
buildInputs = [ mpd_clientlib ];
|
buildInputs = [ libmpdclient ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/joshkunz/ashuffle";
|
homepage = "https://github.com/joshkunz/ashuffle";
|
||||||
|
|
Loading…
Reference in New Issue