lol
1{ pkgs, nodejs, stdenv, lib, ... }:
2
3let
4
5 packageName = with lib; concatStrings (map (entry: (concatStrings (mapAttrsToList (key: value: "${key}-${value}") entry))) (importJSON ./package.json));
6
7 nodePackages = import ./node-composition.nix {
8 inherit pkgs nodejs;
9 inherit (stdenv.hostPlatform) system;
10 };
11in
12nodePackages.newman.override {
13 meta = with lib; {
14 homepage = "https://www.getpostman.com";
15 description = "A command-line collection runner for Postman";
16 maintainers = with maintainers; [ freezeboy ];
17 license = licenses.asl20;
18 };
19}