about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorkolaente <k@knt.li>2019-11-05 20:43:01 +0100
committerkolaente <k@knt.li>2019-11-05 20:43:01 +0100
commitc380f48acfd46c9798583184c15c9c4ea4b9bb32 (patch)
tree953aa3482263a299d0ac54f67829c2f92226b364 /pkgs/applications/blockchains
parent40d5e2da5e9ac408dd06b09fc1276b063f422540 (diff)
parent917ab4b158f1d5b41341835eb4f3df4d20cc0f8e (diff)
downloadnixlib-c380f48acfd46c9798583184c15c9c4ea4b9bb32.tar
nixlib-c380f48acfd46c9798583184c15c9c4ea4b9bb32.tar.gz
nixlib-c380f48acfd46c9798583184c15c9c4ea4b9bb32.tar.bz2
nixlib-c380f48acfd46c9798583184c15c9c4ea4b9bb32.tar.lz
nixlib-c380f48acfd46c9798583184c15c9c4ea4b9bb32.tar.xz
nixlib-c380f48acfd46c9798583184c15c9c4ea4b9bb32.tar.zst
nixlib-c380f48acfd46c9798583184c15c9c4ea4b9bb32.zip
Merge branch 'master' into update/spotify
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/jormungandr/default.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/pkgs/applications/blockchains/jormungandr/default.nix b/pkgs/applications/blockchains/jormungandr/default.nix
deleted file mode 100644
index 0898e469a6fd..000000000000
--- a/pkgs/applications/blockchains/jormungandr/default.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ stdenv
-, lib
-, fetchgit
-, rustPlatform
-, openssl
-, pkgconfig
-, protobuf
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "jormungandr";
-  version = "0.7.0-rc4";
-
-  src = fetchgit {
-    url = "https://github.com/input-output-hk/${pname}";
-    rev = "v${version}";
-    sha256 = "1cjdapy0r2bikqck64cl09vzs307wcfi628hfmpczrg33i81pr3g";
-    fetchSubmodules = true;
-  };
-
-  cargoSha256 = "0546ahgwcczaxda1hc1r20skzi93s40isq2ys40y9165sgdydn4i";
-
-  nativeBuildInputs = [ pkgconfig protobuf ];
-  buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
-
-  patchPhase = ''
-    sed -i "s~SCRIPTPATH=.*~SCRIPTPATH=$out/templates/~g" scripts/bootstrap
-  '';
-
-  installPhase = ''
-    install -d $out/bin $out/templates
-    install -m755 target/*/release/jormungandr $out/bin/
-    install -m755 target/*/release/jcli $out/bin/
-    install -m755 target/*/release/jormungandr-scenario-tests	$out/bin/
-    install -m755 scripts/send-transaction $out/templates
-    install -m755 scripts/jcli-helpers $out/bin/
-    install -m755 scripts/bootstrap $out/bin/jormungandr-bootstrap
-    install -m644 scripts/faucet-send-money.shtempl $out/templates/
-    install -m644 scripts/create-account-and-delegate.shtempl $out/templates/
-    install -m644 scripts/faucet-send-certificate.shtempl $out/templates/
-  '';
-
-  PROTOC = "${protobuf}/bin/protoc";
-
-  # Disabling integration tests
-  doCheck = false;
-
-  meta = with stdenv.lib; {
-    description = "An aspiring blockchain node";
-    homepage = "https://input-output-hk.github.io/jormungandr/";
-    license = licenses.mit;
-    maintainers = [ maintainers.mmahut ];
-    platforms = platforms.all;
-  };
-}