about summary refs log tree commit diff
path: root/pkgs/by-name/sn/snapcraft/os-platform.patch
blob: 0b441ec8d4bc8e35d0a6582a15db4896f19874a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 <http://www.gnu.org/licenses/>.
 
 """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()