mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
9ca9bd1a81
Fix compilation under darwin and add the formats plugin to support ini, ical and others.
8 lines
306 B
Nix
8 lines
306 B
Nix
{ lib, newScope, IOKit, CoreFoundation, Foundation, Security }:
|
|
|
|
lib.makeScope newScope (self: with self; {
|
|
gstat = callPackage ./gstat.nix { inherit Security; };
|
|
formats = callPackage ./formats.nix { inherit IOKit Foundation; };
|
|
query = callPackage ./query.nix { inherit IOKit CoreFoundation; };
|
|
})
|