Remove unused Perl dependency

This commit is contained in:
Eelco Dolstra 2022-05-26 14:49:17 +02:00
parent 1e67582d75
commit 5b27040203
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -135,11 +135,6 @@
})) }))
nlohmann_json nlohmann_json
]; ];
perlDeps =
[ perl
perlPackages.DBDSQLite
];
}; };
installScriptFor = systems: installScriptFor = systems:
@ -673,7 +668,7 @@
outputs = [ "out" "dev" "doc" ]; outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = nativeBuildDeps; nativeBuildInputs = nativeBuildDeps;
buildInputs = buildDeps ++ propagatedDeps ++ awsDeps ++ perlDeps; buildInputs = buildDeps ++ propagatedDeps ++ awsDeps;
inherit configureFlags; inherit configureFlags;