Skip to content

Commit

Permalink
fbpanel: 6.1 -> 7.0
Browse files Browse the repository at this point in the history
Fixes: #176966
  • Loading branch information
7c6f434c committed Feb 2, 2024
1 parent edb1e29 commit ccdd15c
Showing 1 changed file with 40 additions and 24 deletions.
64 changes: 40 additions & 24 deletions pkgs/applications/window-managers/fbpanel/default.nix
Original file line number Diff line number Diff line change
@@ -1,30 +1,51 @@
{ lib, stdenv, fetchurl, pkg-config
, libX11, libXmu, libXpm, gtk2, libpng, libjpeg, libtiff, librsvg, gdk-pixbuf, gdk-pixbuf-xlib
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, libX11
, libXmu
, libXpm
, gtk2
, libpng
, libjpeg
, libtiff
, librsvg
, gdk-pixbuf
, gdk-pixbuf-xlib
, pypy2
}:

stdenv.mkDerivation rec {
pname = "fbpanel";
version = "6.1";
src = fetchurl {
url = "mirror://sourceforge/fbpanel/${pname}-${version}.tbz2";
sha256 = "e14542cc81ea06e64dd4708546f5fd3f5e01884c3e4617885c7ef22af8cf3965";
version = "7.0";
src = fetchFromGitHub {
owner = "aanatoly";
repo = "fbpanel";
rev = "478754b687e2b48b111507ea22e8e2a001be5199";
hash = "sha256-+KcVcrh1aV6kjLGyiDnRHXSzJfelXWrhJS0DitG4yPA=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs =
[ libX11 libXmu libXpm gtk2 libpng libjpeg libtiff librsvg gdk-pixbuf gdk-pixbuf-xlib.dev ];
nativeBuildInputs = [ pkg-config pypy2 ];
buildInputs = [
libX11
libXmu
libXpm
gtk2
libpng
libjpeg
libtiff
librsvg
gdk-pixbuf
gdk-pixbuf-xlib.dev
];

preConfigure = "patchShebangs .";

postConfigure = ''
substituteInPlace config.mk \
--replace "CFLAGSX =" "CFLAGSX = -I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"
preConfigure = ''
sed -re '1i#!${pypy2}/bin/pypy' -i configure .config/*.py
sed -re 's/\<out\>/outputredirect/g' -i .config/rules.mk
sed -i 's/struct\ \_plugin_instance \*stam\;//' panel/plugin.h
'';

# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: plugin.o:(.bss+0x0): multiple definition of `stam'; panel.o:(.bss+0x20): first defined here
env.NIX_CFLAGS_COMPILE = "-fcommon";
NIX_LDFLAGS="-lX11";
makeFlags = ["V=1"];
NIX_CFLAGS_COMPILE = ["-Wno-error" "-I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"];

meta = with lib; {
description = "A stand-alone panel";
Expand All @@ -34,9 +55,4 @@ stdenv.mkDerivation rec {
mainProgram = "fbpanel";
};

passthru = {
updateInfo = {
downloadPage = "fbpanel.sourceforge.net";
};
};
}

0 comments on commit ccdd15c

Please sign in to comment.