Modularize teams sops yazi
This commit is contained in:
parent
7730cbef59
commit
c73cb37278
75 changed files with 3023 additions and 3573 deletions
28
override/teams.nix
Normal file
28
override/teams.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, lib, copyDesktopItems, makeDesktopItem, chromium, ... }:
|
||||
stdenv.mkDerivation (final: {
|
||||
pname = "teams-pwa";
|
||||
name = final.pname;
|
||||
nativeBuildInputs = [ copyDesktopItems ];
|
||||
dontUnpack = true;
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = final.pname;
|
||||
icon = final.pname;
|
||||
exec = "${chromium}/bin/${
|
||||
chromium.meta.mainProgram or chromium.pname
|
||||
} --app=https://teams.microsoft.com";
|
||||
desktopName = "Microsoft Teams PWA";
|
||||
genericName = "Progressive Web App for Microsoft Teams";
|
||||
categories = [ "Network" ];
|
||||
mimeTypes = [ "x-scheme-handler/msteams" ];
|
||||
})
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft Teams PWA";
|
||||
homepage = "https://teams.microsoft.com";
|
||||
maintainers = with maintainers; [ ners ];
|
||||
platforms = chromium.meta.platforms;
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue