Merge pull request #214213 from SuperSandro2000/libbitcoin-cleanup

libbitcoin: minor cleanup
This commit is contained in:
Weijia Wang 2023-02-02 22:19:39 +01:00 committed by GitHub
commit 4d0b7546d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,10 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
, boost, secp256k1 }:
let
stdenv.mkDerivation rec {
pname = "libbitcoin";
version = "3.6.0";
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = pname;
repo = pname;
@ -34,7 +31,6 @@ in stdenv.mkDerivation {
homepage = "https://libbitcoin.info/";
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ ];
# AGPL with a lesser clause
license = licenses.agpl3;
};