Skip to content

Commit

Permalink
nix flake update and actually expose trustore options to users
Browse files Browse the repository at this point in the history
my bad
  • Loading branch information
beh-10257 committed Dec 6, 2024
1 parent 1c3dd94 commit f53a557
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packaging/nix/combine.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ env, package, symlinkJoin,version }:
{ env, package, symlinkJoin,version,truststore }:
symlinkJoin {
name = "umu-run-bwrap";
paths = [
(package.override {version = "${version}";})
(package.override {version = "${version}";truststore = truststore;})
(env.override {version = "${version}";})
];
postBuild = ''
Expand Down
6 changes: 3 additions & 3 deletions packaging/nix/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packaging/nix/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
umu-launcher = nixpk.callPackage ./umu-launcher.nix { umu-launcher=umu-launcher-src; pyth1=pyth; version = "${version}"; };
umu-run = nixpk.callPackage ./umu-run.nix { package=umu-launcher; version = "${version}"; };
in{
packages.x86_64-linux.umu = nixpk.callPackage ./combine.nix { env=umu-run; package=umu-launcher; version = "${version}"; };
packages.x86_64-linux.umu = nixpk.callPackage ./combine.nix { env=umu-run; package=umu-launcher; version = "${version}"; truststore = true; };
};
}

0 comments on commit f53a557

Please sign in to comment.