mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
plank: init at 0.11.4
This commit is contained in:
parent
4a30fc2522
commit
296e7717e0
47
pkgs/applications/misc/plank/default.nix
Normal file
47
pkgs/applications/misc/plank/default.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{ stdenv, fetchurl, vala, atk, cairo, glib, gnome3, gtk3, libwnck3
|
||||
, libX11, libXfixes, libXi, pango, intltool, pkgconfig, libxml2
|
||||
, bamf, gdk_pixbuf, libdbusmenu-gtk3, file
|
||||
, wrapGAppsHook, gobjectIntrospection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "plank";
|
||||
version = "0.11.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://launchpad.net/${pname}/1.0/${version}/+download/${name}.tar.xz";
|
||||
sha256 = "1f41i45xpqhjxql9nl4a1sz30s0j46aqdhbwbvgrawz6himcvdc8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
intltool
|
||||
libxml2 # xmllint
|
||||
wrapGAppsHook
|
||||
gobjectIntrospection
|
||||
];
|
||||
|
||||
buildInputs = [ vala atk cairo glib gnome3.gnome-menus
|
||||
gtk3 gnome3.libgee libwnck3 libX11 libXfixes
|
||||
libXi pango gnome3.gnome-common bamf gdk_pixbuf
|
||||
libdbusmenu-gtk3 gnome3.dconf ];
|
||||
|
||||
# fix paths
|
||||
makeFlags = [
|
||||
"INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/"
|
||||
"INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"
|
||||
];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -17088,6 +17088,8 @@ with pkgs;
|
||||
|
||||
pijul = callPackage ../applications/version-management/pijul {};
|
||||
|
||||
plank = callPackage ../applications/misc/plank { };
|
||||
|
||||
planner = callPackage ../applications/office/planner { };
|
||||
|
||||
playonlinux = callPackage ../applications/misc/playonlinux {
|
||||
|
Loading…
Reference in New Issue
Block a user