coriolis/nix/bootstrap.nix

15 lines
234 B
Nix
Raw Normal View History

2021-08-22 05:54:22 -05:00
{ version, meta }:
2021-08-23 03:44:07 -05:00
{ lib, stdenv, python2, cmake, ninja }:
2021-08-22 05:54:22 -05:00
stdenv.mkDerivation {
pname = "coriolis-bootstrap";
src = ../bootstrap;
buildInputs = [ python2 ];
nativeBuildInputs = [ cmake ninja ];
inherit version meta;
}