mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
* Fix startup-notification.
svn path=/nixpkgs/branches/xorg-7.5/; revision=18087
This commit is contained in:
parent
19c6cba987
commit
7cec6e4f52
|
@ -123,8 +123,7 @@ rec {
|
|||
|
||||
# Freedesktop library
|
||||
startup_notification = import ./platform/startup-notification {
|
||||
inherit (pkgs) stdenv fetchurl pkgconfig;
|
||||
inherit (pkgs.xlibs) libX11 libxcb libICE xcbutil libSM;
|
||||
inherit (pkgs) stdenv fetchurl pkgconfig xlibs;
|
||||
};
|
||||
|
||||
# Required for nautilus
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, pkgconfig, libX11, libxcb, libICE, xcbutil, libSM}:
|
||||
{ stdenv, fetchurl, pkgconfig, xlibs }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "startup-notification-0.9";
|
||||
|
@ -6,5 +6,5 @@ stdenv.mkDerivation {
|
|||
url = mirror://gnome/sources/startup-notification/0.9/startup-notification-0.9.tar.bz2;
|
||||
sha256 = "03aqkgv8d29yx2vmv6bfdlxq3ahagrb7dbsvhd5d9acy6znimpk1";
|
||||
};
|
||||
buildInputs = [ pkgconfig libX11 libxcb libICE xcbutil libSM ];
|
||||
buildInputs = [ pkgconfig xlibs.xlibs xlibs.xcbutil ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue