Merge pull request #100478 from thefloweringash/cli11-meta

cli11: fix license and platforms
This commit is contained in:
Mario Rodas 2020-12-13 15:53:19 -05:00 committed by GitHub
commit 418d56e960
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,9 +35,9 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "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;
};
}