assertions

This commit is contained in:
mjallen18
2026-03-19 16:17:20 -05:00
parent dd04320fe7
commit d229cdbf6a
43 changed files with 1190 additions and 997 deletions

View File

@@ -1,7 +1,6 @@
{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
libuuid,
libsodium,

View File

@@ -1,6 +1,5 @@
bcachefs-tools:
{
lib,
stdenv,
kernelModuleMakeFlags,
kernel,

View File

@@ -15,7 +15,9 @@ let
version = "2512";
sysArch =
if (stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "aarch64-linux") then
if
(stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "aarch64-linux")
then
"x64"
else
throw "Unsupported system: ${stdenv.hostPlatform.system}";
@@ -168,7 +170,10 @@ stdenv.mkDerivation {
description = "Allows you to connect to your Omnissa Horizon virtual desktop";
homepage = "https://www.omnissa.com/products/horizon-8/";
license = lib.licenses.unfree;
platforms = [ "x86_64-linux" "aarch64-linux" ];
platforms = [
"x86_64-linux"
"aarch64-linux"
];
maintainers = with lib.maintainers; [ mhutter ];
};
}
}

View File

@@ -1,7 +1,6 @@
{
python3Packages,
fetchFromGitHub,
lib,
...
}:
python3Packages.buildPythonPackage rec {