From e319eaf09f5c9d818307194ff2d7801125dbf344 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 12 Jun 2021 19:29:38 +0200 Subject: [PATCH] pkgs: bw-pass: fix 'meta.platforms' This makes use of 'keyutils' which only works on Linux. --- pkgs/bw-pass/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/bw-pass/default.nix b/pkgs/bw-pass/default.nix index a5297d5..6f27bd3 100644 --- a/pkgs/bw-pass/default.nix +++ b/pkgs/bw-pass/default.nix @@ -39,7 +39,7 @@ stdenvNoCC.mkDerivation rec { description = "A simple script to query a password from bitwarden"; homepage = "https://gitea.belanyi.fr/ambroisie/nix-config"; license = with licenses; [ mit ]; - platforms = platforms.unix; + platforms = platforms.linux; maintainers = with maintainers; [ ambroisie ]; }; }