From 29f70db773e16f56b2aa3ce899b1cfbc8c9c5947 Mon Sep 17 00:00:00 2001 From: Jon Banafato Date: Sun, 4 Mar 2018 00:22:30 -0500 Subject: [PATCH] libargon2: add darwin to platforms --- pkgs/development/libraries/libargon2/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libargon2/default.nix b/pkgs/development/libraries/libargon2/default.nix index 94e8ea05e663..a1a04a1dd7b2 100644 --- a/pkgs/development/libraries/libargon2/default.nix +++ b/pkgs/development/libraries/libargon2/default.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { homepage = https://www.argon2.com/; license = with licenses; [ asl20 cc0 ]; maintainers = with maintainers; [ taeer olynch ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; }