1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/deepin/default.nix

23 lines
699 B
Nix
Raw Normal View History

2018-03-04 14:01:14 +00:00
{ pkgs, makeScope, libsForQt5 }:
let
2018-03-04 14:01:14 +00:00
packages = self: with self; {
dde-qt-dbus-factory = callPackage ./dde-qt-dbus-factory { };
deepin-gettext-tools = callPackage ./deepin-gettext-tools { };
deepin-gtk-theme = callPackage ./deepin-gtk-theme { };
deepin-icon-theme = callPackage ./deepin-icon-theme { };
deepin-terminal = callPackage ./deepin-terminal {
inherit (pkgs.gnome3) libgee vte;
wnck = pkgs.libwnck3;
};
2018-09-01 12:19:20 +01:00
dtkcore = callPackage ./dtkcore { };
2018-09-02 19:15:51 +01:00
dtkwidget = callPackage ./dtkwidget { };
qt5dxcb-plugin = callPackage ./qt5dxcb-plugin { };
2018-09-03 23:22:57 +01:00
qt5integration = callPackage ./qt5integration { };
};
2018-03-04 14:01:14 +00:00
in
makeScope libsForQt5.newScope packages