adding rust to default.nix and kcoreaddons to CMakeLists

This commit is contained in:
Chris Cochrun 2022-12-09 09:11:19 -06:00
parent 7a1f98aeb4
commit 51410f2469
2 changed files with 17 additions and 1 deletions

View file

@ -29,7 +29,14 @@
kcoreaddons,
# lightly-qt,
podofo,
mpv
mpv,
# Rust tools
clippy,
rustc,
cargo,
rustfmt,
rust-analyzer,
corrosion
}:
stdenv.mkDerivation rec {
@ -72,6 +79,13 @@ stdenv.mkDerivation rec {
# libsForQt5.kconfig
# ffmpeg-full
# yt-dlp
# Rust tools
clippy
rustc
cargo
rustfmt
rust-analyzer
corrosion
];
# preConfigure = ''
@ -103,6 +117,7 @@ stdenv.mkDerivation rec {
rm -rf ~/.cache/librepresenter/Libre\ Presenter/qmlcache/
'';
RUST_BACKTRACE = 1;
meta = with lib; {
name = "Libre Presenter";
description = "A church presentation software made with QT/QML";