mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
gridcoin-research: init at 5.4.5.0
This commit is contained in:
parent
08fda9a34d
commit
76a0d0928d
73
pkgs/applications/blockchains/gridcoin-research/default.nix
Normal file
73
pkgs/applications/blockchains/gridcoin-research/default.nix
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
{ fetchFromGitHub
|
||||||
|
, stdenv
|
||||||
|
, makeDesktopItem
|
||||||
|
, 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.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gridcoin-community";
|
||||||
|
repo = "Gridcoin-Research";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "1a174m7821c7d3yh9lyh0r3ds6qn06x16aa1qxcbrqyxxc127yky";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 = "A 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;
|
||||||
|
};
|
||||||
|
}
|
@ -36471,6 +36471,10 @@ with pkgs;
|
|||||||
|
|
||||||
go-exploitdb = callPackage ../tools/security/go-exploitdb { };
|
go-exploitdb = callPackage ../tools/security/go-exploitdb { };
|
||||||
|
|
||||||
|
gridcoin-research = libsForQt5.callPackage ../applications/blockchains/gridcoin-research {
|
||||||
|
boost = boost179;
|
||||||
|
};
|
||||||
|
|
||||||
groestlcoin = libsForQt5.callPackage ../applications/blockchains/groestlcoin {
|
groestlcoin = libsForQt5.callPackage ../applications/blockchains/groestlcoin {
|
||||||
stdenv = darwin.apple_sdk_11_0.stdenv;
|
stdenv = darwin.apple_sdk_11_0.stdenv;
|
||||||
withGui = true;
|
withGui = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user