2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2019-08-30 18:13:57 +02:00
|
|
|
, fetchurl
|
|
|
|
, vala
|
|
|
|
, atk
|
|
|
|
, cairo
|
2019-12-01 00:11:47 +01:00
|
|
|
, dconf
|
2019-08-30 18:13:57 +02:00
|
|
|
, glib
|
2021-05-07 23:18:14 +02:00
|
|
|
, gnome
|
2019-08-30 18:13:57 +02:00
|
|
|
, gtk3
|
2021-06-23 20:22:04 +02:00
|
|
|
, libwnck
|
2019-08-30 18:13:57 +02:00
|
|
|
, libX11
|
|
|
|
, libXfixes
|
|
|
|
, libXi
|
|
|
|
, pango
|
|
|
|
, gettext
|
2021-01-17 03:09:27 +01:00
|
|
|
, pkg-config
|
2019-08-30 18:13:57 +02:00
|
|
|
, libxml2
|
|
|
|
, bamf
|
|
|
|
, gdk-pixbuf
|
|
|
|
, libdbusmenu-gtk3
|
|
|
|
, file
|
|
|
|
, gnome-menus
|
|
|
|
, libgee
|
|
|
|
, wrapGAppsHook
|
|
|
|
, autoreconfHook
|
|
|
|
, pantheon
|
|
|
|
}:
|
2018-05-08 01:36:59 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "plank";
|
2019-08-30 18:13:57 +02:00
|
|
|
version = "0.11.89";
|
2018-05-08 01:36:59 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-08 23:24:01 +02:00
|
|
|
url = "https://launchpad.net/${pname}/1.0/${version}/+download/${pname}-${version}.tar.xz";
|
2019-08-30 18:13:57 +02:00
|
|
|
sha256 = "17cxlmy7n13jp1v8i4abxyx9hylzb39andhz3mk41ggzmrpa8qm6";
|
2018-05-08 01:36:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2019-04-08 23:24:01 +02:00
|
|
|
autoreconfHook
|
2019-08-30 18:13:57 +02:00
|
|
|
gettext
|
2021-05-07 23:18:14 +02:00
|
|
|
gnome.gnome-common
|
2018-05-08 01:36:59 +02:00
|
|
|
libxml2 # xmllint
|
2021-01-17 03:09:27 +01:00
|
|
|
pkg-config
|
2019-04-08 23:24:01 +02:00
|
|
|
vala
|
2018-05-08 01:36:59 +02:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
2019-04-08 23:24:01 +02:00
|
|
|
buildInputs = [
|
|
|
|
atk
|
|
|
|
bamf
|
|
|
|
cairo
|
2019-05-22 13:03:39 +02:00
|
|
|
gdk-pixbuf
|
2019-04-08 23:24:01 +02:00
|
|
|
glib
|
|
|
|
gnome-menus
|
2019-12-01 00:11:47 +01:00
|
|
|
dconf
|
2019-04-08 23:24:01 +02:00
|
|
|
gtk3
|
|
|
|
libX11
|
|
|
|
libXfixes
|
|
|
|
libXi
|
|
|
|
libdbusmenu-gtk3
|
|
|
|
libgee
|
2021-06-23 20:22:04 +02:00
|
|
|
libwnck
|
2019-04-08 23:24:01 +02:00
|
|
|
pango
|
|
|
|
];
|
2018-05-08 01:36:59 +02:00
|
|
|
|
|
|
|
# fix paths
|
|
|
|
makeFlags = [
|
2019-09-03 18:38:57 +02:00
|
|
|
"INTROSPECTION_GIRDIR=${placeholder "out"}/share/gir-1.0/"
|
|
|
|
"INTROSPECTION_TYPELIBDIR=${placeholder "out"}/lib/girepository-1.0"
|
2018-05-08 01:36:59 +02:00
|
|
|
];
|
|
|
|
|
2018-12-09 16:45:29 +01:00
|
|
|
# Make plank's application launcher hidden in Pantheon
|
2019-08-30 18:13:57 +02:00
|
|
|
patches = [
|
|
|
|
./hide-in-pantheon.patch
|
|
|
|
];
|
2018-12-09 16:45:29 +01:00
|
|
|
|
2018-05-08 01:36:59 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace ./configure \
|
|
|
|
--replace "/usr/bin/file" "${file}/bin/file"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-05-08 01:36:59 +02:00
|
|
|
description = "Elegant, simple, clean dock";
|
2019-08-30 18:13:57 +02:00
|
|
|
homepage = "https://launchpad.net/plank";
|
2018-05-08 01:36:59 +02:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2019-04-08 23:24:01 +02:00
|
|
|
maintainers = with maintainers; [ davidak ] ++ pantheon.maintainers;
|
2018-05-08 01:36:59 +02:00
|
|
|
};
|
|
|
|
}
|