Commit a3e29b8f authored by Linus Karl's avatar Linus Karl
Browse files

kstars: fix data directory path

This fixes the data directory to not be
/nix/store/...-kstars-.../$out/share but
/nix/store/...-kstars-.../share
parent 2e2e920f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ stdenv.mkDerivation (finalAttrs: {
    (cmakeBool "BUILD_QT5" false)
    (cmakeFeature "INDI_PREFIX" "${indi-full}")
    (cmakeFeature "XPLANET_PREFIX" "${xplanet}")
    (cmakeFeature "DATA_INSTALL_DIR" "$out/share/kstars/")
    (cmakeFeature "DATA_INSTALL_DIR" (placeholder "out") + "/share/kstars/")
  ];

  meta = with lib; {