moving away from cargo2nix as I wasn't using it
May come back to cargo2nix instead, but for now I find this simpler
This commit is contained in:
parent
a7e3cfa39f
commit
a4b3b2256b
3 changed files with 87 additions and 141 deletions
|
@ -5,6 +5,7 @@ mkShell rec {
|
|||
|
||||
nativeBuildInputs = [
|
||||
gcc
|
||||
stdenv
|
||||
gnumake
|
||||
gdb
|
||||
qtcreator
|
||||
|
@ -27,6 +28,7 @@ mkShell rec {
|
|||
qt5.qtx11extras
|
||||
qt5.qtmultimedia
|
||||
qt5.qtwayland
|
||||
qt5.qtwebengine
|
||||
libsForQt5.kirigami2
|
||||
# libsForQt5.breeze-icons
|
||||
# libsForQt5.breeze-qt5
|
||||
|
@ -38,7 +40,7 @@ mkShell rec {
|
|||
# libsForQt5.kguiaddons
|
||||
# libsForQt5.kconfig
|
||||
|
||||
podofo
|
||||
# podofo
|
||||
mpv
|
||||
ffmpeg_6-full
|
||||
# yt-dlp
|
||||
|
@ -52,6 +54,10 @@ mkShell rec {
|
|||
corrosion
|
||||
];
|
||||
|
||||
cargoDeps = rustPlatform.importCargoLock {
|
||||
lockFile = ./Cargo.lock;
|
||||
};
|
||||
|
||||
RUST_BACKTRACE = 1;
|
||||
LIBCLANG_PATH="${llvmPackages.libclang.lib}/lib";
|
||||
# QT_SCALE_FACTOR = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue