gjay: mpd_clientlib -> libmpdclient

This commit is contained in:
AndersonTorres 2021-02-12 08:31:12 -03:00
parent ea01de98f6
commit d975831696

View file

@ -1,24 +1,41 @@
{ lib, stdenv, fetchurl, pkg-config, mpd_clientlib, dbus-glib, audacious, gtk2, gsl { lib
, libaudclient }: , stdenv
, fetchurl
, pkg-config
, dbus-glib
, audacious
, gtk2
, gsl
, libaudclient
, libmpdclient
}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "gjay-0.3.2"; pname = "gjay";
version = "0.3.2";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/project/gjay/gjay-0.3.2.tar.gz"; url = "mirror://sourceforge/project/gjay/${pname}-${version}.tar.gz";
sha256 = "1a1vv4r0vnxjdyl0jyv7gga3zfd5azxlwjm1l6hjrf71lb228zn8"; sha256 = "1a1vv4r0vnxjdyl0jyv7gga3zfd5azxlwjm1l6hjrf71lb228zn8";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ mpd_clientlib dbus-glib audacious gtk2 gsl libaudclient ]; buildInputs = [
libmpdclient
dbus-glib
audacious
gtk2
gsl
libaudclient
];
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];
meta = with lib; { meta = with lib; {
description = "Generates playlists such that each song sounds good following the previous song"; description = "Generates playlists such that each song sounds good following the previous song";
homepage = "http://gjay.sourceforge.net/"; homepage = "http://gjay.sourceforge.net/";
license = licenses.gpl2; license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux; platforms = with platforms; linux;
}; };