particl-core: switch to fetchFromGitHub

This commit is contained in:
Felix Buehler 2021-11-02 11:02:05 +01:00
parent 2e74d854f3
commit 2a8a50b457

View file

@ -1,8 +1,9 @@
{ lib, stdenv
{ lib
, stdenv
, autoreconfHook
, boost
, db48
, fetchurl
, fetchFromGitHub
, libevent
, miniupnpc
, openssl
@ -19,9 +20,11 @@ stdenv.mkDerivation rec {
pname = "particl-core";
version = "0.19.2.14";
src = fetchurl {
url = "https://github.com/particl/particl-core/archive/v${version}.tar.gz";
sha256 = "sha256-UMU3384r4RGVl0/7OPwdDva09vhQr+9Lqb1oD/PTva8=";
src = fetchFromGitHub {
owner = "particl";
repo = "particl-core";
rev = "v${version}";
sha256 = "sha256-gJLEMfEvQ35xjKt8iN/FXi2T/GBMSS7eUqOC8XHKPBg=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];