mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
sumokoin: drop
Abandoned cryptocurrency; no upstream activity since 2021.
This commit is contained in:
parent
1635ae0b38
commit
8d3e3da186
2 changed files with 1 additions and 58 deletions
|
@ -1,58 +0,0 @@
|
||||||
{ lib
|
|
||||||
, stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, cmake
|
|
||||||
, pkg-config
|
|
||||||
, boost179
|
|
||||||
, openssl
|
|
||||||
, libsodium
|
|
||||||
, libunwind
|
|
||||||
, lmdb
|
|
||||||
, unbound
|
|
||||||
, zeromq
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "sumokoin";
|
|
||||||
version = "0.8.1.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "sumoprojects";
|
|
||||||
repo = "sumokoin";
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-CHZ6hh60U6mSR68CYDKMWTYyX1koF4gA7YrA1P5f0Dk=";
|
|
||||||
};
|
|
||||||
|
|
||||||
# disable POST_BUILD
|
|
||||||
postPatch = ''
|
|
||||||
sed -i 's/if (UNIX)/if (0)/g' src/utilities/*_utilities/CMakeLists.txt
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
cmake
|
|
||||||
pkg-config
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
boost179
|
|
||||||
openssl
|
|
||||||
libsodium
|
|
||||||
libunwind
|
|
||||||
lmdb
|
|
||||||
unbound
|
|
||||||
zeromq
|
|
||||||
];
|
|
||||||
|
|
||||||
env.CXXFLAGS = "-include cstdint";
|
|
||||||
|
|
||||||
# cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
|
|
||||||
hardeningDisable = [ "format" ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Fork of Monero and a truely fungible cryptocurrency";
|
|
||||||
homepage = "https://www.sumokoin.org/";
|
|
||||||
license = licenses.bsd3;
|
|
||||||
maintainers = with maintainers; [ wegank ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1176,6 +1176,7 @@ mapAliases {
|
||||||
steam-run-native = steam-run; # added 2022-02-21
|
steam-run-native = steam-run; # added 2022-02-21
|
||||||
StormLib = stormlib; # Added 2024-01-21
|
StormLib = stormlib; # Added 2024-01-21
|
||||||
sumneko-lua-language-server = lua-language-server; # Added 2023-02-07
|
sumneko-lua-language-server = lua-language-server; # Added 2023-02-07
|
||||||
|
sumokoin = throw "sumokoin has been removed as it was abandoned upstream"; # Added 2024-11-23
|
||||||
swiProlog = lib.warn "swiProlog has been renamed to swi-prolog" swi-prolog; # Added 2024-09-07
|
swiProlog = lib.warn "swiProlog has been renamed to swi-prolog" swi-prolog; # Added 2024-09-07
|
||||||
swiPrologWithGui = lib.warn "swiPrologWithGui has been renamed to swi-prolog-gui" swi-prolog-gui; # Added 2024-09-07
|
swiPrologWithGui = lib.warn "swiPrologWithGui has been renamed to swi-prolog-gui" swi-prolog-gui; # Added 2024-09-07
|
||||||
swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23
|
swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue