diff --git a/snapcraft/utils.py b/snapcraft/utils.py index 511effe2..4af5a029 100644 --- a/snapcraft/utils.py +++ b/snapcraft/utils.py @@ -15,6 +15,7 @@ # along with this program. If not, see . """Utilities for snapcraft.""" + import multiprocessing import os import pathlib @@ -91,7 +92,7 @@ def get_os_platform( release = platform.release() machine = platform.machine() - if system == "Linux": + if system == "Linux" and "NixOS" not in platform.version(): try: with filepath.open("rt", encoding="utf-8") as release_file: lines = release_file.readlines()