Skip to content

Commit

Permalink
libclc: fix evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Mar 3, 2017
1 parent 1f7fe3d commit 75c3f00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libclc/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, python2, llvm_40, clang }:
{ stdenv, fetchFromGitHub, python2, llvm_4, clang }:

stdenv.mkDerivation {
name = "libclc-2017-02-25";
Expand All @@ -10,7 +10,7 @@ stdenv.mkDerivation {
sha256 = "1c20jyh3sdwd9r37zs4vvppmsx8vhf2xbx0cxsrc27bhx5245p0s";
};

buildInputs = [ python2 llvm_40 clang ];
buildInputs = [ python2 llvm_4 clang ];

postPatch = ''
sed -i 's,llvm_clang =.*,llvm_clang = "${clang}/bin/clang",' configure.py
Expand Down

1 comment on commit 75c3f00

@dtzWill
Copy link
Member

@dtzWill dtzWill commented on 75c3f00 Mar 8, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry about the breakage!

Please sign in to comment.