summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-12-13 15:53:19 -0500
committerGitHub <noreply@github.com>2020-12-13 15:53:19 -0500
commit418d56e960bc28312a0ad0187b79e6bb8b68b4f5 (patch)
tree7c45d2db0406567887108aa5e01339e3e23313e6
parent3f73a9a8f5141d4d850aaf62e2aa4c8d1bc8559c (diff)
parenta8dbeb26013afb7715ae4e46dda2c05a6bf520ee (diff)
downloadnixpkgs-418d56e960bc28312a0ad0187b79e6bb8b68b4f5.tar
nixpkgs-418d56e960bc28312a0ad0187b79e6bb8b68b4f5.tar.gz
nixpkgs-418d56e960bc28312a0ad0187b79e6bb8b68b4f5.tar.bz2
nixpkgs-418d56e960bc28312a0ad0187b79e6bb8b68b4f5.tar.lz
nixpkgs-418d56e960bc28312a0ad0187b79e6bb8b68b4f5.tar.xz
nixpkgs-418d56e960bc28312a0ad0187b79e6bb8b68b4f5.tar.zst
nixpkgs-418d56e960bc28312a0ad0187b79e6bb8b68b4f5.zip
Merge pull request #100478 from thefloweringash/cli11-meta
cli11: fix license and platforms
-rw-r--r--pkgs/development/tools/misc/cli11/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/cli11/default.nix b/pkgs/development/tools/misc/cli11/default.nix
index 25ec42eac8e..5694693615d 100644
--- a/pkgs/development/tools/misc/cli11/default.nix
+++ b/pkgs/development/tools/misc/cli11/default.nix
@@ -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;
   };
 
 }