Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 090bd931e108
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e2bae133a70f
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 11, 2018

  1. maintainers: add fuwa

    fuwa committed Nov 11, 2018
    Copy the full SHA
    6c7ff0c View commit details
  2. wownero: init at 0.4.0.0

    fuwa committed Nov 11, 2018
    Copy the full SHA
    931ebbc View commit details
  3. Merge pull request #49138 from fuwa0529/add-wownero

    wownero: init at 0.4.0.0
    infinisil authored Nov 11, 2018
    Copy the full SHA
    e2bae13 View commit details
Showing with 60 additions and 0 deletions.
  1. +5 −0 maintainers/maintainer-list.nix
  2. +4 −0 pkgs/applications/altcoins/default.nix
  3. +51 −0 pkgs/applications/altcoins/wownero.nix
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -1536,6 +1536,11 @@
github = "fuuzetsu";
name = "Mateusz Kowalczyk";
};
fuwa = {
email = "echowss@gmail.com";
github = "fuwa0529";
name = "Haruka Akiyama";
};
fuzzy-id = {
email = "hacking+nixos@babibo.de";
name = "Thomas Bach";
4 changes: 4 additions & 0 deletions pkgs/applications/altcoins/default.nix
Original file line number Diff line number Diff line change
@@ -81,6 +81,10 @@ rec {

sumokoin = callPackage ./sumokoin.nix { };

wownero = callPackage ./wownero.nix {
inherit (darwin.apple_sdk.frameworks) CoreData IOKit PCSC;
};

zcash = callPackage ./zcash {
withGui = false;
openssl = openssl_1_1;
51 changes: 51 additions & 0 deletions pkgs/applications/altcoins/wownero.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, git
, boost, miniupnpc, openssl, unbound, cppzmq
, zeromq, pcsclite, readline, libsodium
, CoreData, IOKit, PCSC
}:

assert stdenv.isDarwin -> IOKit != null;

with stdenv.lib;

stdenv.mkDerivation rec {
name = "wownero-${version}";

version = "0.4.0.0";
src = fetchFromGitHub {
owner = "wownero";
repo = "wownero";
fetchSubmodules = true;
rev = "v${version}";
sha256 = "1z5fpl4gwys4v8ffrymlzwrbnrbg73x553a9lxwny7ba8yg2k14p";
};

nativeBuildInputs = [ cmake pkgconfig git ];

buildInputs = [
boost miniupnpc openssl unbound
cppzmq zeromq pcsclite readline libsodium
] ++ optionals stdenv.isDarwin [ IOKit CoreData PCSC ];

cmakeFlags = [
"-DReadline_ROOT_DIR=${readline.dev}"
"-DMANUAL_SUBMODULES=ON"
] ++ optional stdenv.isDarwin "-DBoost_USE_MULTITHREADED=OFF";

hardeningDisable = [ "fortify" ];

meta = {
description = "Wownero is a fork of the cryptocurrency Monero with primary alterations";
longDescription = ''
Wownero’s emission is capped and supply is finite. Wownero is a fairly
launched coin with no premine. It’s not a fork of another blockchain. With
its own genesis block there is no degradation of privacy caused by ring
signatures using different participants for the same transaction outputs.
Unlike opposing forks.
'';
homepage = http://wownero.org/;
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ fuwa ];
};
}