tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
sqlitestudio-plugins: init at 3.4.17
Noa Virellia
9 months ago
58cbbb74
6ce75ae3
+35
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sq
sqlitestudio-plugins
package.nix
+35
pkgs/by-name/sq/sqlitestudio-plugins/package.nix
···
1
1
+
{
2
2
+
stdenv,
3
3
+
lib,
4
4
+
python3,
5
5
+
6
6
+
sqlitestudio,
7
7
+
}:
8
8
+
stdenv.mkDerivation {
9
9
+
pname = "sqlitestudio-plugins";
10
10
+
11
11
+
inherit (sqlitestudio)
12
12
+
version
13
13
+
src
14
14
+
nativeBuildInputs
15
15
+
buildInputs
16
16
+
;
17
17
+
18
18
+
postConfigure = ''
19
19
+
uic ./SQLiteStudio3/guiSQLiteStudio/mainwindow.ui -o ./SQLiteStudio3/guiSQLiteStudio/ui_mainwindow.h
20
20
+
'';
21
21
+
22
22
+
qmakeFlags = [
23
23
+
"./Plugins"
24
24
+
"PYTHON_VERSION=${python3.pythonVersion}"
25
25
+
"INCLUDEPATH+=${python3}/include/python${python3.pythonVersion}"
26
26
+
];
27
27
+
28
28
+
# bin/ld: final link failed: bad value
29
29
+
enableParallelBuilding = false;
30
30
+
31
31
+
meta = sqlitestudio.meta // {
32
32
+
description = "Official plugins for SQLiteStudio, a free, open source, multi-platform SQLite database manager";
33
33
+
badPlatforms = [ lib.systems.inspect.platformPatterns.isStatic ];
34
34
+
};
35
35
+
}