shrub/nix/pkgs/arvo/default.nix
Jared Tobin 999bc1704e
build: give arvo a high priority
0bdced981e introduced the 'arvo-ropsten' derivation.  Attempting to
install both 'arvo' and 'arvo-ropsten' via nix-env will result in a
priority error; this assigns a higher priority to 'arvo' to resolve the
conflict.

Fixes #1912.
2019-11-05 07:10:04 +08:00

11 lines
190 B
Nix

{ pkgs }:
pkgs.stdenv.mkDerivation {
name = "arvo";
builder = ./builder.sh;
src = pkgs.buildRustCrateHelpers.exclude [ ".git" ] ../../../pkg/arvo;
meta = {
priority = 0;
};
}