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 16:01:39 +02:00
{ stdenvNoCC, callPackage, lib }:
2018-02-11 18:34:40 +01:00
2022-03-30 16:01:39 +02:00
let
pname = "postman";
2022-02-27 13:02:04 +01:00
version = "9.14.0";
meta = with lib; {
2020-03-11 14:42:33 +01:00
homepage = "https://www.getpostman.com";
2018-02-11 18:34:40 +01:00
description = "API Development Environment";
license = licenses.postman;
2022-03-30 16:01:39 +02:00
platforms = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
maintainers = with maintainers; [ johnrichardrinehart evanjs tricktron ];
2018-02-11 18:34:40 +01:00
};
2022-03-30 16:01:39 +02:00
in
if stdenvNoCC.isDarwin
then callPackage ./darwin.nix { inherit pname version meta; }
else callPackage ./linux.nix { inherit pname version meta; }