From 4b0741093df864dbd4b77eff826288b4a59d089e Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Thu, 18 Mar 2021 21:25:28 +0100 Subject: [PATCH] fdtools: set platforms to linux only Seems like there is portability trouble preventing it from working on darwin and likely also BSDs. The website says: > On some systems (currently only Linux, as far as I know) they can > also allocate, lock, and switch virtual consoles. --- pkgs/tools/misc/fdtools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/fdtools/default.nix b/pkgs/tools/misc/fdtools/default.nix index 2a2f44d8182..e9efd66b2f1 100644 --- a/pkgs/tools/misc/fdtools/default.nix +++ b/pkgs/tools/misc/fdtools/default.nix @@ -76,7 +76,7 @@ in stdenv.mkDerivation { homepage = "https://code.dogmap.org./fdtools/"; description = "A set of utilities for working with file descriptors"; license = lib.licenses.gpl2; - platforms = lib.platforms.all; + platforms = lib.platforms.linux; maintainers = [ lib.maintainers.Profpatsch ]; }; }