Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9f1779e18757
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 44f24a1b8c46
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 16, 2018

  1. boinc: 7.8.0 -> 7.14.2

    Kevin Liu committed Nov 16, 2018
    Copy the full SHA
    c93b168 View commit details

Commits on Nov 17, 2018

  1. Merge pull request #50474 from Pneumaticat/boinc-update

    boinc: 7.8.0 -> 7.14.2
    c0bw3b authored Nov 17, 2018
    Copy the full SHA
    44f24a1 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/applications/science/misc/boinc/default.nix
10 changes: 5 additions & 5 deletions pkgs/applications/science/misc/boinc/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ fetchFromGitHub, stdenv, autoconf, automake, pkgconfig, m4, curl,
libGLU_combined, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK, xcbutil,
libGLU_combined, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK30, xcbutil,
sqlite, gtk2, patchelf, libXScrnSaver, libnotify, libX11, libxcb }:

let
majorVersion = "7.8";
minorVersion = "0";
majorVersion = "7.14";
minorVersion = "2";
in

stdenv.mkDerivation rec {
@@ -16,13 +16,13 @@ stdenv.mkDerivation rec {
owner = "BOINC";
repo = "boinc";
rev = "client_release/${majorVersion}/${version}";
sha256 = "08kv3fai79cc28vmyi0y4xcdd5h9xgkn9yyc6y36c0mglaxsn4pr";
sha256 = "0nicpkag18xq0libfqqvs0im22mijpsxzfk272iwdd9l0lmgfvyd";
};

nativeBuildInputs = [ libtool automake autoconf m4 pkgconfig ];

buildInputs = [
curl libGLU_combined libXmu libXi freeglut libjpeg wxGTK sqlite gtk2 libXScrnSaver
curl libGLU_combined libXmu libXi freeglut libjpeg wxGTK30 sqlite gtk2 libXScrnSaver
libnotify patchelf libX11 libxcb xcbutil
];