summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2021-01-22 15:15:58 -0500
committerGitHub <noreply@github.com>2021-01-22 15:15:58 -0500
commitd95aebbe0e723cb3d275d68b8529f0891a23df96 (patch)
tree53d25bb2d4fa366a5f74bacb5e71bda21e7823b6 /pkgs/applications/audio
parent412a9e7d7c8992d77e382f53b7eb1ebefb271735 (diff)
parent8929989614589ee3acd070a6409b2b9700c92d65 (diff)
Merge pull request #107214 from Ericson2314/linux-config-cleanup
lib: Clean up how linux and gcc config is specified
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/virtual-ans/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/virtual-ans/default.nix b/pkgs/applications/audio/virtual-ans/default.nix
index dd7e8b062da7..1cb9c0f18bff 100644
--- a/pkgs/applications/audio/virtual-ans/default.nix
+++ b/pkgs/applications/audio/virtual-ans/default.nix
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
startScript = if stdenv.isx86_32 then "START_LINUX_X86"
else if stdenv.isx86_64 then "START_LINUX_X86_64"
#else if stdenv.isDarwin then "START_MACOS.app" # disabled because I cannot test on Darwin
- else abort "Unsupported platform: ${stdenv.platform.kernelArch}.";
+ else abort "Unsupported platform: ${stdenv.hostPlatform.linuxArch}.";
linuxExecutable = if stdenv.isx86_32 then "pixilang_linux_x86"
else if stdenv.isx86_64 then "pixilang_linux_x86_64"