depot/third_party/nixpkgs/pkgs/desktops/xfce/applications/xfmpc/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

39 lines
845 B
Nix

{ lib
, mkXfceDerivation
, vala
, libxfce4util
, libxfce4ui
, gtk3
, glib
, libmpd
}:
mkXfceDerivation rec {
category = "apps";
pname = "xfmpc";
# Last release is too old
version = "0.3.1-2024-05-29";
rev = "cf40dffec6e9b80abb1f1aa6d7dceef4790173dc";
sha256 = "sha256-moCWSLGBJuWM4/lRJi6D3w38iJeCntLo3Vl/eVfu7lw=";
nativeBuildInputs = [
vala
libxfce4util
# Needed both here and in buildInputs for cross compilation to work
libxfce4ui
];
buildInputs = [
gtk3
glib
libxfce4ui
libmpd
];
meta = with lib; {
description = "MPD client written in GTK";
homepage = "https://docs.xfce.org/apps/xfmpc/start";
changelog = "https://gitlab.xfce.org/apps/xfmpc/-/blob/${rev}/NEWS";
maintainers = with maintainers; [ doronbehar ] ++ teams.xfce.members;
mainProgram = "xfmpc";
};
}