2023-05-24 13:37:59 +00:00
|
|
|
{ lib
|
|
|
|
, buildNpmPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
buildNpmPackage rec {
|
|
|
|
pname = "newman";
|
2024-06-20 14:57:18 +00:00
|
|
|
version = "6.1.3";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "postmanlabs";
|
|
|
|
repo = "newman";
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-06-20 14:57:18 +00:00
|
|
|
hash = "sha256-I9gpVwrrug1Ygi0UuBIeq16Nyn8rsaDkMDtpxBYJOuY=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
2023-05-24 13:37:59 +00:00
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
npmDepsHash = "sha256-StNu5NHGzivl3+GMBWkbxvsRJ/dYuS0dze+8/i7q9qg=";
|
2023-05-24 13:37:59 +00:00
|
|
|
|
|
|
|
dontNpmBuild = true;
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://www.getpostman.com";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Command-line collection runner for Postman";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "newman";
|
2023-05-24 13:37:59 +00:00
|
|
|
changelog = "https://github.com/postmanlabs/newman/releases/tag/v${version}";
|
2020-09-25 04:45:31 +00:00
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|