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

65 lines
1.5 KiB
Nix
Raw Normal View History

2018-05-07 23:36:59 +00:00
{ stdenv, fetchurl, vala, atk, cairo, glib, gnome3, gtk3, libwnck3
, libX11, libXfixes, libXi, pango, intltool, pkgconfig, 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";
version = "0.11.4";
src = fetchurl {
url = "https://launchpad.net/${pname}/1.0/${version}/+download/${pname}-${version}.tar.xz";
2018-05-07 23:36:59 +00:00
sha256 = "1f41i45xpqhjxql9nl4a1sz30s0j46aqdhbwbvgrawz6himcvdc8";
};
nativeBuildInputs = [
autoreconfHook
gnome3.gnome-common
2018-05-07 23:36:59 +00:00
intltool
libxml2 # xmllint
pkgconfig
vala
2018-05-07 23:36:59 +00:00
wrapGAppsHook
];
buildInputs = [
atk
bamf
cairo
gdk_pixbuf
glib
gnome-menus
gnome3.dconf
gtk3
libX11
libXfixes
libXi
libdbusmenu-gtk3
libgee
libwnck3
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
patches = [ ./hide-in-pantheon.patch ];
2018-05-07 23:36:59 +00:00
postPatch = ''
substituteInPlace ./configure \
--replace "/usr/bin/file" "${file}/bin/file"
'';
meta = with stdenv.lib; {
description = "Elegant, simple, clean dock";
homepage = https://launchpad.net/plank;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ davidak ] ++ pantheon.maintainers;
2018-05-07 23:36:59 +00:00
};
}