Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / web-apps / ethercalc / default.nix
blob9c7e160e6c427f2b6432f1f8f34611fb252a64c0
1 { stdenv
2 , pkgs
3 , lib
4 , nodejs_20
5 }:
7 let
8   nodejs = nodejs_20;
10   nodePackages = import ./node-packages.nix {
11     inherit pkgs nodejs;
12     inherit (stdenv.hostPlatform) system;
13   };
15   ethercalc = lib.head (lib.attrValues nodePackages);
17   combined = ethercalc.override {
18     meta = with lib; {
19       description = "Online collaborative spreadsheet";
20       license = with licenses; [ cpal10 artistic2 mit asl20 cc0 mpl20 ];
21       homepage = "https://github.com/audreyt/ethercalc";
22       maintainers = with maintainers; [ iblech ];
23       platforms = platforms.unix;
24     };
25   };
27   combined