From 0d6e2349f64c9a8627a2be2faa44436bcf6ae034 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Thu, 12 Mar 2020 15:18:33 +0100 Subject: [PATCH] quorum: remove aarch64-linux --- pkgs/applications/blockchains/quorum.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/blockchains/quorum.nix b/pkgs/applications/blockchains/quorum.nix index 86bd3b11a17..49bc0be108f 100644 --- a/pkgs/applications/blockchains/quorum.nix +++ b/pkgs/applications/blockchains/quorum.nix @@ -1,4 +1,4 @@ -{ lib, fetchFromGitHub, buildGoPackage, git, which }: +{ stdenv, fetchFromGitHub, buildGoPackage, git, which }: buildGoPackage rec { pname = "quorum"; @@ -25,10 +25,11 @@ buildGoPackage rec { cp -v build/bin/geth build/bin/bootnode build/bin/swarm $bin/bin ''; - meta = { + meta = with stdenv.lib; { description = "A permissioned implementation of Ethereum supporting data privacy"; homepage = "https://www.goquorum.com/"; - license = lib.licenses.lgpl3; - maintainers = with lib.maintainers; [ mmahut ]; + license = licenses.lgpl3; + maintainers = with maintainers; [ mmahut ]; + platforms = subtractLists ["aarch64-linux"] platforms.linux; }; }