nixpkgs/pkgs/by-name/ne/newman/package.nix

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

30 lines
715 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-10-15 05:05:34 +00:00
version = "6.2.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-10-15 05:05:34 +00:00
hash = "sha256-p0/uHrLiqw5VnboXzLKF+f56ZfW77m5aoopf2zqIpQE=";
2020-07-12 08:22:25 +00:00
};
2023-05-21 04:56:13 +00:00
2024-10-15 05:05:34 +00:00
npmDepsHash = "sha256-HQ5V0hisolXqWV/oWlroCzC7ZoNw0P9bwTxFyUrL3Hc=";
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 = "Command-line collection runner for Postman";
mainProgram = "newman";
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;
};
}