mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / applications / office / morgen / default.nix
blob88fd18abde0de428e42fc40f910df0b2264363c9
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     name = "morgen-${version}.deb";
10     url = "https://dl.todesktop.com/210203cqcj00tw1/versions/${version}/linux/deb";
11     hash = "sha256-ZKlj/QuQnrqQepsJY6KCROC2fXK/4Py5tmI/FVnRi9w=";
12   };
14   nativeBuildInputs = [
15     dpkg
16     autoPatchelfHook
17     makeWrapper
18     asar
19   ];
21   buildInputs = [ alsa-lib gtk3 libxshmfence mesa nss ];
23   installPhase = ''
24     runHook preInstall
26     mv usr $out
27     mv opt $out
29     asar extract $out/opt/Morgen/resources/app.asar "$TMP/work"
30     # 1. Fixes path for todesktop-runtime-config.json
31     # 2. Fixes startup script
32     substituteInPlace $TMP/work/dist/main.js \
33       --replace "process.resourcesPath,\"todesktop-runtime-config.json" "\"$out/opt/Morgen/resources/todesktop-runtime-config.json" \
34       --replace "Exec=\".concat(process.execPath," "Exec=\".concat(\"$out/bin/morgen\","
35     asar pack --unpack='{*.node,*.ftz,rect-overlay}' "$TMP/work" $out/opt/Morgen/resources/app.asar
37     substituteInPlace $out/share/applications/morgen.desktop \
38       --replace '/opt/Morgen' $out/bin
40     makeWrapper ${electron}/bin/electron $out/bin/morgen \
41       --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations,WebRTCPipeWireCapturer --enable-wayland-ime}} $out/opt/Morgen/resources/app.asar"
43     runHook postInstall
44   '';
46   passthru.updateScript = ./update.sh;
48   meta = with lib; {
49     description = "All-in-one Calendars, Tasks and Scheduler";
50     homepage = "https://morgen.so/download";
51     mainProgram = "morgen";
52     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
53     license = licenses.unfree;
54     maintainers = with maintainers; [ justanotherariel ];
55     platforms = [ "x86_64-linux" ];
56   };