bugfix: missed pkgs/xo-ordinaltree.nix
This commit is contained in:
parent
44c135489e
commit
76d8a73bbb
1 changed files with 28 additions and 0 deletions
28
pkgs/xo-ordinaltree.nix
Normal file
28
pkgs/xo-ordinaltree.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
# nixpkgs dependencies
|
||||
stdenv, cmake, catch2,
|
||||
|
||||
# xo dependencies
|
||||
xo-cmake,
|
||||
xo-refcnt,
|
||||
xo-randomgen,
|
||||
# xo-reflect,
|
||||
#, xo-indentlog,
|
||||
} :
|
||||
|
||||
stdenv.mkDerivation (finalattrs:
|
||||
{
|
||||
name = "xo-ordinaltree";
|
||||
|
||||
src = ../xo-ordinaltree;
|
||||
|
||||
cmakeFlags = ["-DCMAKE_MODULE_PATH=${xo-cmake}/share/cmake"];
|
||||
doCheck = true;
|
||||
nativeBuildInputs = [
|
||||
cmake catch2 xo-cmake
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
xo-refcnt
|
||||
xo-randomgen
|
||||
];
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue