subtree(users/wpcarro): docking briefcase at '24f5a642'
git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15cgit-subtree-split:24f5a642afChange-Id: I6105b3762b79126b3488359c95978cadb3efa789
This commit is contained in:
commit
019f8fd211
766 changed files with 175420 additions and 0 deletions
26
users/wpcarro/third_party/lisp/linear-programming.nix
vendored
Normal file
26
users/wpcarro/third_party/lisp/linear-programming.nix
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ depot, ... }:
|
||||
|
||||
let
|
||||
src = builtins.fetchGit {
|
||||
url = "https://github.com/neil-lindquist/linear-programming.git";
|
||||
rev = "8c8d55e7584773b90c4ba4b225c5f2008f4c474a";
|
||||
};
|
||||
in depot.nix.buildLisp.library {
|
||||
name = "linear-programming";
|
||||
deps = [
|
||||
(depot.nix.buildLisp.bundled "uiop")
|
||||
depot.third_party.lisp.iterate
|
||||
depot.third_party.lisp.alexandria
|
||||
];
|
||||
srcs = [
|
||||
"${src}/src/conditions.lisp"
|
||||
"${src}/src/expressions.lisp"
|
||||
"${src}/src/simplex.lisp"
|
||||
"${src}/src/system-info.lisp"
|
||||
"${src}/src/utils.lisp"
|
||||
"${src}/src/problem.lisp"
|
||||
"${src}/src/solver.lisp"
|
||||
"${src}/src/external-formats.lisp"
|
||||
"${src}/src/all.lisp"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue