Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
74 lines
1.5 KiB
Nix
74 lines
1.5 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
lib,
|
|
openssl,
|
|
boost,
|
|
curl,
|
|
libevent,
|
|
libzip,
|
|
qrencode,
|
|
qtbase,
|
|
qttools,
|
|
wrapQtAppsHook,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
libtool,
|
|
miniupnpc,
|
|
hexdump,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gridcoin-research";
|
|
version = "5.4.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gridcoin-community";
|
|
repo = "Gridcoin-Research";
|
|
rev = "${version}";
|
|
hash = "sha256-nupZB4nNbitpf5EBCNy0e+ovjayAszup/r7qxbxA5jI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
autoreconfHook
|
|
libtool
|
|
hexdump
|
|
];
|
|
|
|
buildInputs = [
|
|
qttools
|
|
qtbase
|
|
qrencode
|
|
libevent
|
|
libzip
|
|
openssl
|
|
boost
|
|
miniupnpc
|
|
curl
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-gui=qt5"
|
|
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
"--with-qrencode"
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "POS-based cryptocurrency that rewards users for participating on the BOINC network";
|
|
longDescription = ''
|
|
A POS-based cryptocurrency that rewards users for participating on the BOINC network,
|
|
using peer-to-peer technology to operate with no central authority - managing transactions,
|
|
issuing money and contributing to scientific research are carried out collectively by the network
|
|
'';
|
|
homepage = "https://gridcoin.us/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gigglesquid ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|