summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorBastien Rivière <babathriviere@gmail.com>2019-11-06 10:37:31 +0100
committerBastien Rivière <babathriviere@gmail.com>2019-11-06 10:42:24 +0100
commite870472892dca93bda427021249cc3eb885b4c90 (patch)
tree58cf497b567fd5ce05b59ff514077b3cc31af01f /pkgs/development/web
parent1e72fa51580dcac77549ffd9e499db6aa74d3286 (diff)
downloadnixpkgs-e870472892dca93bda427021249cc3eb885b4c90.tar
nixpkgs-e870472892dca93bda427021249cc3eb885b4c90.tar.gz
nixpkgs-e870472892dca93bda427021249cc3eb885b4c90.tar.bz2
nixpkgs-e870472892dca93bda427021249cc3eb885b4c90.tar.lz
nixpkgs-e870472892dca93bda427021249cc3eb885b4c90.tar.xz
nixpkgs-e870472892dca93bda427021249cc3eb885b4c90.tar.zst
nixpkgs-e870472892dca93bda427021249cc3eb885b4c90.zip
insomnia: 6.6.2 -> 7.0.3
Update insomnia to latest version (at the current date: 2019/11/06)
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/insomnia/default.nix29
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/web/insomnia/default.nix b/pkgs/development/web/insomnia/default.nix
index 675564b789b..68a28ddfeba 100644
--- a/pkgs/development/web/insomnia/default.nix
+++ b/pkgs/development/web/insomnia/default.nix
@@ -1,11 +1,9 @@
-{ stdenv, makeWrapper, fetchurl, dpkg
-, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype
-, gdk-pixbuf, glib, gnome2, nspr, nss, gtk3, gtk2, at-spi2-atk
-, gsettings-desktop-schemas, gobject-introspection, wrapGAppsHook
+{ stdenv, makeWrapper, fetchurl, dpkg, alsaLib, atk, cairo, cups, dbus, expat
+, fontconfig, freetype, gdk-pixbuf, glib, gnome2, nspr, nss, gtk3, gtk2
+, at-spi2-atk, gsettings-desktop-schemas, gobject-introspection, wrapGAppsHook
 , libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext
 , libXfixes, libXi, libXrandr, libXrender, libXtst, libxcb, nghttp2
-, libudev0-shim, glibc, curl, openssl, autoPatchelfHook
-}:
+, libudev0-shim, glibc, curl, openssl, autoPatchelfHook }:
 
 let
   runtimeLibs = stdenv.lib.makeLibraryPath [
@@ -18,19 +16,16 @@ let
   ];
 in stdenv.mkDerivation rec {
   pname = "insomnia";
-  version = "6.6.2";
+  version = "7.0.3";
 
   src = fetchurl {
-    url = "https://github.com/getinsomnia/insomnia/releases/download/v${version}/insomnia_${version}_amd64.deb";
-    sha256 = "0hlny3lac7whdbpp0pcyaa30h6x9536jsg95gj9irw2qjsx74xa7";
+    url =
+      "https://github.com/getinsomnia/insomnia/releases/download/v${version}/insomnia_${version}_amd64.deb";
+    sha256 = "14mkvza7q6l2hn763pjy6zavcg1fmzanys3930w32g07vq3xi97l";
   };
 
-  nativeBuildInputs = [
-    autoPatchelfHook
-    dpkg
-    makeWrapper
-    gobject-introspection wrapGAppsHook
-  ];
+  nativeBuildInputs =
+    [ autoPatchelfHook dpkg makeWrapper gobject-introspection wrapGAppsHook ];
 
   buildInputs = [
     alsaLib
@@ -87,11 +82,11 @@ in stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = https://insomnia.rest/;
+    homepage = "https://insomnia.rest/";
     description = "The most intuitive cross-platform REST API Client";
     license = licenses.mit;
     platforms = [ "x86_64-linux" ];
-    maintainers = with maintainers; [ markus1189 ];
+    maintainers = with maintainers; [ markus1189 babariviere ];
   };
 
 }