mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 21:04:30 +00:00
15 lines
251 B
Nix
15 lines
251 B
Nix
{ lib
|
|
, pkgs
|
|
, libsForQt5
|
|
}:
|
|
|
|
let
|
|
packages = self: let
|
|
inherit (self) callPackage;
|
|
in {
|
|
#### Development tools / libraries
|
|
cmake-extras = callPackage ./development/cmake-extras { };
|
|
};
|
|
in
|
|
lib.makeScope libsForQt5.newScope packages
|