about summary refs log tree commit diff stats
path: root/flake.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-14 20:59:32 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-14 21:02:12 +0200
commitbaffdf885aab7490e1024a73f8ee3ce35817c586 (patch)
treec2775b605b27cf9293dfdd2e2b933f5c3def26d8 /flake.nix
parentbuild(scripts/mkdb.sh): Update to use new sql schema path (diff)
downloadyt-baffdf885aab7490e1024a73f8ee3ce35817c586.tar.gz
yt-baffdf885aab7490e1024a73f8ee3ce35817c586.zip
test(treewide): Fix, so they compile and ignore
The tests are just not in an ideal state right now. Running them via
`cargo test` still works, but the `yt_dlp` test simply seem to deadlock?
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index bb1802d..3bf5deb 100644
--- a/flake.nix
+++ b/flake.nix
@@ -41,6 +41,9 @@
 
     nativeBuildInputs = with pkgs; [
       llvmPackages_latest.clang-unwrapped.lib
+
+      # Needed for the tests in `libmpv2`
+      SDL2
     ];
 
     yt = pkgs.callPackage ./package/package.nix {inherit blake3;};