2022-02-10 20:34:41 +00:00
|
|
|
{ stdenv
|
|
|
|
, pkgs
|
|
|
|
, lib
|
2023-05-24 13:37:59 +00:00
|
|
|
, nodejs_20
|
2022-02-10 20:34:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2023-05-24 13:37:59 +00:00
|
|
|
nodejs = nodejs_20;
|
2022-02-10 20:34:41 +00:00
|
|
|
|
|
|
|
nodePackages = import ./node-packages.nix {
|
|
|
|
inherit pkgs nodejs;
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
};
|
|
|
|
|
|
|
|
ethercalc = lib.head (lib.attrValues nodePackages);
|
|
|
|
|
|
|
|
combined = ethercalc.override {
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Online collaborative spreadsheet";
|
|
|
|
license = with licenses; [ cpal10 artistic2 mit asl20 cc0 mpl20 ];
|
|
|
|
homepage = "https://github.com/audreyt/ethercalc";
|
|
|
|
maintainers = with maintainers; [ iblech ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
combined
|