summaryrefslogtreecommitdiff
path: root/doctrine/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'doctrine/default.nix')
-rw-r--r--doctrine/default.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/doctrine/default.nix b/doctrine/default.nix
deleted file mode 100644
index 0d50d49..0000000
--- a/doctrine/default.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- lib ? pkgs.lib,
- pkgs,
- prefix ? "trivium",
- namespace ? null,
-}: let
- doctrine =
- {
- lib = import ./lib {inherit lib pkgs doctrine;};
- inherit namespace prefix;
- }
- // lib.optionalAttrs (pkgs != null) {
- inherit pkgs;
- };
-in
- doctrine