summary refs log tree commit diff
path: root/pkgs/applications/misc/sqliteman/default.nix
blob: 803dfe075c199fd48fd08513c98de358b003954b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, cmake, qt4, qscintilla }:

stdenv.mkDerivation rec {
  name = "sqliteman";
  version = "1.2.0-c41b89e1";

  src = fetchurl {
    url = https://github.com/pvanek/sqliteman/archive/1.2.0.tar.gz;
    sha256 = "1x4ppwf01jdnz3a4ycia6vv5qf3w2smbqx690z1pnkwbvk337akm";
  };

  buildInputs = [ cmake qt4 qscintilla ];

  prePatch = ''
    sed -i 's,m_file(0),m_file(QString()),' Sqliteman/sqliteman/main.cpp
  '';

  preConfigure = ''
    cd Sqliteman
    sed -i 's,/usr/include/Qsci,${qscintilla}/include/Qsci,' cmake/modules/FindQScintilla.cmake
    sed -i 's,PATHS ''${QT_LIBRARY_DIR},PATHS ${qscintilla}/libs,' cmake/modules/FindQScintilla.cmake
  '';

  meta = with stdenv.lib; {
    description = "Sqliteman is simple but powerfull Sqlite3 GUI database manager.";
    homepage = http://sqliteman.yarpen.cz/;
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.eikek ];
  };
}