plank: cleanup
* placeholder * vala should be native * no aliases * drop gobject-introspection
This commit is contained in:
parent
2b377504e7
commit
d269620c62
@ -1,36 +1,49 @@
|
|||||||
{ stdenv, fetchurl, vala, atk, cairo, glib, gnome3, gtk3, libwnck3
|
{ stdenv, fetchurl, vala, atk, cairo, glib, gnome3, gtk3, libwnck3
|
||||||
, libX11, libXfixes, libXi, pango, intltool, pkgconfig, libxml2
|
, libX11, libXfixes, libXi, pango, intltool, pkgconfig, libxml2
|
||||||
, bamf, gdk_pixbuf, libdbusmenu-gtk3, file, gnome-menus
|
, bamf, gdk_pixbuf, libdbusmenu-gtk3, file, gnome-menus, libgee
|
||||||
, wrapGAppsHook, autoreconfHook, gobject-introspection }:
|
, wrapGAppsHook, autoreconfHook, pantheon }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "plank";
|
pname = "plank";
|
||||||
version = "0.11.4";
|
version = "0.11.4";
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://launchpad.net/${pname}/1.0/${version}/+download/${name}.tar.xz";
|
url = "https://launchpad.net/${pname}/1.0/${version}/+download/${pname}-${version}.tar.xz";
|
||||||
sha256 = "1f41i45xpqhjxql9nl4a1sz30s0j46aqdhbwbvgrawz6himcvdc8";
|
sha256 = "1f41i45xpqhjxql9nl4a1sz30s0j46aqdhbwbvgrawz6himcvdc8";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig
|
autoreconfHook
|
||||||
|
gnome3.gnome-common
|
||||||
intltool
|
intltool
|
||||||
libxml2 # xmllint
|
libxml2 # xmllint
|
||||||
|
pkgconfig
|
||||||
|
vala
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
gobject-introspection
|
|
||||||
autoreconfHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ vala atk cairo glib gnome-menus
|
buildInputs = [
|
||||||
gtk3 gnome3.libgee libwnck3 libX11 libXfixes
|
atk
|
||||||
libXi pango gnome3.gnome-common bamf gdk_pixbuf
|
bamf
|
||||||
libdbusmenu-gtk3 gnome3.dconf ];
|
cairo
|
||||||
|
gdk_pixbuf
|
||||||
|
glib
|
||||||
|
gnome-menus
|
||||||
|
gnome3.dconf
|
||||||
|
gtk3
|
||||||
|
libX11
|
||||||
|
libXfixes
|
||||||
|
libXi
|
||||||
|
libdbusmenu-gtk3
|
||||||
|
libgee
|
||||||
|
libwnck3
|
||||||
|
pango
|
||||||
|
];
|
||||||
|
|
||||||
# fix paths
|
# fix paths
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/"
|
"INTROSPECTION_GIRDIR=${placeholder ''out''}/share/gir-1.0/"
|
||||||
"INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"
|
"INTROSPECTION_TYPELIBDIR=${placeholder ''out''}/lib/girepository-1.0"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Make plank's application launcher hidden in Pantheon
|
# Make plank's application launcher hidden in Pantheon
|
||||||
@ -46,6 +59,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = https://launchpad.net/plank;
|
homepage = https://launchpad.net/plank;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ davidak ];
|
maintainers = with maintainers; [ davidak ] ++ pantheon.maintainers;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user