mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
12 lines
469 B
Nix
12 lines
469 B
Nix
self: {
|
|
buildBatExtrasPkg = self.callPackage ./buildBatExtrasPkg.nix { };
|
|
|
|
core = self.callPackage ./modules/core.nix { };
|
|
batdiff = self.callPackage ./modules/batdiff.nix { };
|
|
batgrep = self.callPackage ./modules/batgrep.nix { };
|
|
batman = self.callPackage ./modules/batman.nix { };
|
|
batpipe = self.callPackage ./modules/batpipe.nix { };
|
|
batwatch = self.callPackage ./modules/batwatch.nix { };
|
|
prettybat = self.callPackage ./modules/prettybat.nix { };
|
|
}
|