ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / po / postman / package.nix
blobae2ea6f86230dbcd051105780b5dd006564edbcb
1 { stdenvNoCC, callPackage, lib }:
3 let
4   pname = "postman";
5   version = "11.1.0";
6   meta = with lib; {
7     homepage = "https://www.getpostman.com";
8     description = "API Development Environment";
9     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
10     license = licenses.postman;
11     platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
12     maintainers = with maintainers; [ johnrichardrinehart evanjs tricktron Crafter ];
13   };
17 if stdenvNoCC.hostPlatform.isDarwin
18 then callPackage ./darwin.nix { inherit pname version meta; }
19 else callPackage ./linux.nix { inherit pname version meta; }