Skip to content
Snippets Groups Projects
list-store-paths-for-cachix.bash 329 B
#!/usr/bin/env bash
function list_store_paths_for_cachix {
    var_path=$1
    echo $var_path | tr ':' '\n' | sed -E -n 'sW(/nix/store/.*)/.*W\1Wp'
}

list_store_paths_for_cachix ${CMAKE_INCLUDE_PATH}
list_store_paths_for_cachix ${CMAKE_LIBRARY_PATH}
list_store_paths_for_cachix ${PATH}
list_store_paths_for_cachix ${PYTHONPATH}