From 5601e130ce87809e58af4f9ed6cda74d6d81ae3d Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Mon, 5 Aug 2019 13:12:50 -0400 Subject: [PATCH] bluejeans-gui: use patchShebangs, add me to maintainers --- .../networking/instant-messengers/bluejeans/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/bluejeans/default.nix b/pkgs/applications/networking/instant-messengers/bluejeans/default.nix index fb38255ea38..d76cebd11b0 100644 --- a/pkgs/applications/networking/instant-messengers/bluejeans/default.nix +++ b/pkgs/applications/networking/instant-messengers/bluejeans/default.nix @@ -36,14 +36,15 @@ stdenv.mkDerivation rec { --replace-needed libudev.so.0 libudev.so.1 \ opt/bluejeans/bluejeans-bin ln -s $out/opt/bluejeans/bluejeans $out/bin/bluejeans - substituteInPlace $out/bin/bluejeans \ - --replace '#!/bin/bash' '#!${bash}/bin/bash' chmod +x $out/bin/bluejeans + patchShebangs $out ''; - meta = { + meta = with stdenv.lib; { description = "Video, audio, and web conferencing that works together with the collaboration tools you use every day."; - license = stdenv.lib.licenses.unfree; + homepage = "https://www.bluejeans.com"; + license = licenses.unfree; + maintainers = with maintainers; [ veprbl ]; platforms = [ "x86_64-linux" ]; }; }