Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- with import <nixpkgs> {};
- stdenv.mkDerivation rec {
- name = "bytecoin";
- #version = "0.0.1";
- buildInputs = [ stdenv cmake boost.dev python ];
- src = fetchFromGitHub {
- owner = "amjuarez";
- repo = "bytecoin";
- rev = "1d48dc274048787b7a95814e216c61a1a7307ef1";
- sha256 = "1fpgl2dn2x4bjsq74c84nidffws5xw3z09cnkjb777lj1fprrfjj";
- fetchSubmodules = true;
- };
- #doCheck = true;
- meta = {
- description = "Bytecoin Reference Client";
- longDescription = ''
- The classical Bytecoin software that includes command-line daemon and simplewallet.
- '';
- homepage = https://bytecoin.org/;
- license = stdenv.lib.licenses.gpl3Plus;
- maintainers = [ ];
- platforms = stdenv.lib.platforms.all;
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement