deepin: remove the temporary go_1_11 assignment to go

This commit is contained in:
Wael M. Nasreddine 2019-03-05 17:23:11 -08:00
parent 2e86ada823
commit 3a6ba8959e
No known key found for this signature in database
GPG key ID: FD437548E0BF0F5F
2 changed files with 4 additions and 10 deletions

View file

@ -1,19 +1,13 @@
{ pkgs, makeScope, libsForQt5, go_1_11 }:
{ pkgs, makeScope, libsForQt5 }:
let
packages = self: with self; {
updateScript = callPackage ./update.nix { };
dbus-factory = callPackage ./dbus-factory { };
dde-api = callPackage ./dde-api {
# XXX: the build is finding references to Go when compiled with go v1.12
go = go_1_11;
};
dde-api = callPackage ./dde-api { };
dde-calendar = callPackage ./dde-calendar { };
dde-daemon = callPackage ./dde-daemon {
# XXX: the build is finding references to Go when compiled with go v1.12
go = go_1_11;
};
dde-daemon = callPackage ./dde-daemon { };
dde-qt-dbus-factory = callPackage ./dde-qt-dbus-factory { };
dde-session-ui = callPackage ./dde-session-ui { };
deepin-desktop-base = callPackage ./deepin-desktop-base { };

View file

@ -21313,7 +21313,7 @@ in
clearlooks-phenix = callPackage ../misc/themes/clearlooks-phenix { };
deepin = recurseIntoAttrs (import ../desktops/deepin {
inherit pkgs libsForQt5 go_1_11;
inherit pkgs libsForQt5;
inherit (lib) makeScope;
});