ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ma / mailspring / package.nix
blob9624b1b9aa0b74663f7bba07224c8742a378537b
1 { lib
2 , stdenv
3 , callPackage
4 }:
5 let
6   pname = "mailspring";
7   version = "1.13.3";
9   meta = with lib; {
10     description = "Beautiful, fast and maintained fork of Nylas Mail by one of the original authors";
11     downloadPage = "https://github.com/Foundry376/Mailspring";
12     homepage = "https://getmailspring.com";
13     license = licenses.gpl3Plus;
14     longDescription = ''
15       Mailspring is an open-source mail client forked from Nylas Mail and built with Electron.
16       Mailspring's sync engine runs locally, but its source is not open.
17     '';
18     mainProgram = "mailspring";
19     maintainers = with maintainers; [ toschmidt ];
20     platforms = [ "x86_64-linux" "aarch64-darwin" ];
21     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
22   };
24   linux = callPackage ./linux.nix { inherit pname version meta; };
25   darwin = callPackage ./darwin.nix { inherit pname version meta; };
26 in if stdenv.hostPlatform.isDarwin then darwin else linux