1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
nixpkgs/pkgs/desktops/deepin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
731 B
Nix
Raw Normal View History

2023-01-07 07:51:54 +00:00
{ lib, pkgs, libsForQt5 }:
let
packages = self:
let
inherit (self) callPackage;
in {
2023-01-07 08:19:55 +00:00
#### LIBRARIES
dtkcommon = callPackage ./library/dtkcommon { };
2023-01-07 08:27:24 +00:00
dtkcore = callPackage ./library/dtkcore { };
2023-01-07 08:34:02 +00:00
dtkgui = callPackage ./library/dtkgui { };
2023-01-07 08:36:30 +00:00
dtkwidget = callPackage ./library/dtkwidget { };
2023-01-07 08:41:14 +00:00
qt5platform-plugins = callPackage ./library/qt5platform-plugins { };
2023-01-07 08:46:20 +00:00
qt5integration = callPackage ./library/qt5integration { };
2023-01-07 09:10:01 +00:00
dde-qt-dbus-factory = callPackage ./library/dde-qt-dbus-factory { };
2023-01-07 08:57:40 +00:00
disomaster = callPackage ./library/disomaster { };
2023-01-07 08:59:32 +00:00
docparser = callPackage ./library/docparser { };
2023-01-07 09:13:35 +00:00
gio-qt = callPackage ./library/gio-qt { };
2023-01-07 07:51:54 +00:00
};
in
lib.makeScope libsForQt5.newScope packages