aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/compilers/solc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/compilers/solc/default.nix')
-rw-r--r--nixpkgs/pkgs/development/compilers/solc/default.nix16
1 files changed, 5 insertions, 11 deletions
diff --git a/nixpkgs/pkgs/development/compilers/solc/default.nix b/nixpkgs/pkgs/development/compilers/solc/default.nix
index a1cf5b2debd..ac4bc324868 100644
--- a/nixpkgs/pkgs/development/compilers/solc/default.nix
+++ b/nixpkgs/pkgs/development/compilers/solc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchzip, boost, cmake, ncurses, python2
+{ stdenv, fetchzip, boost, cmake, ncurses, python3, coreutils
, z3Support ? true, z3 ? null, cvc4Support ? true, cvc4 ? null
, cln ? null, gmp ? null
}:
@@ -16,12 +16,12 @@ in
stdenv.mkDerivation rec {
pname = "solc";
- version = "0.5.15";
+ version = "0.6.8";
# upstream suggests avoid using archive generated by github
src = fetchzip {
url = "https://github.com/ethereum/solidity/releases/download/v${version}/solidity_${version}.tar.gz";
- sha256 = "1nfvsaci5ja5ss603z04197wndwkvcq9nm5mdab1kpdr91djxh2y";
+ sha256 = "1nxds6c10hjqjjk893qw2yljws57li0xigbf3ih85y8y6d587ph0";
};
postPatch = ''
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
buildInputs = [ boost ]
++ stdenv.lib.optionals z3Support [ z3 ]
++ stdenv.lib.optionals cvc4Support [ cvc4 cln gmp ];
- checkInputs = [ ncurses python2 ];
+ checkInputs = [ ncurses python3 ];
# Test fails on darwin for unclear reason
doCheck = stdenv.hostPlatform.isLinux;
@@ -56,13 +56,7 @@ stdenv.mkDerivation rec {
pushd ..
# IPC tests need aleth avaliable, so we disable it
sed -i "s/IPC_ENABLED=true/IPC_ENABLED=false\nIPC_FLAGS=\"--no-ipc\"/" ./scripts/tests.sh
- for i in ./scripts/*.sh; do
- patchShebangs "$i"
- done
- for i in ./scripts/*.py; do
- patchShebangs "$i"
- done
- for i in ./test/*.sh; do
+ for i in ./scripts/*.sh ./scripts/*.py ./test/*.sh; do
patchShebangs "$i"
done
TERM=xterm ./scripts/tests.sh