Initial commit

This commit is contained in:
Bryan Bennett 2023-12-21 08:51:20 -05:00
commit 69aedbe308
No known key found for this signature in database
GPG key ID: EE149E4215408DE9
10 changed files with 576 additions and 0 deletions

30
flake_env.opam Normal file
View file

@ -0,0 +1,30 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Yet another flake plugin for direnv"
maintainer: ["Bryan Bennett"]
authors: ["Bryan Bennett"]
license: "MIT"
tags: ["direnv" "nix" "flake"]
homepage: "https://sr.ht/~bryan_bennett/flake_env"
doc: "https://git.sr.ht/~bryan_bennett/flake_env"
bug-reports: "https://todo.sr.ht/~bryan_bennett/flake_env"
depends: [
"ocaml"
"dune" {>= "3.11"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://git.sr.ht/~bryan_bennett/flake_env"