Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calvin-l/calvins-nix-packages
Nix packages for me. I guess someone else might find them useful too.
https://github.com/calvin-l/calvins-nix-packages
Last synced: 23 days ago
JSON representation
Nix packages for me. I guess someone else might find them useful too.
- Host: GitHub
- URL: https://github.com/calvin-l/calvins-nix-packages
- Owner: Calvin-L
- License: mit
- Created: 2024-06-29T20:02:43.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-10-18T06:42:50.000Z (2 months ago)
- Last Synced: 2024-10-20T08:42:38.811Z (2 months ago)
- Language: Nix
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Calvin's Nix Channel
This is a Nix "channel" with packages you can build.
To list available packages:
nix-env --description -qaPf . | sort
To build one, e.g. `tlaps`:
nix-build . -A tlaps -o result
./result/bin/tlapm --configFor a slightly more stable experience, replace `.` with `./stable.nix` in the
commands above. `stable.nix` pins exact upstream dependencies for a
reproducible experience.## What's Here?
A few of my own projects:
- [`caltac`](https://github.com/Calvin-L/caltac), an opinionated set of Coq
tactics.
- [`crash-safe-io`](https://github.com/Calvin-L/crash-safe-io/), a simple and
high-quality library implementing crash-safe file operations in Java.
- [`ezpsl`](https://github.com/Calvin-L/ezpsl/), a language for modeling
concurrent programs.
- [`many-smt`](https://github.com/Calvin-L/many-smt/), an SMT-LIB portfolio
solver.
- [`retry-forever`](https://github.com/Calvin-L/retry-forever), for when
failure isn't an option.And a few open source things I use:
- [`tlaps`](https://tla.msr-inria.inria.fr/tlaps/content/Home.html), the TLA+
proof system. This is a newer and far more functional version than the one
that ships with Nixpkgs. It includes:
- [`isabelle_2011`](https://isabelle.in.tum.de/website-Isabelle2011-1/index.html),
which is the most recent version of Isabelle that works with `tlaps`.
This package is heavily patched:
- heaps are discovered using the `$ISABELLE_PATH` environment variable, so
they can live somewhere outside `$HOME`
- lots of functionality that `tlaps` does not need has been removed
- fixes to compile with PolyML 5.9
- [`ls4`](https://github.com/quickbeam123/ls4), which is used by `tlaps`.
- [`ptl-to-trp-translator`](https://cgi.csc.liv.ac.uk/~konev/software/trp++/),
which is used by `tlaps`. (TODO: compare with the one in the TLAPS source
tree.)
- [`zenon`](https://github.com/zenon-prover/zenon), a first-order logic
solver.
- [`zipperposition`](https://github.com/sneeuwballen/zipperposition/), a
first-order logic solver.
- `tlatools-complete`, a wrapper for the TLA+ tools that includes the
community modules and TLAPS standard library.
- [`apalache`](https://github.com/informalsystems/apalache), a symbolic TLA+
checker. (TODO: my version is very old. Can I use the Nix flake in the
Apalache repo?)
- [`nbdkit`](https://gitlab.com/nbdkit/nbdkit), for userspace block devices on
Linux.
- [`crosstool-ng`](https://crosstool-ng.github.io/), which I use for
cross-compiling to Raspberry Pi.