From 1a2b47463b45c2b05ec80ade28781afc986576af Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Thu, 8 Sep 2016 12:51:05 +0530 Subject: [PATCH] txt2man: enable darwin platform Tested on Mac OS X 10.10, Nix 1.11.4 with: nix-build -A txt2man result/txt2man --- pkgs/tools/misc/txt2man/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/txt2man/default.nix b/pkgs/tools/misc/txt2man/default.nix index 3b7730347ac..3c894611f69 100644 --- a/pkgs/tools/misc/txt2man/default.nix +++ b/pkgs/tools/misc/txt2man/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { description = "Convert flat ASCII text to man page format"; homepage = http://mvertes.free.fr/; license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + platforms = with stdenv.lib.platforms; linux ++ darwin; maintainers = with stdenv.lib.maintainers; [ bjornfor ]; }; }