about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2020-03-12 15:18:33 +0100
committerMarek Mahut <marek.mahut@gmail.com>2020-03-12 15:20:04 +0100
commit0d6e2349f64c9a8627a2be2faa44436bcf6ae034 (patch)
treedf3723e6b3ab8df5328ae4a9d7c97ab62efcc740 /pkgs/applications/blockchains
parent0d08c34be20fa662f773f2baf9bee08204b56538 (diff)
quorum: remove aarch64-linux
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/quorum.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/blockchains/quorum.nix b/pkgs/applications/blockchains/quorum.nix
index 86bd3b11a17f6..49bc0be108ff6 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;
   };
 }