boinc 7.24.2 -> 7.24.3 https://repology.org/project/boinc/versions attrpath: boinc Checking auto update branch... No auto update branch exists Old version 7.24.2" not present in master derivation file with contents: { fetchFromGitHub , lib , stdenv , autoconf , automake , pkg-config , m4 , curl , libGLU , libGL , libXmu , libXi , freeglut , libjpeg , libtool , wxGTK32 , xcbutil , sqlite , gtk3 , patchelf , libXScrnSaver , libnotify , libX11 , libxcb , headless ? false }: stdenv.mkDerivation rec { pname = "boinc"; version = "7.24.3"; src = fetchFromGitHub { name = "${pname}-${version}-src"; owner = "BOINC"; repo = "boinc"; rev = "client_release/${lib.versions.majorMinor version}/${version}"; hash = "sha256-0gyCO5t8t0SbOCBClVVu+C2VpBlxsnoRHBRYgI8nNO4="; }; nativeBuildInputs = [ libtool automake autoconf m4 pkg-config ]; buildInputs = [ curl sqlite patchelf ] ++ lib.optionals (!headless) [ libGLU libGL libXmu libXi freeglut libjpeg wxGTK32 gtk3 libXScrnSaver libnotify libX11 libxcb xcbutil ]; NIX_LDFLAGS = lib.optionalString (!headless) "-lX11"; preConfigure = '' ./_autosetup configureFlags="$configureFlags --sysconfdir=$out/etc" ''; enableParallelBuilding = true; configureFlags = [ "--disable-server" ] ++ lib.optionals headless [ "--disable-manager" ]; postInstall = '' install --mode=444 -D 'client/scripts/boinc-client.service' "$out/etc/systemd/system/boinc.service" ''; meta = with lib; { description = "Free software for distributed and grid computing"; homepage = "https://boinc.berkeley.edu/"; license = licenses.lgpl2Plus; platforms = platforms.linux; maintainers = with maintainers; [ Luflosi ]; }; }