fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, fetchFromGitHub
3, pkg-config
4, qmake
5, mkDerivation
6, qtsvg
7, libxml2
8, postgresql
9}:
10
11mkDerivation rec {
12 pname = "pgmodeler";
13 version = "0.9.3";
14
15 src = fetchFromGitHub {
16 owner = "pgmodeler";
17 repo = "pgmodeler";
18 rev = "v${version}";
19 sha256 = "1bci5x418dbnkny7hn0b5q5lxyajrgl3frv41ji0hcw9vivrds2g";
20 };
21
22 nativeBuildInputs = [ pkg-config qmake ];
23 qmakeFlags = [ "pgmodeler.pro" "CONFIG+=release" ];
24
25 # todo: libpq would suffice here. Unfortunately this won't work, if one uses only postgresql.lib here.
26 buildInputs = [ postgresql qtsvg ];
27
28 meta = with lib; {
29 description = "A database modeling tool for PostgreSQL";
30 homepage = "https://pgmodeler.io/";
31 license = licenses.gpl3;
32 maintainers = [ maintainers.esclear ];
33 platforms = platforms.linux;
34 };
35}