623d859001
- Fixes build with latest Qt and glibc. - Switches to Qt 5.9
85 lines
2.1 KiB
Nix
85 lines
2.1 KiB
Nix
{ stdenv, lib, fetchgit, fetchpatch, pkgconfig, libssh2
|
|
, qtbase, qtdeclarative, qtgraphicaleffects, qtimageformats, qtquickcontrols
|
|
, qtsvg, qttools, qtquick1, qtcharts
|
|
, qmake
|
|
}:
|
|
|
|
let
|
|
breakpad_lss = fetchgit {
|
|
url = "https://chromium.googlesource.com/linux-syscall-support";
|
|
rev = "08056836f2b4a5747daff75435d10d649bed22f6";
|
|
sha256 = "1ryshs2nyxwa0kn3rlbnd5b3fhna9vqm560yviddcfgdm2jyg0hz";
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "redis-desktop-manager-${version}";
|
|
version = "0.9.0-alpha5";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/uglide/RedisDesktopManager.git";
|
|
fetchSubmodules = true;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "1grw4zng0ff0lvplzzld133hlz6zjn5f5hl3z6z7kc1nq5642yr9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
|
buildInputs = [
|
|
libssh2 qtbase qtdeclarative qtgraphicaleffects qtimageformats
|
|
qtquick1 qtquickcontrols qtsvg qttools qtcharts
|
|
];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/google/breakpad/commit/bddcc58860f522a0d4cbaa7e9d04058caee0db9d.patch";
|
|
sha256 = "1bcamjkmif62rb0lbp111r0ppf4raqw664m5by7vr3pdkcjbbilq";
|
|
})
|
|
];
|
|
|
|
patchFlags = "-d 3rdparty/gbreakpad -p1";
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
buildPhase = ''
|
|
srcdir=$PWD
|
|
|
|
cat <<EOF > src/version.h
|
|
#ifndef RDM_VERSION
|
|
#define RDM_VERSION "${version}-120"
|
|
#endif // !RDM_VERSION
|
|
EOF
|
|
|
|
cd $srcdir/3rdparty/gbreakpad
|
|
cp -r ${breakpad_lss} src/third_party/lss
|
|
chmod +w -R src/third_party/lss
|
|
touch README
|
|
|
|
cd $srcdir/3rdparty/crashreporter
|
|
qmake CONFIG+=release DESTDIR="$srcdir/rdm/bin/linux/release" QMAKE_LFLAGS_RPATH=""
|
|
make
|
|
|
|
cd $srcdir/3rdparty/gbreakpad
|
|
./configure
|
|
make
|
|
|
|
cd $srcdir/src
|
|
qmake
|
|
make
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
instdir="$srcdir/bin/linux/release"
|
|
cp $instdir/rdm $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cross-platform open source Redis DB management tool";
|
|
homepage = http://redisdesktop.com/;
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
};
|
|
}
|