mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
cpuminer-multi: remove
This commit is contained in:
parent
28d7cd8c46
commit
af6a78c0ca
|
@ -1,30 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, curl, jansson, autoconf, automake
|
||||
, aesni ? stdenv.hostPlatform.aesSupport }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "cpuminer-multi";
|
||||
version = "unstable-2016-03-16";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hyc";
|
||||
repo = "cpuminer-multi";
|
||||
rev = "8393e03089c0abde61bd5d72aba8f926c3d6eca4";
|
||||
sha256 = "11dg4rra4dgfb9x6q85irn0hrkx2lkwyrdpgdh10pag09s3vhy4v";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake curl jansson ];
|
||||
|
||||
preConfigure = ''
|
||||
./autogen.sh
|
||||
'';
|
||||
|
||||
configureFlags = [ (if aesni then "--enable-aes-ni" else "--disable-aes-ni") ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multi-algo CPUMiner";
|
||||
homepage = "https://github.com/wolf9466/cpuminer-multi";
|
||||
license = licenses.gpl2;
|
||||
# does not build on i686 https://github.com/lucasjones/cpuminer-multi/issues/27
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -155,6 +155,7 @@ mapAliases ({
|
|||
couchdb2 = throw "couchdb2 was removed from nixpkgs, use couchdb3 instead"; # added 2021-03-03
|
||||
coredumper = throw "coredumper has been removed: abandoned by upstream."; # added 2019-11-16
|
||||
cpp_ethereum = throw "cpp_ethereum has been removed; abandoned upstream."; # added 2020-11-30
|
||||
cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # added 2022-01-07
|
||||
cryptol = throw "cryptol was removed due to prolonged broken build"; # added 2020-08-21
|
||||
cpp-gsl = microsoft_gsl; # added 2019-05-24
|
||||
cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # added 2021-02-14
|
||||
|
|
|
@ -4171,8 +4171,6 @@ with pkgs;
|
|||
|
||||
cpuminer = callPackage ../tools/misc/cpuminer { };
|
||||
|
||||
cpuminer-multi = callPackage ../tools/misc/cpuminer-multi { };
|
||||
|
||||
crabz = callPackage ../tools/compression/crabz {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue