From 193254e1ba5dcbc223bc69ef2285dd0cb16149fc Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 21 Nov 2022 06:38:56 -0600 Subject: [PATCH] fixing the default.nix --- default.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/default.nix b/default.nix index 8b160cf..c84e410 100644 --- a/default.nix +++ b/default.nix @@ -93,18 +93,14 @@ stdenv.mkDerivation rec { # ''; - configurePhase = '' - cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . - ''; - - buildPhase = '' - make --dir build/ - rm -rf ~/.cache/librepresenter/Libre\ Presenter/qmlcache/ - ''; + # buildPhase = '' + # rm -rf ~/.cache/librepresenter/Libre\ Presenter/qmlcache/ + # ''; installPhase = '' mkdir -p $out/bin - cp -r build/bin/* $out/bin + cp -r bin/* $out/bin + rm -rf ~/.cache/librepresenter/Libre\ Presenter/qmlcache/ ''; meta = with lib; {