trying to get nix develop to work

This commit is contained in:
Chris Cochrun 2022-05-23 06:25:21 -05:00
parent da34f629af
commit b45763a62c
9 changed files with 58 additions and 7 deletions

33
shell.nix Normal file
View 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 = ''
'';
}