This commit is contained in:
Las Safin 2021-08-27 16:29:24 +00:00
parent 024b4b232f
commit d6837972aa
No known key found for this signature in database
GPG Key ID: E7FA928911B61ED6
2 changed files with 19 additions and 0 deletions

View File

@ -37,6 +37,7 @@
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
"katana" "bora" "equinox" "knik" "katabatic" "ispd"
"karakaze"
];
in

18
nix/karakaze.nix Normal file
View File

@ -0,0 +1,18 @@
{ version, meta }:
{ lib, stdenv, cmake, ninja, python2, qt4, coriolis-crlcore
, coriolis-bootstrap, coriolis-vlsisapd, coriolis-hurricane }:
stdenv.mkDerivation {
pname = "coriolis-karakaze";
src = ../karakaze;
buildInputs = [
python2 coriolis-bootstrap coriolis-vlsisapd
coriolis-crlcore coriolis-hurricane qt4
];
nativeBuildInputs = [ cmake ninja ];
inherit version meta;
}