mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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.
117 lines
3.1 KiB
Nix
117 lines
3.1 KiB
Nix
{ lib, stdenv, wrapQtAppsHook, makeDesktopItem
|
|
, fetchFromGitHub
|
|
, cmake, qttools, pkg-config
|
|
, qtbase, qtdeclarative, qtgraphicaleffects
|
|
, qtmultimedia, qtxmlpatterns
|
|
, qtquickcontrols, qtquickcontrols2
|
|
, qtmacextras
|
|
, monero, miniupnpc, unbound, readline
|
|
, boost, libunwind, libsodium, pcsclite
|
|
, randomx, zeromq, libgcrypt, libgpgerror
|
|
, hidapi, rapidjson, quirc
|
|
, trezorSupport ? true
|
|
, libusb1 ? null
|
|
, protobuf ? null
|
|
, python3 ? null
|
|
}:
|
|
|
|
with lib;
|
|
|
|
assert trezorSupport -> all (x: x!=null) [ libusb1 protobuf python3 ];
|
|
|
|
let
|
|
arch = if stdenv.isx86_64 then "x86-64"
|
|
else if stdenv.isi686 then "i686"
|
|
else if stdenv.isAarch64 then "armv8-a"
|
|
else throw "unsupported architecture";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "monero-gui";
|
|
version = "0.17.1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "monero-project";
|
|
repo = "monero-gui";
|
|
rev = "v${version}";
|
|
sha256 = "0143mmxk0jfb5pmjlx6v0knvf8v49kmkpjxlp6rw8lwnlf71xadn";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake pkg-config wrapQtAppsHook
|
|
(getDev qttools)
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase qtdeclarative qtgraphicaleffects
|
|
qtmultimedia qtquickcontrols qtquickcontrols2
|
|
qtxmlpatterns
|
|
monero miniupnpc unbound readline
|
|
randomx libgcrypt libgpgerror
|
|
boost libunwind libsodium pcsclite
|
|
zeromq hidapi rapidjson quirc
|
|
] ++ optionals trezorSupport [ libusb1 protobuf python3 ]
|
|
++ optionals stdenv.isDarwin [ qtmacextras ];
|
|
|
|
postUnpack = ''
|
|
# copy monero sources here
|
|
# (needs to be writable)
|
|
cp -r ${monero.source}/* source/monero
|
|
chmod -R +w source/monero
|
|
'';
|
|
|
|
patches = [ ./move-log-file.patch ];
|
|
|
|
postPatch = ''
|
|
# set monero-gui version
|
|
substituteInPlace src/version.js.in \
|
|
--replace '@VERSION_TAG_GUI@' '${version}'
|
|
|
|
# use monerod from the monero package
|
|
substituteInPlace src/daemon/DaemonManager.cpp \
|
|
--replace 'QApplication::applicationDirPath() + "' '"${monero}/bin'
|
|
|
|
# only build external deps, *not* the full monero
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace 'add_subdirectory(monero)' \
|
|
'add_subdirectory(monero EXCLUDE_FROM_ALL)'
|
|
|
|
# use nixpkgs quirc
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace 'add_subdirectory(external)' ""
|
|
'';
|
|
|
|
cmakeFlags = [ "-DARCH=${arch}" ];
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "monero-wallet-gui";
|
|
exec = "monero-wallet-gui";
|
|
icon = "monero";
|
|
desktopName = "Monero";
|
|
genericName = "Wallet";
|
|
categories = "Network;Utility;";
|
|
};
|
|
|
|
postInstall = ''
|
|
# install desktop entry
|
|
install -Dm644 -t $out/share/applications \
|
|
${desktopItem}/share/applications/*
|
|
|
|
# install icons
|
|
for n in 16 24 32 48 64 96 128 256; do
|
|
size=$n"x"$n
|
|
install -Dm644 \
|
|
-t $out/share/icons/hicolor/$size/apps/monero.png \
|
|
$src/images/appicons/$size.png
|
|
done;
|
|
'';
|
|
|
|
meta = {
|
|
description = "Private, secure, untraceable currency";
|
|
homepage = "https://getmonero.org/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
};
|
|
}
|