diff --git a/devices/jykang/default.nix b/devices/jykang/default.nix index a2b4dd96..e1877d73 100644 --- a/devices/jykang/default.nix +++ b/devices/jykang/default.nix @@ -18,7 +18,7 @@ let in pkgs.symlinkJoin { name = "jykang"; - paths = with pkgs; [ gnuplot localPackages.vaspkit pv python-lyj ]; + paths = with pkgs; [ gnuplot localPackages.vaspkit pv python-lyj sqlite ]; postBuild = "echo ${inputs.self.rev or "dirty"} > $out/.version"; passthru = { inherit pkgs; }; } diff --git a/packages/hpcstat/default.nix b/packages/hpcstat/default.nix index a070d2c3..bfdf9a74 100644 --- a/packages/hpcstat/default.nix +++ b/packages/hpcstat/default.nix @@ -10,7 +10,7 @@ nativeBuildInputs = [ cmake pkg-config makeWrapper ]; cmakeFlags = lib.optionals (version != null) [ "-DHPCSTAT_VERSION=${version}" ]; postInstall = - if standalone then "cp ${openssh}/bin/{ssh-add,ssh-keygen} ${duc}/bin/duc ${sqlite}/bin/sqlite3 $out/bin" + if standalone then "cp ${openssh}/bin/{ssh-add,ssh-keygen} ${duc}/bin/duc $out/bin" else '' wrapProgram $out/bin/hpcstat --set HPCSTAT_SHAREDIR $out/share/hpcstat \