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: 6c6286610f46
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d0cb0cc7c99c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 24, 2020

  1. opencl-clhpp: 2.0.10 -> 2.0.11

    r-ryantm authored and Jon committed Mar 24, 2020
    Copy the full SHA
    d0cb0cc View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/opencl-clhpp/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/opencl-clhpp/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "opencl-clhpp";
version = "2.0.10";
version = "2.0.11";

src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "OpenCL-CLHPP";
rev = "v${version}";
sha256 = "0h5kpg5cl8wzfnqmv6i26aig2apv06ffm9p3rh35938n9r8rladm";
sha256 = "0a0n0f1lb86cwfm0ndzykcn965vz1v0n9n3rfmkiwrzkdhc9iy2y";
};

nativeBuildInputs = [ cmake python ];
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "OpenCL Host API C++ bindings";
homepage = http://github.khronos.org/OpenCL-CLHPP/;
homepage = "http://github.khronos.org/OpenCL-CLHPP/";
license = licenses.mit;
platforms = platforms.unix;
};