mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
73 lines
1.5 KiB
Nix
73 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;
|
|
};
|
|
}
|