mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 10:02:47 +03:00
8 lines
171 B
Nix
8 lines
171 B
Nix
|
{ nixpkgs, host, cmake_system_name }:
|
||
|
|
||
|
nixpkgs.stdenv.mkDerivation {
|
||
|
name = "cmake_toolchain-${host}.txt";
|
||
|
builder = ./builder.sh;
|
||
|
inherit host cmake_system_name;
|
||
|
}
|