mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
postman: init at 5.5.2
This commit is contained in:
parent
3933b60bae
commit
63a4cbfb43
@ -482,6 +482,12 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||||||
fullName = "PostgreSQL License";
|
fullName = "PostgreSQL License";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postman = {
|
||||||
|
fullName = "Postman EULA";
|
||||||
|
url = https://www.getpostman.com/licenses/postman_base_app;
|
||||||
|
free = false;
|
||||||
|
};
|
||||||
|
|
||||||
psfl = spdx {
|
psfl = spdx {
|
||||||
spdxId = "Python-2.0";
|
spdxId = "Python-2.0";
|
||||||
fullName = "Python Software Foundation License version 2";
|
fullName = "Python Software Foundation License version 2";
|
||||||
|
89
pkgs/development/web/postman/default.nix
Normal file
89
pkgs/development/web/postman/default.nix
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
{ stdenv, lib, gnome2, fetchurl, pkgs, xlibs, udev, makeWrapper, makeDesktopItem }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "postman-${version}";
|
||||||
|
version = "5.5.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://dl.pstmn.io/download/version/${version}/linux64";
|
||||||
|
sha1 = "68886197A8375E860AB880547838FEFC9E12FC64";
|
||||||
|
name = "${name}.tar.gz";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
dontPatchELF = true;
|
||||||
|
|
||||||
|
buildPhase = ":"; # nothing to build
|
||||||
|
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
name = "postman";
|
||||||
|
exec = "postman";
|
||||||
|
icon = "$out/share/postman/resources/app/assets/icon.png";
|
||||||
|
comment = "API Development Environment";
|
||||||
|
desktopName = "Postman";
|
||||||
|
genericName = "Postman";
|
||||||
|
categories = "Application;Development;";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/postman
|
||||||
|
mkdir -p $out/share/applications
|
||||||
|
cp -R * $out/share/postman
|
||||||
|
mkdir -p $out/bin
|
||||||
|
ln -s $out/share/postman/Postman $out/bin/postman
|
||||||
|
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
||||||
|
'';
|
||||||
|
|
||||||
|
preFixup = let
|
||||||
|
libPath = lib.makeLibraryPath [
|
||||||
|
stdenv.cc.cc.lib
|
||||||
|
gnome2.pango
|
||||||
|
gnome2.GConf
|
||||||
|
pkgs.atk
|
||||||
|
pkgs.alsaLib
|
||||||
|
pkgs.cairo
|
||||||
|
pkgs.cups
|
||||||
|
pkgs.dbus_daemon.lib
|
||||||
|
pkgs.expat
|
||||||
|
pkgs.gdk_pixbuf
|
||||||
|
pkgs.glib
|
||||||
|
pkgs.gtk2-x11
|
||||||
|
pkgs.freetype
|
||||||
|
pkgs.fontconfig
|
||||||
|
pkgs.nss
|
||||||
|
pkgs.nspr
|
||||||
|
pkgs.udev.lib
|
||||||
|
xlibs.libX11
|
||||||
|
xlibs.libxcb
|
||||||
|
xlibs.libXi
|
||||||
|
xlibs.libXcursor
|
||||||
|
xlibs.libXdamage
|
||||||
|
xlibs.libXrandr
|
||||||
|
xlibs.libXcomposite
|
||||||
|
xlibs.libXext
|
||||||
|
xlibs.libXfixes
|
||||||
|
xlibs.libXrender
|
||||||
|
xlibs.libX11
|
||||||
|
xlibs.libXtst
|
||||||
|
xlibs.libXScrnSaver
|
||||||
|
];
|
||||||
|
in ''
|
||||||
|
patchelf \
|
||||||
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||||
|
--set-rpath "${libPath}:$out/share/postman" \
|
||||||
|
$out/share/postman/Postman
|
||||||
|
patchelf --set-rpath "${libPath}" $out/share/postman/libnode.so
|
||||||
|
patchelf --set-rpath "${libPath}" $out/share/postman/libffmpeg.so
|
||||||
|
|
||||||
|
wrapProgram $out/share/postman/Postman --prefix LD_LIBRARY_PATH : ${libPath}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://www.getpostman.com;
|
||||||
|
description = "API Development Environment";
|
||||||
|
license = stdenv.lib.licenses.postman;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ xurei ];
|
||||||
|
};
|
||||||
|
}
|
@ -7835,6 +7835,8 @@ with pkgs;
|
|||||||
|
|
||||||
postiats-utilities = callPackage ../development/tools/postiats-utilities {};
|
postiats-utilities = callPackage ../development/tools/postiats-utilities {};
|
||||||
|
|
||||||
|
postman = callPackage ../development/web/postman {};
|
||||||
|
|
||||||
pprof = callPackage ../development/tools/profiling/pprof { };
|
pprof = callPackage ../development/tools/profiling/pprof { };
|
||||||
|
|
||||||
pyprof2calltree = pythonPackages.callPackage ../development/tools/profiling/pyprof2calltree { };
|
pyprof2calltree = pythonPackages.callPackage ../development/tools/profiling/pyprof2calltree { };
|
||||||
|
Loading…
Reference in New Issue
Block a user