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

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

20 lines
603 B
Nix
Raw Normal View History

2022-03-30 14:01:39 +00:00
{ stdenvNoCC, callPackage, lib }:
2018-02-11 17:34:40 +00:00
2022-03-30 14:01:39 +00:00
let
pname = "postman";
2022-10-04 22:01:58 +00:00
version = "9.31.0";
meta = with lib; {
2020-03-11 13:42:33 +00:00
homepage = "https://www.getpostman.com";
2018-02-11 17:34:40 +00:00
description = "API Development Environment";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.postman;
2022-03-30 14:01:39 +00:00
platforms = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
2022-07-26 03:26:12 +00:00
maintainers = with maintainers; [ johnrichardrinehart evanjs tricktron Crafter ];
2018-02-11 17:34:40 +00:00
};
2022-03-30 14:01:39 +00:00
in
if stdenvNoCC.isDarwin
then callPackage ./darwin.nix { inherit pname version meta; }
else callPackage ./linux.nix { inherit pname version meta; }