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.
44 lines
1018 B
Nix
44 lines
1018 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, git, doxygen, graphviz
|
|
, boost, miniupnpc, openssl, unbound, cppzmq
|
|
, zeromq, pcsclite, readline, libsodium
|
|
}:
|
|
|
|
let
|
|
version = "0.13.0.0";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "aeon";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aeonix";
|
|
repo = "aeon";
|
|
rev = "v${version}-aeon";
|
|
fetchSubmodules = true;
|
|
sha256 = "07d87n1j4dc9gfwj6xy5jdpryn45095xdh961g6xjnjzc5fivjch";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config git doxygen graphviz ];
|
|
|
|
buildInputs = [
|
|
boost miniupnpc openssl unbound
|
|
cppzmq zeromq pcsclite readline libsodium
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-DBUILD_GUI_DEPS=ON"
|
|
"-DReadline_ROOT_DIR=${readline.dev}"
|
|
];
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
meta = with lib; {
|
|
description = "Private, secure, untraceable currency";
|
|
homepage = "http://www.aeon.cash/";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.aij ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|