diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-09-30 19:44:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-30 19:44:45 +0200 |
commit | 0dca9cb6b89b9ce358e8d673d1fca8da6723ed49 (patch) | |
tree | d610d5bcf6d1e0c0a3a416e6097172a28b092ba4 /nix | |
parent | 370c3aa5985698351e706e61c660a3a566a5f09b (diff) | |
parent | 0f59a1dde12f94eaff71f6f6b3d8d271c2dcce26 (diff) | |
download | PrismLauncher-0dca9cb6b89b9ce358e8d673d1fca8da6723ed49.tar.gz PrismLauncher-0dca9cb6b89b9ce358e8d673d1fca8da6723ed49.tar.bz2 PrismLauncher-0dca9cb6b89b9ce358e8d673d1fca8da6723ed49.zip |
Merge pull request #1162 from Trial97/feature/Replace-toml-library
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nix/default.nix b/nix/default.nix index 42ddda18..88b540ab 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -21,6 +21,7 @@ , self , version , libnbtplusplus +, tomlplusplus , enableLTO ? false }: @@ -59,6 +60,11 @@ stdenv.mkDerivation rec { mkdir source/libraries/libnbtplusplus cp -a ${libnbtplusplus}/* source/libraries/libnbtplusplus chmod a+r+w source/libraries/libnbtplusplus/* + # Copy tomlplusplus + rm -rf source/libraries/tomlplusplus + mkdir source/libraries/tomlplusplus + cp -a ${tomlplusplus}/* source/libraries/tomlplusplus + chmod a+r+w source/libraries/tomlplusplus/* ''; cmakeFlags = [ |