Merge pull request #141490 from johnrichardrinehart/postman/9.0.4

authored by Sandro and committed by GitHub 7ba2dbae 222c332c

+12 -6
+6
maintainers/maintainer-list.nix
··· 5467 5467 githubId = 8735102; 5468 5468 name = "John Ramsden"; 5469 5469 }; 5470 + johnrichardrinehart = { 5471 + email = "johnrichardrinehart@gmail.com"; 5472 + github = "johnrichardrinehart"; 5473 + githubId = 6321578; 5474 + name = "John Rinehart"; 5475 + }; 5470 5476 johntitor = { 5471 5477 email = "huyuumi.dev@gmail.com"; 5472 5478 github = "JohnTitor";
+6 -6
pkgs/development/web/postman/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "postman"; 10 - version = "8.10.0"; 10 + version = "9.0.4"; 11 11 12 12 src = fetchurl { 13 13 url = "https://dl.pstmn.io/download/version/${version}/linux64"; 14 - sha256 = "05f3eaa229483a7e1f698e6e2ea2031d37687de540d4fad05ce677ac216db24d"; 14 + sha256 = "9OX1rSNWq2YJQBCt64iE4osZvfVajgEC2F28w7HSs3U="; 15 15 name = "${pname}.tar.gz"; 16 16 }; 17 17 ··· 74 74 rm $out/share/postman/Postman 75 75 76 76 mkdir -p $out/bin 77 - ln -s $out/share/postman/_Postman $out/bin/postman 77 + ln -s $out/share/postman/postman $out/bin/postman 78 78 79 79 mkdir -p $out/share/applications 80 80 ln -s ${desktopItem}/share/applications/* $out/share/applications/ ··· 88 88 89 89 postFixup = '' 90 90 pushd $out/share/postman 91 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" _Postman 92 - for file in $(find . -type f \( -name \*.node -o -name _Postman -o -name \*.so\* \) ); do 91 + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" postman 92 + for file in $(find . -type f \( -name \*.node -o -name postman -o -name \*.so\* \) ); do 93 93 ORIGIN=$(patchelf --print-rpath $file); \ 94 94 patchelf --set-rpath "${lib.makeLibraryPath buildInputs}:$ORIGIN" $file 95 95 done ··· 101 101 description = "API Development Environment"; 102 102 license = licenses.postman; 103 103 platforms = [ "x86_64-linux" ]; 104 - maintainers = with maintainers; [ xurei evanjs ]; 104 + maintainers = with maintainers; [ johnrichardrinehart evanjs ]; 105 105 }; 106 106 }