diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-05-26 14:49:17 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-05-26 14:49:17 +0200 |
commit | 5b270402032151d478d5c5ecc3d99c12bcab0476 (patch) | |
tree | 9859d9fa4b635efe14b20f8d975950d72b61b0c4 /flake.nix | |
parent | 1e67582d7597565974b484623e2ce5448d73bc16 (diff) |
Remove unused Perl dependency
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -135,11 +135,6 @@ })) nlohmann_json ]; - - perlDeps = - [ perl - perlPackages.DBDSQLite - ]; }; installScriptFor = systems: @@ -673,7 +668,7 @@ outputs = [ "out" "dev" "doc" ]; nativeBuildInputs = nativeBuildDeps; - buildInputs = buildDeps ++ propagatedDeps ++ awsDeps ++ perlDeps; + buildInputs = buildDeps ++ propagatedDeps ++ awsDeps; inherit configureFlags; |