mirror of
https://github.com/urbit/shrub.git
synced 2024-12-11 11:02:25 +03:00
19 lines
373 B
Nix
19 lines
373 B
Nix
{ crossenv }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "sni";
|
|
builder = ./builder.sh;
|
|
|
|
CC = "${crossenv.host}-gcc";
|
|
AR = "${crossenv.host}-ar";
|
|
|
|
src = crossenv.nixpkgs.fetchFromGitHub {
|
|
owner = "urbit";
|
|
repo = "sniproxy";
|
|
rev = "173beb88ee62bddd13874ca04ab338cdec704928";
|
|
sha256 = "1ib6p7vhpvbg6d5a2aimppsb09kjg4px4vlw5h3ys9zf9c1if5z4";
|
|
};
|
|
}
|
|
|
|
|