2015-12-19 18:40:12 -08:00
|
|
|
{ stdenv, fetchurl, qtbase, openssl, boost, cmake, scons, python, pcre, bzip2 }:
|
2013-11-24 18:29:37 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-08-20 15:31:14 -07:00
|
|
|
name = "robomongo-0.8.4";
|
2013-11-24 18:29:37 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-20 15:31:14 -07:00
|
|
|
url = https://github.com/paralect/robomongo/archive/v0.8.4.tar.gz;
|
|
|
|
sha256 = "199fb08701wrw3ky7gcqyvb3z4027qjcqdnzrx5y7yi3rb4gvkzc";
|
2013-11-24 18:29:37 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./robomongo.patch ];
|
2015-03-24 08:31:27 -07:00
|
|
|
|
|
|
|
postPatch = ''
|
2015-03-25 05:45:53 -07:00
|
|
|
rm ./cmake/FindOpenSSL.cmake # remove outdated bundled CMake file
|
2015-03-24 08:31:27 -07:00
|
|
|
'';
|
|
|
|
|
2013-11-24 18:29:37 -08:00
|
|
|
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
|
|
|
|
|
2015-12-19 18:40:12 -08:00
|
|
|
buildInputs = [ cmake boost scons qtbase openssl python pcre bzip2 ];
|
2013-11-24 18:29:37 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://robomongo.org/";
|
|
|
|
description = "Query GUI for mongodb";
|
2014-08-20 15:31:14 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-11-24 18:29:37 -08:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.amorsillo ];
|
2017-03-17 08:45:09 -07:00
|
|
|
broken = true;
|
2013-11-24 18:29:37 -08:00
|
|
|
};
|
|
|
|
}
|