libunity: do not use alias in dependencies (#44617)

Fixes broken nixpkgs.tarball hydra build.
See #44299
This commit is contained in:
Thomas Kerber 2018-08-07 16:14:33 +01:00 committed by xeji
parent f28850d40a
commit 9e727bfc72

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool
, glib, vala, dee, gobjectIntrospection, libdbusmenu-glib
, glib, vala, dee, gobjectIntrospection, libdbusmenu
, gtk3, intltool, gnome-common, python3, icu }:
stdenv.mkDerivation rec {
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
gtk3
];
propagatedBuildInputs = [ dee libdbusmenu-glib ];
propagatedBuildInputs = [ dee libdbusmenu ];
preConfigure = "NOCONFIGURE=1 ./autogen.sh";