Skip to content

Commit

Permalink
packaging: add truststore as optional nixos dependency (Open-Wine-Com…
Browse files Browse the repository at this point in the history
…ponents#298)

* nix: add truststore as dependency

* nix: add truststore as optional dependency

Co-authored-by: Melody <[email protected]>

---------

Co-authored-by: Melody <[email protected]>
  • Loading branch information
R1kaB3rN and LovingMelody authored Dec 6, 2024
1 parent e559e2e commit 1c3dd94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packaging/nix/umu-launcher.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{pyth1 ,python3Packages , umu-launcher, pkgs,version, ...}:
{lib, pyth1 ,python3Packages , umu-launcher, pkgs,version, truststore ? true, ...}:
python3Packages.buildPythonPackage {
pname = "umu-launcher";
version = "${version}";
Expand All @@ -20,7 +20,7 @@ python3Packages.buildPythonPackage {
pkgs.python3Packages.xlib
pkgs.python3Packages.filelock
pkgs.python3Packages.urllib3
];
] ++ lib.optional truststore pkgs.python3Packages.truststore;
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 1c3dd94

Please sign in to comment.