Merge remote-tracking branch 'origin/master'

This commit is contained in:
Revertron
2021-05-14 14:14:53 +02:00
2 changed files with 14 additions and 1 deletions
+3
View File
@@ -56,6 +56,9 @@ Install from available [AUR package](https://aur.archlinux.org/packages/alfis) c
yay -S alfis
```
### On Nix/NixOS
`nix-shell` in this repo and then run `cargo build` and `cargo install` after you have entered the shell.
## Installation
### Debian/Ubuntu (only blockchain DNS, without GUI)
+10
View File
@@ -0,0 +1,10 @@
let
# Pinned nixpkgs, deterministic. Last updated: 2/12/21.
pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/a58a0b5098f0c2a389ee70eb69422a052982d990.tar.gz")) {};
# Rolling updates, not deterministic.
# pkgs = import (fetchTarball("channel:nixpkgs-unstable")) {};
in pkgs.mkShell {
buildInputs = [ pkgs.cargo pkgs.rustc pkgs.webkitgtk pkgs.pkg-config pkgs.kdialog];
}