mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
[Backport release-24.11] libbitcoin{,-client,-explorer,-network,-protocol}: drop; boost175: drop (#359101)
This commit is contained in:
commit
d8804c0ab1
9 changed files with 6 additions and 211 deletions
|
@ -1,15 +0,0 @@
|
|||
{ callPackage, fetchurl, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.75.0";
|
||||
|
||||
src = fetchurl {
|
||||
urls = [
|
||||
"mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
|
||||
"https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
|
||||
];
|
||||
# SHA256 from http://www.boost.org/users/history/version_1_75_0.html
|
||||
sha256 = "953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb";
|
||||
};
|
||||
})
|
||||
|
|
@ -16,7 +16,6 @@ let
|
|||
}
|
||||
);
|
||||
in {
|
||||
boost175 = makeBoost ./1.75.nix;
|
||||
boost177 = makeBoost ./1.77.nix;
|
||||
boost178 = makeBoost ./1.78.nix;
|
||||
boost179 = makeBoost ./1.79.nix;
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
|
||||
, boost, libbitcoin, libbitcoin-protocol }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbitcoin-client";
|
||||
version = "3.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libbitcoin";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-5qbxixaozHFsOcBxnuGEfNJyGL8UaYCOPwPakfc0bAg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
propagatedBuildInputs = [ libbitcoin libbitcoin-protocol ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-tests=no"
|
||||
"--with-boost=${boost.dev}"
|
||||
"--with-boost-libdir=${boost.out}/lib"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bitcoin client query library";
|
||||
homepage = "https://github.com/libbitcoin/libbitcoin-client";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = [ ];
|
||||
|
||||
# AGPL with a lesser clause
|
||||
license = licenses.agpl3Plus;
|
||||
};
|
||||
}
|
|
@ -1,37 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
|
||||
, boost, libbitcoin-client, libbitcoin-network }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbitcoin-explorer";
|
||||
version = "3.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libbitcoin";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-NUAtjrfRbZg5ewQo4PZ1HEoG8GRrsPcNb78UYMHqdyo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ libbitcoin-client libbitcoin-network ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-tests=no"
|
||||
"--with-boost=${boost.dev}"
|
||||
"--with-boost-libdir=${boost.out}/lib"
|
||||
"--with-bash-completiondir=$out/share/bash-completion/completions"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bitcoin command line tool";
|
||||
mainProgram = "bx";
|
||||
homepage = "https://github.com/libbitcoin/libbitcoin-explorer";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ asymmetric ];
|
||||
|
||||
# AGPL with a lesser clause
|
||||
license = licenses.agpl3Plus;
|
||||
};
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
|
||||
, boost, libbitcoin, zeromq }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbitcoin-network";
|
||||
version = "3.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libbitcoin";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-zDT92bvA779mzTodpKugCoxapB6vY2jCMSGZEkJLTXQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ libbitcoin zeromq ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-tests=no"
|
||||
"--with-boost=${boost.dev}"
|
||||
"--with-boost-libdir=${boost.out}/lib"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bitcoin P2P Network Library";
|
||||
homepage = "https://libbitcoin.info/";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ asymmetric ];
|
||||
|
||||
# AGPL with a lesser clause
|
||||
license = licenses.agpl3Plus;
|
||||
};
|
||||
}
|
|
@ -1,36 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
|
||||
, boost, libbitcoin, secp256k1, zeromq }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbitcoin-protocol";
|
||||
version = "3.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libbitcoin";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-xf0qQQnZ8h6ent1sgkVTo55+9drZM8Zbx0deYZnLBho=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ libbitcoin secp256k1 ];
|
||||
propagatedBuildInputs = [ zeromq ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-tests=no"
|
||||
"--with-boost=${boost.dev}"
|
||||
"--with-boost-libdir=${boost.out}/lib"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bitcoin Blockchain Query Protocol";
|
||||
homepage = "https://libbitcoin.info/";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ asymmetric ];
|
||||
|
||||
# AGPL with a lesser clause
|
||||
license = licenses.agpl3Plus;
|
||||
};
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
|
||||
, boost, secp256k1 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbitcoin";
|
||||
version = "3.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-7fxj2hnuGRUS4QSQ1w0s3looe9pMvE2U50/yhNyBMf0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
|
||||
propagatedBuildInputs = [ secp256k1 ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-tests=no"
|
||||
"--with-boost=${boost.dev}"
|
||||
"--with-boost-libdir=${boost.out}/lib"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "C++ library for building bitcoin applications";
|
||||
homepage = "https://libbitcoin.info/";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = [ ];
|
||||
# AGPL with a lesser clause
|
||||
license = licenses.agpl3Plus;
|
||||
};
|
||||
}
|
|
@ -152,6 +152,7 @@ mapAliases {
|
|||
blockbench-electron = blockbench; # Added 2024-03-16
|
||||
bloom = throw "'bloom' has been removed because it was unmaintained upstream."; # Added 2024-11-02
|
||||
bmap-tools = bmaptool; # Added 2024-08-05
|
||||
boost175 = throw "Boost 1.75 has been removed as it is obsolete and no longer used by anything in Nixpkgs"; # Added 2024-11-24
|
||||
boost_process = throw "boost_process has been removed as it is included in regular boost"; # Added 2024-05-01
|
||||
bpb = throw "bpb has been removed as it is unmaintained and not compatible with recent Rust versions"; # Added 2024-04-30
|
||||
bpftool = throw "'bpftool' has been renamed to/replaced by 'bpftools'"; # Converted to throw 2024-10-17
|
||||
|
@ -607,6 +608,11 @@ mapAliases {
|
|||
libbencodetools = bencodetools; # Added 2022-07-30
|
||||
libbpf_1 = libbpf; # Added 2022-12-06
|
||||
libbson = mongoc; # Added 2024-03-11
|
||||
libbitcoin = throw "libbitcoin has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
|
||||
libbitcoin-client = throw "libbitcoin-client has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
|
||||
libbitcoin-explorer = throw "libbitcoin-explorer has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
|
||||
libbitcoin-network = throw "libbitcoin-network has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
|
||||
libbitcoin-protocol = throw "libbitcoin-protocol has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
|
||||
libgme = game-music-emu; # Added 2022-07-20
|
||||
libgnome-keyring3 = libgnome-keyring; # Added 2024-06-22
|
||||
libgpgerror = throw "'libgpgerror' has been renamed to/replaced by 'libgpg-error'"; # Converted to throw 2024-10-17
|
||||
|
|
|
@ -8931,7 +8931,6 @@ with pkgs;
|
|||
else callPackage ../os-specific/linux/bionic-prebuilt { };
|
||||
|
||||
inherit (callPackage ../development/libraries/boost { inherit (buildPackages) boost-build; })
|
||||
boost175
|
||||
boost177
|
||||
boost178
|
||||
boost179
|
||||
|
@ -13491,22 +13490,6 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||
};
|
||||
|
||||
libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix {
|
||||
boost = boost175; # fatal error: 'boost/interprocess/detail/posix_time_types_wrk.hpp' file not found
|
||||
};
|
||||
libbitcoin-protocol = callPackage ../tools/misc/libbitcoin/libbitcoin-protocol.nix {
|
||||
boost = boost175;
|
||||
};
|
||||
libbitcoin-client = callPackage ../tools/misc/libbitcoin/libbitcoin-client.nix {
|
||||
boost = boost175;
|
||||
};
|
||||
libbitcoin-network = callPackage ../tools/misc/libbitcoin/libbitcoin-network.nix {
|
||||
boost = boost175;
|
||||
};
|
||||
libbitcoin-explorer = callPackage ../tools/misc/libbitcoin/libbitcoin-explorer.nix {
|
||||
boost = boost175;
|
||||
};
|
||||
|
||||
ausweisapp = qt6Packages.callPackage ../applications/misc/ausweisapp { };
|
||||
|
||||
avidemux = libsForQt5.callPackage ../applications/video/avidemux { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue