Merge pull request #149151 from Luflosi/update/boinc

boinc: 7.14.2 -> 7.18.1
This commit is contained in:
Bobby Rong 2021-12-18 21:32:22 +08:00 committed by GitHub
commit bcaa1b4633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,8 +3,8 @@ libGLU, libGL, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK30, xcbutil,
sqlite, gtk2, patchelf, libXScrnSaver, libnotify, libX11, libxcb }:
let
majorVersion = "7.14";
minorVersion = "2";
majorVersion = "7.18";
minorVersion = "1";
in
stdenv.mkDerivation rec {
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
owner = "BOINC";
repo = "boinc";
rev = "client_release/${majorVersion}/${version}";
sha256 = "0nicpkag18xq0libfqqvs0im22mijpsxzfk272iwdd9l0lmgfvyd";
sha256 = "sha256-ijkfWTFwwJXvh6f0P5hkzWODxU+Ugz6iQUK+5jEpWXQ=";
};
nativeBuildInputs = [ libtool automake autoconf m4 pkg-config ];
@ -37,10 +37,15 @@ stdenv.mkDerivation rec {
configureFlags = [ "--disable-server" ];
meta = {
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 = lib.licenses.lgpl2Plus;
platforms = lib.platforms.linux; # arbitrary choice
license = licenses.lgpl2Plus;
platforms = platforms.linux; # arbitrary choice
maintainers = with maintainers; [ Luflosi ];
};
}