summary refs log tree commit diff
path: root/pkgs/development/libraries/libssh2
diff options
context:
space:
mode:
authorLeon Schuermann <leon.git@is.currently.online>2018-10-11 12:12:54 +0200
committerLeon Schuermann <leon.git@is.currently.online>2018-10-11 12:12:54 +0200
commit58654866ceab5d3161a4afcd037e425085dab652 (patch)
tree67fd2ce0508936d68aebd64124cebb665623dd1c /pkgs/development/libraries/libssh2
parent01cca5981c902c323e4797a5616efc881a64cf77 (diff)
downloadnixpkgs-58654866ceab5d3161a4afcd037e425085dab652.tar
nixpkgs-58654866ceab5d3161a4afcd037e425085dab652.tar.gz
nixpkgs-58654866ceab5d3161a4afcd037e425085dab652.tar.bz2
nixpkgs-58654866ceab5d3161a4afcd037e425085dab652.tar.lz
nixpkgs-58654866ceab5d3161a4afcd037e425085dab652.tar.xz
nixpkgs-58654866ceab5d3161a4afcd037e425085dab652.tar.zst
nixpkgs-58654866ceab5d3161a4afcd037e425085dab652.zip
libssh2: add license
Diffstat (limited to 'pkgs/development/libraries/libssh2')
-rw-r--r--pkgs/development/libraries/libssh2/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libssh2/default.nix b/pkgs/development/libraries/libssh2/default.nix
index a6802a7f518..b050dede8c6 100644
--- a/pkgs/development/libraries/libssh2/default.nix
+++ b/pkgs/development/libraries/libssh2/default.nix
@@ -13,10 +13,11 @@ stdenv.mkDerivation rec {
   buildInputs = [ openssl zlib ]
     ++ stdenv.lib.optional stdenv.hostPlatform.isMinGW windows.mingw_w64;
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A client-side C library implementing the SSH2 protocol";
     homepage = https://www.libssh2.org;
-    platforms = stdenv.lib.platforms.all;
+    platforms = platforms.all;
+    license = licenses.bsd3;
     maintainers = [ ];
   };
 }