Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d8c1baab7362
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1452e4acb7a1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Mar 22, 2020

  1. tessera: init at 0.10.2

    mmahut committed Mar 22, 2020
    Copy the full SHA
    e8cfb12 View commit details

Commits on Mar 24, 2020

  1. Merge pull request #83135 from mmahut/tessera

    tessera: init at 0.10.2
    mmahut authored Mar 24, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1452e4a View commit details
Showing with 28 additions and 0 deletions.
  1. +26 −0 pkgs/applications/blockchains/tessera.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
26 changes: 26 additions & 0 deletions pkgs/applications/blockchains/tessera.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, fetchurl, makeWrapper, jre }:

stdenv.mkDerivation rec {
pname = "tessera";
version = "0.10.2";

src = fetchurl {
url = "https://oss.sonatype.org/service/local/repositories/releases/content/com/jpmorgan/quorum/${pname}-app/${version}/${pname}-app-${version}-app.jar";
sha256 = "1zn8w7q0q5man0407kb82lw4mlvyiy9whq2f6izf2b5415f9s0m4";
};

nativeBuildInputs = [ makeWrapper ];

dontUnpack = true;

installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/tessera --add-flags "-jar $src"
'';

meta = with stdenv.lib; {
description = "Enterprise Implementation of Quorum's transaction manager";
homepage = "https://github.com/jpmorganchase/tessera";
license = licenses.asl20;
maintainers = with maintainers; [ mmahut ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -23237,6 +23237,8 @@ in

sumokoin = callPackage ../applications/blockchains/sumokoin.nix { boost = boost165; };

tessera = callPackage ../applications/blockchains/tessera.nix { };

vertcoin = libsForQt5.callPackage ../applications/blockchains/vertcoin.nix { boost = boost165; withGui = true; };
vertcoind = callPackage ../applications/blockchains/vertcoin.nix { boost = boost165; withGui = false; };