about summary refs log tree commit diff
path: root/pkgs/development/web/postman/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/web/postman/default.nix')
-rw-r--r--pkgs/development/web/postman/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/development/web/postman/default.nix b/pkgs/development/web/postman/default.nix
deleted file mode 100644
index f9684f64feeb..000000000000
--- a/pkgs/development/web/postman/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ stdenvNoCC, callPackage, lib }:
-
-let
-  pname = "postman";
-  version = "11.1.0";
-  meta = with lib; {
-    homepage = "https://www.getpostman.com";
-    description = "API Development Environment";
-    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
-    license = licenses.postman;
-    platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
-    maintainers = with maintainers; [ johnrichardrinehart evanjs tricktron Crafter ];
-  };
-
-in
-
-if stdenvNoCC.isDarwin
-then callPackage ./darwin.nix { inherit pname version meta; }
-else callPackage ./linux.nix { inherit pname version meta; }