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: b3e4d346588f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 77c85338c4ac
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 8, 2020

  1. computecpp: 1.3.0 -> 2.2.1

    davidtwco committed Nov 8, 2020
    Copy the full SHA
    e26564f View commit details

Commits on Nov 24, 2020

  1. Merge pull request #97222 from davidtwco/computecpp-2.0.0

    computecpp: 1.3.0 -> 2.2.1
    SuperSandro2000 authored Nov 24, 2020
    Copy the full SHA
    77c8533 View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/development/compilers/computecpp/default.nix
9 changes: 4 additions & 5 deletions pkgs/development/compilers/computecpp/default.nix
Original file line number Diff line number Diff line change
@@ -3,24 +3,23 @@
, pkg-config
, autoPatchelfHook
, installShellFiles
, ncurses5
, ocl-icd
, zlib
}:

stdenv.mkDerivation rec {
pname = "computecpp";
version = "1.3.0";
version = "2.2.1";

src = fetchzip {
url = "https://computecpp.codeplay.com/downloads/computecpp-ce/${version}/ubuntu-16.04-64bit.tar.gz";
sha256 = "1q6gqjpzz4a260gsd6mm1iv4z8ar3vxaypmgdwl8pb4i7kg6ykaz";
url = "https://computecpp.codeplay.com/downloads/computecpp-ce/${version}/x86_64-linux-gnu.tar.gz";
hash = "sha256-niXNWbkXjd35col6dS66HdxFurXfJw/Xb2c5njukxcg=";
stripRoot = true;
};

dontStrip = true;

buildInputs = [ stdenv.cc.cc.lib ncurses5 ocl-icd zlib ];
buildInputs = [ stdenv.cc.cc.lib ocl-icd zlib ];
nativeBuildInputs = [ autoPatchelfHook pkg-config installShellFiles ];

installPhase = ''