Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. with import <nixpkgs> {};
  2.  
  3. stdenv.mkDerivation rec {
  4.   name = "bytecoin";
  5.   #version = "0.0.1";
  6.   buildInputs = [ stdenv cmake boost.dev python ];
  7.   src = fetchFromGitHub {
  8.     owner = "amjuarez";
  9.     repo = "bytecoin";
  10.     rev = "1d48dc274048787b7a95814e216c61a1a7307ef1";
  11.     sha256 = "1fpgl2dn2x4bjsq74c84nidffws5xw3z09cnkjb777lj1fprrfjj";
  12.     fetchSubmodules = true;
  13.   };
  14.  
  15.   #doCheck = true;
  16.  
  17.   meta = {
  18.     description = "Bytecoin Reference Client";
  19.     longDescription = ''
  20.     The classical Bytecoin software that includes command-line daemon and simplewallet.
  21.     '';
  22.     homepage = https://bytecoin.org/;
  23.     license = stdenv.lib.licenses.gpl3Plus;
  24.     maintainers = [ ];
  25.     platforms = stdenv.lib.platforms.all;
  26.   };
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement