Merge pull request #26762 from dtzWill/update/creduce

creduce: 2.6.0 -> 2.7.0, now uses LLVM 4
This commit is contained in:
Jörg Thalheim 2017-06-24 19:59:30 +01:00 committed by GitHub
commit 09704d35f2
2 changed files with 3 additions and 3 deletions

View File

@ -10,11 +10,11 @@ assert stdenv.isLinux -> (utillinux != null);
stdenv.mkDerivation rec {
name = "creduce-${version}";
version = "2.6.0";
version = "2.7.0";
src = fetchurl {
url = "http://embed.cs.utah.edu/creduce/${name}.tar.gz";
sha256 = "0pf5q0n8vkdcr1wrkxn2jzxv0xkrir13bwmqfw3jpbm3dh2c3b6d";
sha256 = "0h8s4d54q6cl6i45x3143l2xmr29b2yhr3m0n5qqx63sr5csip1n";
};
buildInputs = [

View File

@ -6638,7 +6638,7 @@ with pkgs;
creduce = callPackage ../development/tools/misc/creduce {
inherit (perlPackages) perl
ExporterLite FileWhich GetoptTabular RegexpCommon TermReadKey;
inherit (llvmPackages_39) llvm clang-unwrapped;
inherit (llvmPackages_4) llvm clang-unwrapped;
utillinux = if stdenv.isLinux then utillinuxMinimal else null;
};