mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
9fc5e7e473
Ran the same script as #78265. Additionally, manually replaced `http://goodies.xfce.org` with https.
28 lines
775 B
Nix
28 lines
775 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui,
|
|
xfconf, gtk2, exo }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
p_name = "xfce4-mpc-plugin";
|
|
ver_maj = "0.4";
|
|
ver_min = "5";
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "1kvgq1pq7cykqdc3227dq0izad093ppfw3nfsrcp9i8mi6i5f7z7";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel
|
|
xfconf gtk2 exo ];
|
|
|
|
meta = {
|
|
homepage = "https://goodies.xfce.org/projects/panel-plugins/${p_name}";
|
|
description = "MPD plugin for Xfce panel";
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
broken = true;
|
|
};
|
|
}
|