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.
26 lines
716 B
Nix
26 lines
716 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, unbound, openssl, boost
|
|
, lmdb, miniupnpc, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dero";
|
|
version = "0.11.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deroproject";
|
|
repo = "dero";
|
|
rev = "v${version}";
|
|
sha256 = "1v8b9wbmqbpyf4jpc0v276qzk3hc5fpddcmwvv5k5yfi30nmbh5c";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ boost miniupnpc openssl lmdb unbound readline ];
|
|
|
|
meta = with lib; {
|
|
description = "Secure, private blockchain with smart contracts based on Monero";
|
|
homepage = "https://dero.io/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|