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

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

19 lines
532 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-02-27 12:02:04 +00:00
version = "9.14.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";
license = licenses.postman;
2022-03-30 14:01:39 +00:00
platforms = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
maintainers = with maintainers; [ johnrichardrinehart evanjs tricktron ];
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; }