nixpkgs/pkgs/applications/misc/plank/default.nix

90 lines
1.5 KiB
Nix
Raw Normal View History

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