about summary refs log tree commit diff
path: root/pkgs/applications/misc/cpp-ethereum
diff options
context:
space:
mode:
authorartuuge <artuuge@gmail.com>2016-10-03 11:22:44 +0200
committerartuuge <artuuge@gmail.com>2016-10-03 11:22:44 +0200
commit05001557ca28261692319c20352c1b549ca047ae (patch)
tree2ff9eb5ee434c2aaa71176868c18dea8a7bd6ddd /pkgs/applications/misc/cpp-ethereum
parent08cb89ae19f3e6f61627b27382fe08e6a9173bf8 (diff)
downloadnixlib-05001557ca28261692319c20352c1b549ca047ae.tar
nixlib-05001557ca28261692319c20352c1b549ca047ae.tar.gz
nixlib-05001557ca28261692319c20352c1b549ca047ae.tar.bz2
nixlib-05001557ca28261692319c20352c1b549ca047ae.tar.lz
nixlib-05001557ca28261692319c20352c1b549ca047ae.tar.xz
nixlib-05001557ca28261692319c20352c1b549ca047ae.tar.zst
nixlib-05001557ca28261692319c20352c1b549ca047ae.zip
cpp_ethereum: 1.2.9 -> 1.3.0
Diffstat (limited to 'pkgs/applications/misc/cpp-ethereum')
-rw-r--r--pkgs/applications/misc/cpp-ethereum/default.nix84
1 files changed, 84 insertions, 0 deletions
diff --git a/pkgs/applications/misc/cpp-ethereum/default.nix b/pkgs/applications/misc/cpp-ethereum/default.nix
new file mode 100644
index 000000000000..3cc334c6765b
--- /dev/null
+++ b/pkgs/applications/misc/cpp-ethereum/default.nix
@@ -0,0 +1,84 @@
+{ stdenv
+, fetchFromGitHub
+, cmake
+, jsoncpp
+, libjson_rpc_cpp
+, curl
+, boost
+, leveldb
+, cryptopp
+, libcpuid
+, opencl-headers
+, ocl-icd
+, miniupnpc
+, libmicrohttpd
+, gmp
+, mesa
+, extraCmakeFlags ? []
+}:
+stdenv.mkDerivation rec {
+  name = "cpp-ethereum-${version}";
+  version = "1.3.0";
+
+  src = fetchFromGitHub {
+    owner = "ethereum";
+    repo = "cpp-ethereum";
+    rev = "62ab9522e58df9f28d2168ea27999a214b16ea96";
+    sha256 = "1fxgpqhmjhpv0zzs1m3yf9h8mh25dqpa7pmcfy7f9qiqpfdr4zq9";
+  };
+
+  cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" extraCmakeFlags ];
+
+  configurePhase = ''
+    export BOOST_INCLUDEDIR=${boost.dev}/include
+    export BOOST_LIBRARYDIR=${boost.out}/lib
+
+    mkdir -p Build/Install
+    pushd Build
+
+    cmake .. -DCMAKE_INSTALL_PREFIX=$(pwd)/Install $cmakeFlags
+  '';
+
+  enableParallelBuilding = true;
+
+  runPath = with stdenv.lib; makeLibraryPath ([ stdenv.cc.cc ] ++ buildInputs);
+
+  installPhase = ''
+    make install
+
+    mkdir -p $out
+
+    for f in Install/lib/*.so* $(find Install/bin -executable -type f); do
+      patchelf --set-rpath $runPath:$out/lib $f
+    done
+
+    cp -r Install/* $out
+  '';
+
+  buildInputs = [
+    cmake
+    jsoncpp
+    libjson_rpc_cpp
+    curl
+    boost
+    leveldb
+    cryptopp
+    libcpuid
+    opencl-headers
+    ocl-icd
+    miniupnpc
+    libmicrohttpd
+    gmp
+    mesa
+  ];
+
+  dontStrip = true;
+
+  meta = with stdenv.lib; {
+    decription = "Ethereum C++ client";
+    homepage = https://github.com/ethereum/cpp-ethereum;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ artuuge ];
+    platforms = platforms.linux;
+  };
+}