nixpkgs/pkgs/desktops/deepin/default.nix

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

18 lines
508 B
Nix
Raw Normal View History

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