mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01: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.
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkg-config, qt4, protobuf, qrencode, hexdump
|
|
, withGui }:
|
|
|
|
with lib;
|
|
stdenv.mkDerivation rec {
|
|
version = "nc0.20.1";
|
|
name = "namecoin" + toString (optional (!withGui) "d") + "-" + version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "namecoin";
|
|
repo = "namecoin-core";
|
|
rev = version;
|
|
sha256 = "1wpfp9y95lmfg2nk1xqzchwck1wk6gwkya1rj07mf5in9jngxk9z";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
hexdump
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
boost
|
|
libevent
|
|
db4
|
|
miniupnpc
|
|
eject
|
|
] ++ optionals withGui [
|
|
qt4
|
|
protobuf
|
|
qrencode
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
];
|
|
|
|
meta = {
|
|
description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency";
|
|
homepage = "https://namecoin.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ infinisil ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|