mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
12 lines
218 B
Nix
12 lines
218 B
Nix
{ lib, pkgs, libsForQt5 }:
|
|
let
|
|
packages = self:
|
|
let
|
|
inherit (self) callPackage;
|
|
in {
|
|
#### LIBRARIES
|
|
dtkcommon = callPackage ./library/dtkcommon { };
|
|
};
|
|
in
|
|
lib.makeScope libsForQt5.newScope packages
|