nixpkgs/pkgs/development/web/newman/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
689 B
Nix
Raw Normal View History

2023-05-21 04:56:13 +00:00
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
2020-07-12 08:22:25 +00:00
2023-05-21 04:56:13 +00:00
buildNpmPackage rec {
pname = "newman";
2024-02-06 05:11:59 +00:00
version = "6.1.1";
2020-07-12 08:22:25 +00:00
2023-05-21 04:56:13 +00:00
src = fetchFromGitHub {
owner = "postmanlabs";
repo = "newman";
rev = "refs/tags/v${version}";
2024-02-06 05:11:59 +00:00
hash = "sha256-CHlch4FoaW42oWxlaAEuNBLTM1hSwLK+nvBfE17GNHU=";
2020-07-12 08:22:25 +00:00
};
2023-05-21 04:56:13 +00:00
2024-02-06 05:11:59 +00:00
npmDepsHash = "sha256-ez6FXuu1gMBfJvgmOKs+zoUVMWwBPgJH33BbbLNL0Vk=";
2023-05-21 04:56:13 +00:00
dontNpmBuild = true;
2020-07-12 08:22:25 +00:00
meta = with lib; {
homepage = "https://www.getpostman.com";
description = "A command-line collection runner for Postman";
2023-05-21 04:56:13 +00:00
changelog = "https://github.com/postmanlabs/newman/releases/tag/v${version}";
2020-07-12 08:22:25 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.asl20;
};
}