Skip to content

Commit

Permalink
nix: add xxhash as optional dep
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Dec 28, 2024
1 parent db0ab91 commit 431d547
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packaging/nix/umu-launcher.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ python3Packages.buildPythonPackage {
pkgs.python3Packages.filelock
pkgs.python3Packages.urllib3
] ++ lib.optional truststore pkgs.python3Packages.truststore
++ lib.optional cbor2 pkgs.python3Packages.cbor2;
++ lib.optional cbor2 pkgs.python3Packages.cbor2
++ lib.optional xxhash pkgs.python3Packages.xxhash;
makeFlags = [ "PYTHON_INTERPRETER=${pyth1}/bin/python" "SHELL_INTERPRETER=/run/current-system/sw/bin/bash" "DESTDIR=${placeholder "out"}" ];
dontUseMesonConfigure = true;
dontUseNinjaBuild = true;
Expand Down

0 comments on commit 431d547

Please sign in to comment.