mirror of
https://github.com/urbit/shrub.git
synced 2024-11-25 07:12:10 +03:00
999bc1704e
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.
11 lines
190 B
Nix
11 lines
190 B
Nix
{ pkgs }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "arvo";
|
|
builder = ./builder.sh;
|
|
src = pkgs.buildRustCrateHelpers.exclude [ ".git" ] ../../../pkg/arvo;
|
|
meta = {
|
|
priority = 0;
|
|
};
|
|
}
|