nixpkgs/pkgs/development/web/insomnia/default.nix

93 lines
2.1 KiB
Nix
Raw Normal View History

{ 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 }:
2018-02-22 19:01:34 +00:00
let
runtimeLibs = stdenv.lib.makeLibraryPath [
curl
glibc
libudev0-shim
nghttp2
openssl
stdenv.cc.cc
2018-02-22 19:01:34 +00:00
];
in stdenv.mkDerivation rec {
pname = "insomnia";
2020-03-18 11:14:32 +00:00
version = "7.1.1";
2018-02-22 19:01:34 +00:00
src = fetchurl {
url =
"https://github.com/getinsomnia/insomnia/releases/download/v${version}/insomnia_${version}_amd64.deb";
2020-03-18 11:14:32 +00:00
sha256 = "0lg3j5pr2bkjq5rq035fwh4mgpqsja3ndp11zpcz85ni3nvhn657";
2018-02-22 19:01:34 +00:00
};
nativeBuildInputs =
[ autoPatchelfHook dpkg makeWrapper gobject-introspection wrapGAppsHook ];
2019-05-22 11:03:39 +00:00
buildInputs = [
alsaLib
at-spi2-atk
atk
cairo
cups
dbus
expat
fontconfig
freetype
2019-05-22 11:03:39 +00:00
gdk-pixbuf
glib
gnome2.GConf
gnome2.pango
gtk2
gtk3
gsettings-desktop-schemas
libX11
libXScrnSaver
libXcomposite
libXcursor
libXdamage
libXext
libXfixes
libXi
libXrandr
libXrender
libXtst
libxcb
nspr
nss
stdenv.cc.cc
];
2018-02-22 19:01:34 +00:00
dontBuild = true;
dontConfigure = true;
2018-02-22 19:01:34 +00:00
unpackPhase = "dpkg-deb -x $src .";
installPhase = ''
mkdir -p $out/share/insomnia $out/lib $out/bin
mv usr/share/* $out/share/
mv opt/Insomnia/* $out/share/insomnia
mv $out/share/insomnia/*.so $out/lib/
ln -s $out/share/insomnia/insomnia $out/bin/insomnia
sed -i 's|\/opt\/Insomnia|'$out'/bin|g' $out/share/applications/insomnia.desktop
2018-02-22 19:01:34 +00:00
'';
preFixup = ''
wrapProgram "$out/bin/insomnia" --prefix LD_LIBRARY_PATH : ${runtimeLibs}
'';
meta = with stdenv.lib; {
homepage = "https://insomnia.rest/";
2018-02-22 19:01:34 +00:00
description = "The most intuitive cross-platform REST API Client";
license = licenses.mit;
2018-02-22 19:01:34 +00:00
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ markus1189 babariviere ];
2018-02-22 19:01:34 +00:00
};
}