lol

sqlitestudio-plugins: init at 3.4.17

+35
+35
pkgs/by-name/sq/sqlitestudio-plugins/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + python3, 5 + 6 + sqlitestudio, 7 + }: 8 + stdenv.mkDerivation { 9 + pname = "sqlitestudio-plugins"; 10 + 11 + inherit (sqlitestudio) 12 + version 13 + src 14 + nativeBuildInputs 15 + buildInputs 16 + ; 17 + 18 + postConfigure = '' 19 + uic ./SQLiteStudio3/guiSQLiteStudio/mainwindow.ui -o ./SQLiteStudio3/guiSQLiteStudio/ui_mainwindow.h 20 + ''; 21 + 22 + qmakeFlags = [ 23 + "./Plugins" 24 + "PYTHON_VERSION=${python3.pythonVersion}" 25 + "INCLUDEPATH+=${python3}/include/python${python3.pythonVersion}" 26 + ]; 27 + 28 + # bin/ld: final link failed: bad value 29 + enableParallelBuilding = false; 30 + 31 + meta = sqlitestudio.meta // { 32 + description = "Official plugins for SQLiteStudio, a free, open source, multi-platform SQLite database manager"; 33 + badPlatforms = [ lib.systems.inspect.platformPatterns.isStatic ]; 34 + }; 35 + }