cli11: fix license and platforms

This commit is contained in:
Andrew Childs 2020-10-14 15:53:06 +09:00
parent 359ac19b17
commit a8dbeb2601

View File

@ -35,9 +35,9 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "CLI11 is a command line parser for C++11";
homepage = "https://github.com/CLIUtils/CLI11";
platforms = [ "x86_64-linux" ];
platforms = platforms.unix;
maintainers = with maintainers; [ nand0p ];
license = licenses.unfreeRedistributable;
license = licenses.bsd3;
};
}