mongoose 3.0.4 -> 7.1.0 https://github.com/DrTimothyAldenDavis/SuiteSparse/releases attrpath: mongoose Checking auto update branch... No auto update branch exists Old version 3.0.4" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , blas }: let suitesparseVersion = "7.1.0"; in stdenv.mkDerivation { pname = "mongoose"; version = "3.0.5"; outputs = [ "bin" "out" "dev" ]; src = fetchFromGitHub { owner = "DrTimothyAldenDavis"; repo = "SuiteSparse"; rev = "v${suitesparseVersion}"; hash = "sha256-UizybioU1J01PLBpu+PfnSzWScGTvMuJN5j9PjuZRwE="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ blas ]; dontUseCmakeConfigure = true; cmakeFlags = [ "-DBLAS_LIBRARIES=${blas}" "-DCMAKE_BUILD_WITH_INSTALL_NAME_DIR=ON" ]; buildPhase = '' runHook preConfigure for f in SuiteSparse_config Mongoose; do (cd $f && cmakeConfigurePhase && make -j$NIX_BUILD_CORES) done runHook postConfigure ''; installPhase = '' runHook preInstall for f in SuiteSparse_config Mongoose; do (cd $f/build && make install -j$NIX_BUILD_CORES) done runHook postInstall ''; meta = with lib; { description = "Graph Coarsening and Partitioning Library"; homepage = "https://github.com/DrTimothyAldenDavis/SuiteSparse/tree/dev/Mongoose"; license = licenses.gpl3Only; maintainers = with maintainers; [ wegank ]; platforms = with platforms; unix; }; }