vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / office / morgen / default.nix
blobdae08cd485c613921e1c5f4b78cd71be0a72d9cb
1 { lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper, electron
2 , asar, alsa-lib, gtk3, libxshmfence, mesa, nss }:
4 stdenv.mkDerivation rec {
5   pname = "morgen";
6   version = "3.5.9";
8   src = fetchurl {
9     url = "https://dl.todesktop.com/210203cqcj00tw1/versions/${version}/linux/deb";
10     hash = "sha256-ZKlj/QuQnrqQepsJY6KCROC2fXK/4Py5tmI/FVnRi9w=";
11   };
13   nativeBuildInputs = [
14     dpkg
15     autoPatchelfHook
16     makeWrapper
17     asar
18   ];
20   buildInputs = [ alsa-lib gtk3 libxshmfence mesa nss ];
22   unpackCmd = ''
23     dpkg-deb -x ${src} ./morgen-${pname}
24   '';
26   installPhase = ''
27     runHook preInstall
29     mv usr $out
30     mv opt $out
32     asar extract $out/opt/Morgen/resources/app.asar "$TMP/work"
33     # 1. Fixes path for todesktop-runtime-config.json
34     # 2. Fixes startup script
35     substituteInPlace $TMP/work/dist/main.js \
36       --replace "process.resourcesPath,\"todesktop-runtime-config.json" "\"$out/opt/Morgen/resources/todesktop-runtime-config.json" \
37       --replace "Exec=\".concat(process.execPath," "Exec=\".concat(\"$out/bin/morgen\","
38     asar pack --unpack='{*.node,*.ftz,rect-overlay}' "$TMP/work" $out/opt/Morgen/resources/app.asar
40     substituteInPlace $out/share/applications/morgen.desktop \
41       --replace '/opt/Morgen' $out/bin
43     makeWrapper ${electron}/bin/electron $out/bin/morgen \
44       --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations,WebRTCPipeWireCapturer}} $out/opt/Morgen/resources/app.asar"
46     runHook postInstall
47   '';
49   passthru.updateScript = ./update.sh;
51   meta = with lib; {
52     description = "All-in-one Calendars, Tasks and Scheduler";
53     homepage = "https://morgen.so/download";
54     mainProgram = "morgen";
55     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
56     license = licenses.unfree;
57     maintainers = with maintainers; [ justanotherariel ];
58     platforms = [ "x86_64-linux" ];
59   };