9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, openssl
|
|
, boost
|
|
, libevent
|
|
, autoreconfHook
|
|
, db4
|
|
, pkg-config
|
|
, protobuf
|
|
, hexdump
|
|
, zeromq
|
|
, withGui
|
|
, qtbase ? null
|
|
, qttools ? null
|
|
, wrapQtAppsHook ? null
|
|
}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "digibyte";
|
|
version = "7.17.2";
|
|
|
|
name = pname + toString (optional (!withGui) "d") + "-" + version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "04czj7mx3wpbx4832npk686p9pg5zb6qwlcvnmvqf31hm5qylbxj";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
hexdump
|
|
] ++ optionals withGui [
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
boost
|
|
libevent
|
|
db4
|
|
zeromq
|
|
] ++ optionals withGui [
|
|
qtbase
|
|
qttools
|
|
protobuf
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
] ++ optionals withGui [
|
|
"--with-gui=qt5"
|
|
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
];
|
|
|
|
meta = {
|
|
description = "DigiByte (DGB) is a rapidly growing decentralized, global blockchain";
|
|
homepage = "https://digibyte.io/";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.mmahut ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|