summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-05-01 21:35:05 +0100
committerGitHub <noreply@github.com>2018-05-01 21:35:05 +0100
commit5a990f56295d3720d65de941d74c256facfacd31 (patch)
treea4cc097fb8c3af90825977432b62ea2f684ec742
parent9a63471b3a1a5e06606bdd039b1433940ccb0308 (diff)
parent5fb826703162fcc07388a6f382d535452708fb42 (diff)
Merge pull request #39825 from tobimpub/cquery-update
cquery: 2018-03-31 -> 2018-05-01
-rw-r--r--pkgs/development/tools/misc/cquery/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/tools/misc/cquery/default.nix b/pkgs/development/tools/misc/cquery/default.nix
index 09220b2dc651..bf9797671269 100644
--- a/pkgs/development/tools/misc/cquery/default.nix
+++ b/pkgs/development/tools/misc/cquery/default.nix
@@ -5,8 +5,8 @@ let
src = fetchFromGitHub {
owner = "cquery-project";
repo = "cquery";
- rev = "e45a9ebbb6d8bfaf8bf1a3135b6faa910afea37e";
- sha256 = "049gkqbamq4r2nz9yjcwq369zrmwrikzbhfza2x2vndqzaavq5yg";
+ rev = "34b357bc5e873d52d2aa41287c6e138244cea109";
+ sha256 = "0i34v30cl73485bzpbis539x0iq9whpv0403ca5a9h6vqwnvdn7c";
fetchSubmodules = true;
};
@@ -15,7 +15,7 @@ let
in
stdenv.mkDerivation rec {
name = "cquery-${version}";
- version = "2018-03-25";
+ version = "2018-05-01";
inherit src;
@@ -46,7 +46,6 @@ stdenv.mkDerivation rec {
doInstallCheck = true;
installCheckPhase = ''
pushd ${src}
- $out/bin/cquery --ci --clang-sanity-check && \
$out/bin/cquery --ci --test-unit
'';
@@ -56,6 +55,5 @@ stdenv.mkDerivation rec {
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.tobim ];
- priority = 3;
};
}