blob: 1c1fcf7de3baafa979a633d6bc6a9dec6d854902 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
NixOS build guide
------------------------------
This guide lists the steps necessary to setup and build a full GUI distribution
of the latest changes on NixOS.
Clone and enter the repo:
$ git clone https://github.com/discoin/discoin
$ cd discoin
Enter the `nix-shell` environment with all the Discoin dependencies present:
$ nix-shell ./contrib/nixos/shell.nix
Run the build steps with flags necessary for NixOS:
$ ./autogen.sh
$ ./configure --with-incompatible-bdb --with-boost-libdir="$(nix eval --raw nixpkgs.boost.out)/lib" --with-gui
$ make
Start the GUI!
$ ./src/qt/discoin-qt
|