summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2020-06-11 17:43:47 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2020-06-11 18:27:34 +0200
commit22ff32d74087650d70e0464199b4d49c3f953189 (patch)
tree9b740b07c2981a3cdb07332972976b4fd2d9a8ce
parent5d87992126fb9bd2b9b11bdce776b30f92c89985 (diff)
downloadnixpkgs-22ff32d74087650d70e0464199b4d49c3f953189.tar
nixpkgs-22ff32d74087650d70e0464199b4d49c3f953189.tar.gz
nixpkgs-22ff32d74087650d70e0464199b4d49c3f953189.tar.bz2
nixpkgs-22ff32d74087650d70e0464199b4d49c3f953189.tar.lz
nixpkgs-22ff32d74087650d70e0464199b4d49c3f953189.tar.xz
nixpkgs-22ff32d74087650d70e0464199b4d49c3f953189.tar.zst
nixpkgs-22ff32d74087650d70e0464199b4d49c3f953189.zip
xhyve: add license
-rw-r--r--pkgs/applications/virtualization/xhyve/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/virtualization/xhyve/default.nix b/pkgs/applications/virtualization/xhyve/default.nix
index 921a54b11a2..db9a7ef8257 100644
--- a/pkgs/applications/virtualization/xhyve/default.nix
+++ b/pkgs/applications/virtualization/xhyve/default.nix
@@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
     cp build/xhyve $out/bin
   '';
 
-  meta = {
+  meta = with lib; {
     description = "Lightweight Virtualization on macOS Based on bhyve";
     homepage = "https://github.com/mist64/xhyve";
-    maintainers = [ lib.maintainers.lnl7 ];
-    platforms = lib.platforms.darwin;
+    maintainers = [ maintainers.lnl7 ];
+    license = licenses.bsd2;
+    platforms = platforms.darwin;
   };
 }