txt2man: enable darwin platform

Tested on Mac OS X 10.10, Nix 1.11.4 with:

    nix-build -A txt2man
    result/txt2man
This commit is contained in:
Manav Rathi 2016-09-08 12:51:05 +05:30
parent 6dc9ed317c
commit 1a2b47463b

View File

@ -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 ];
};
}