urbit/nix/nixcrpkgs/cmake_toolchain/default.nix

8 lines
171 B
Nix
Raw Normal View History

{ nixpkgs, host, cmake_system_name }:
nixpkgs.stdenv.mkDerivation {
name = "cmake_toolchain-${host}.txt";
builder = ./builder.sh;
inherit host cmake_system_name;
}