3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-windowck-plugin/default.nix
José Romildo Malaquias 66fc6d175b xfce.xfce4-windowck-plugin: 0.4.6 -> 0.4.10
- Switch to fork from invidian, as the fork from cedl38 is unmaintained
- Update to version 0.4.10
2021-03-31 19:10:51 -03:00

51 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, intltool, python3, imagemagick, libwnck3, libxfce4ui, xfce4-panel, xfconf, xfce4-dev-tools, xfce }:
stdenv.mkDerivation rec {
pname = "xfce4-windowck-plugin";
version = "0.4.10";
src = fetchFromGitHub {
owner = "invidian";
repo = pname;
rev = "v${version}";
sha256 = "0l066a174v2c7ly125v9x1fgbg5bnpwdwnjh69v9kp4plp791q4n";
};
nativeBuildInputs = [
pkg-config
intltool
];
buildInputs = [
python3
imagemagick
libwnck3
libxfce4ui
xfce4-panel
xfconf
xfce4-dev-tools
];
preConfigure = ''
./autogen.sh
patchShebangs .
'';
enableParallelBuilding = true;
passthru.updateScript = xfce.updateScript {
inherit pname version;
attrPath = "xfce.${pname}";
versionLister = xfce.gitLister src.meta.homepage;
rev-prefix = "v";
};
meta = with lib; {
homepage = "https://goodies.xfce.org/projects/panel-plugins/xfce4-windowck-plugin";
description = "Xfce plugins which allows to put the maximized window title and buttons on the panel";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ maintainers.volth ];
};
}