This commit is contained in:
Las Safin 2021-08-27 15:07:38 +00:00
parent c253ef4ed7
commit 9110d58ef2
No known key found for this signature in database
GPG Key ID: E7FA928911B61ED6
2 changed files with 23 additions and 1 deletions

View File

@ -36,7 +36,7 @@
components = [
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
"katana" "bora"
"katana" "bora" "equinox"
];
in

22
nix/equinox.nix Normal file
View File

@ -0,0 +1,22 @@
{ version, meta }:
{ lib, stdenv, cmake, ninja, python2, boost
, coriolis-bootstrap, coriolis-vlsisapd, coriolis-hurricane
, coriolis-crlcore, qt4 }:
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
stdenv.mkDerivation {
pname = "coriolis-equinox";
src = ../equinox;
buildInputs = [
python2 boostWithPython coriolis-bootstrap
coriolis-vlsisapd coriolis-hurricane coriolis-crlcore
qt4
];
nativeBuildInputs = [ cmake ninja ];
inherit version meta;
}