mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-25 05:40:31 +03:00
e43da61505
Fixes a "No such file or directory: 'git': 'git'" error in running ./scripts/nixbuild on NixOS
38 lines
767 B
Nix
38 lines
767 B
Nix
let
|
|
|
|
pkgs =
|
|
builtins.fetchGit {
|
|
name = "nixpkgs-2018-11-13";
|
|
url = https://github.com/nixos/nixpkgs/;
|
|
rev = "695a3d4254545968fc3015142c5299c0da5ca0a9";
|
|
};
|
|
|
|
in
|
|
|
|
with (import pkgs {});
|
|
|
|
let
|
|
|
|
osxdeps = lib.optionals stdenv.isDarwin (
|
|
with darwin.apple_sdk.frameworks;
|
|
[ Cocoa CoreServices ]);
|
|
|
|
deps = [ cmark curl gcc git gmp libsigsegv meson ncurses ninja pkgconfig zlib
|
|
re2c openssl ];
|
|
|
|
isGitDir = (path: type: type != "directory" || baseNameOf path != ".git");
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "urbit";
|
|
|
|
src = builtins.filterSource isGitDir ./.;
|
|
|
|
buildInputs = osxdeps ++ deps;
|
|
|
|
mesonFlags = "-Dnix=true";
|
|
|
|
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework CoreServices";
|
|
}
|