python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / sqliteman / default.nix
blob556c635e60b416edf6879a6d47560ff2b133cce4
1 { lib, stdenv, fetchFromGitHub, cmake, qt4, qscintilla-qt4 }:
3 stdenv.mkDerivation rec {
4   pname = "sqliteman";
5   version = "1.2.0";
7   src = fetchFromGitHub {
8     repo = "sqliteman";
9     owner = "pvanek";
10     rev = version;
11     sha256 = "1blzyh1646955d580f71slgdvz0nqx0qacryx0jc9w02yrag17cs";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ qt4 qscintilla-qt4 ];
17   prePatch = ''
18     sed -i 's,m_file(0),m_file(QString()),' Sqliteman/sqliteman/main.cpp
19   '';
21   preConfigure = ''
22     cd Sqliteman
23     sed -i 's,/usr/include/Qsci,${qscintilla-qt4}/include/Qsci,' cmake/modules/FindQScintilla.cmake
24     sed -i 's,PATHS ''${QT_LIBRARY_DIR},PATHS ${qscintilla-qt4}/libs,' cmake/modules/FindQScintilla.cmake
25   '';
27   meta = with lib; {
28     description = "A simple but powerful Sqlite3 GUI database manager";
29     homepage = "http://sqliteman.yarpen.cz/";
30     license = licenses.gpl2Plus;
31     platforms = platforms.linux;
32     maintainers = [ maintainers.eikek ];
33   };