62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, pkg-config
|
||
|
, fetchFromGitHub
|
||
|
, systemd
|
||
|
, file
|
||
|
, iniparser
|
||
|
, ffmpeg
|
||
|
, libnotify
|
||
|
, libmpdclient
|
||
|
, discount
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "mpd-notification";
|
||
|
version = "0.8.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "eworm-de";
|
||
|
repo = "mpd-notification";
|
||
|
rev = version;
|
||
|
hash = "sha256-lBvx2eYxFJUAxR1LrjWHZUeAo+WnQKmPYJVAJTeXqHY=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
iniparser
|
||
|
libnotify
|
||
|
file
|
||
|
ffmpeg
|
||
|
libmpdclient
|
||
|
discount
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
mkdir -p $out/bin
|
||
|
mv mpd-notification $out/bin
|
||
|
|
||
|
mkdir -p $out/lib/systemd/user
|
||
|
cp systemd/mpd-notification.service $out/lib/systemd/user
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace systemd/mpd-notification.service --replace /usr $out
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Notifications for mpd";
|
||
|
homepage = "https://github.com/eworm-de/mpd-notification";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ CaitlinDavitt ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|