From 849868fcb5e5068468e70866b18508e0ff2efa16 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 20 Jul 2020 18:43:19 -0500 Subject: [PATCH] cproto: enable on darwin --- pkgs/development/tools/misc/cproto/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/cproto/default.nix b/pkgs/development/tools/misc/cproto/default.nix index 43b325df8cc..0b9321bc029 100644 --- a/pkgs/development/tools/misc/cproto/default.nix +++ b/pkgs/development/tools/misc/cproto/default.nix @@ -29,6 +29,6 @@ stdenv.mkDerivation rec { description = "Tool to generate C function prototypes from C source code"; homepage = "https://invisible-island.net/cproto/"; license = licenses.publicDomain; - platforms = platforms.linux; + platforms = platforms.all; }; }