diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-27T16·52+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-27T16·52+0000 |
commit | af26b6a1818cf9ee8b4fc9764201556f234202cd (patch) | |
tree | e7e62f6a851cd0b05af1551ef890d70d0f87d0f7 /third_party/lisp | |
parent | 7d51b40e661e53ea1904fd1cf5ca407b1497e4f2 (diff) |
Partially packages package that I partially want to use
A Poem: I wanted to try out this package... 30 minutes later after a dozen failed attempts at packaging it... I no longer want to try this package... for now.
Diffstat (limited to 'third_party/lisp')
-rw-r--r-- | third_party/lisp/linear-programming.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/third_party/lisp/linear-programming.nix b/third_party/lisp/linear-programming.nix new file mode 100644 index 000000000000..432fedb8bcac --- /dev/null +++ b/third_party/lisp/linear-programming.nix @@ -0,0 +1,26 @@ +{ depot ? import <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" + ]; +} |