2024-02-07 01:22:34 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, libX11
|
|
|
|
, libXmu
|
|
|
|
, libXpm
|
|
|
|
, gtk2
|
|
|
|
, libpng
|
|
|
|
, libjpeg
|
|
|
|
, libtiff
|
|
|
|
, librsvg
|
|
|
|
, gdk-pixbuf
|
|
|
|
, gdk-pixbuf-xlib
|
|
|
|
, pypy2
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fbpanel";
|
2024-02-07 01:22:34 +00:00
|
|
|
version = "7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aanatoly";
|
|
|
|
repo = "fbpanel";
|
|
|
|
rev = "478754b687e2b48b111507ea22e8e2a001be5199";
|
|
|
|
hash = "sha256-+KcVcrh1aV6kjLGyiDnRHXSzJfelXWrhJS0DitG4yPA=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2024-02-07 01:22:34 +00:00
|
|
|
nativeBuildInputs = [ pkg-config pypy2 ];
|
|
|
|
buildInputs = [
|
|
|
|
libX11
|
|
|
|
libXmu
|
|
|
|
libXpm
|
|
|
|
gtk2
|
|
|
|
libpng
|
|
|
|
libjpeg
|
|
|
|
libtiff
|
|
|
|
librsvg
|
|
|
|
gdk-pixbuf
|
|
|
|
gdk-pixbuf-xlib.dev
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-02-07 01:22:34 +00:00
|
|
|
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
|
2020-10-07 09:15:18 +00:00
|
|
|
'';
|
|
|
|
|
2024-02-07 01:22:34 +00:00
|
|
|
makeFlags = ["V=1"];
|
|
|
|
NIX_CFLAGS_COMPILE = ["-Wno-error" "-I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A stand-alone panel";
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.mit;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "fbpanel";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|