nixpkgs/pkgs/desktops/deepin/default.nix

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

19 lines
611 B
Nix
Raw Normal View History

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