summary refs log tree commit diff
path: root/pkgs/development/web/insomnia/default.nix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-02 15:08:30 -0700
committerRobin Gloster <mail@glob.in>2018-05-03 00:58:46 +0200
commit7a4e98eefef777632f6a2546699fcefa0b90976d (patch)
tree44ff7f28dd4a55adc75f9dcb9121ee18c846dc1f /pkgs/development/web/insomnia/default.nix
parent2e16074180dc5f7403ed9b9039b9064e114a8e70 (diff)
downloadnixpkgs-7a4e98eefef777632f6a2546699fcefa0b90976d.tar
nixpkgs-7a4e98eefef777632f6a2546699fcefa0b90976d.tar.gz
nixpkgs-7a4e98eefef777632f6a2546699fcefa0b90976d.tar.bz2
nixpkgs-7a4e98eefef777632f6a2546699fcefa0b90976d.tar.lz
nixpkgs-7a4e98eefef777632f6a2546699fcefa0b90976d.tar.xz
nixpkgs-7a4e98eefef777632f6a2546699fcefa0b90976d.tar.zst
nixpkgs-7a4e98eefef777632f6a2546699fcefa0b90976d.zip
insomnia: 5.16.0 -> 5.16.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/insomnia/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 5.16.1 with grep in /nix/store/ipbmvgywl4835c6ryl95nigfz2cvmkd7-insomnia-5.16.1
- directory tree listing: https://gist.github.com/97908578657058f7b3c2b72b2988dcd4

Closes #39890

Co-authored-by: Robin Gloster <mail@glob.in>
Diffstat (limited to 'pkgs/development/web/insomnia/default.nix')
-rw-r--r--pkgs/development/web/insomnia/default.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/web/insomnia/default.nix b/pkgs/development/web/insomnia/default.nix
index 9a4aaaad3ce..4e5596fee66 100644
--- a/pkgs/development/web/insomnia/default.nix
+++ b/pkgs/development/web/insomnia/default.nix
@@ -1,12 +1,9 @@
-{ stdenv, lib, makeWrapper, fetchurl, dpkg,
-
-  alsaLib, atk, cairo, cups, dbus_daemon, expat, fontconfig, freetype, gdk_pixbuf, glib, gnome2, gtk2-x11,
-  nspr, nss,
-
-  libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr,
-  libXrender, libXtst, libxcb,
-
-  libudev0-shim, glibc, curl, openssl
+{ stdenv, lib, makeWrapper, fetchurl, dpkg
+, alsaLib, atk, cairo, cups, dbus_daemon, expat, fontconfig, freetype
+, gdk_pixbuf, glib, gnome2, gtk2-x11, nspr, nss
+, libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext
+, libXfixes, libXi, libXrandr, libXrender, libXtst, libxcb, nghttp2
+, libudev0-shim, glibc, curl, openssl
 }:
 
 let
@@ -15,14 +12,14 @@ let
     gtk2-x11 nspr nss stdenv.cc.cc.lib libX11 libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes
     libXi libXrandr libXrender libXtst libxcb
   ];
-  runtimeLibs = lib.makeLibraryPath [ libudev0-shim glibc curl openssl ];
+  runtimeLibs = lib.makeLibraryPath [ libudev0-shim glibc curl openssl nghttp2 ];
 in stdenv.mkDerivation rec {
   name = "insomnia-${version}";
-  version = "5.16.0";
+  version = "5.16.1";
 
   src = fetchurl {
     url = "https://github.com/getinsomnia/insomnia/releases/download/v${version}/insomnia_${version}_amd64.deb";
-    sha256 = "1cpw63ibxaa08vms7fbxr5ap2yh4vcl8q3rjfn0ag1zkimz8cg2p";
+    sha256 = "0r1l7pfcnif8vw9jnxbh5p9sih6wvgjpx8rpfmnvw21pr8cm0zyp";
   };
 
   nativeBuildInputs = [ makeWrapper dpkg ];