trying to get nix develop to work
This commit is contained in:
parent
da34f629af
commit
b45763a62c
9 changed files with 58 additions and 7 deletions
33
shell.nix
Normal file
33
shell.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
with import <nixpkgs> { };
|
||||
pkgs.mkShell {
|
||||
name = "presenter-env";
|
||||
|
||||
nativeBuildInputs = [
|
||||
gcc
|
||||
gnumake
|
||||
clang
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
pkg-config
|
||||
# gccStdenv
|
||||
# stdenv
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qt5.qtbase
|
||||
qt5.qttools
|
||||
qt5.qtquickcontrols2
|
||||
qt5.qtx11extras
|
||||
qt5.qtmultimedia
|
||||
libsForQt5.kirigami2
|
||||
libsForQt5.ki18n
|
||||
libsForQt5.kcoreaddons
|
||||
mpv
|
||||
# libsForQt5.kconfig
|
||||
# ffmpeg-full
|
||||
# yt-dlp
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue