aboutsummaryrefslogtreecommitdiff
path: root/lix-doc/Cargo.toml
diff options
context:
space:
mode:
authorJade Lovelace <lix@jade.fyi>2024-04-07 16:16:21 -0700
committerjade <lix@jade.fyi>2024-04-08 04:05:13 +0000
commit0145d45806b1f60e9c7221a1f063a1b336a98eb4 (patch)
treecfe9ec77f0323da70fb297667c7df14ab137fcf5 /lix-doc/Cargo.toml
parentb995c17f0eb8d9598f339c080c467101c1f55feb (diff)
nix-doc -> lix-doc, make self-contained in package.nix
package.nix previously needed this callPackage'd externally, which didn't make a lot of sense to us since this is an internal dependency. Thus we changed it to make it more self contained. Change-Id: I4935bc0bc80e1a132bc9b1519e917791da95037c
Diffstat (limited to 'lix-doc/Cargo.toml')
-rw-r--r--lix-doc/Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/lix-doc/Cargo.toml b/lix-doc/Cargo.toml
new file mode 100644
index 000000000..df4eed932
--- /dev/null
+++ b/lix-doc/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+description = "Nix function documentation tool, stripped down into a library"
+edition = "2018"
+name = "lix-doc"
+version = "0.0.1"
+license = "BSD-2-Clause OR MIT"
+# upstream details
+homepage = "https://github.com/lf-/nix-doc"
+repository = "https://github.com/lf-/nix-doc"
+
+[lib]
+crate_type = ["staticlib"]
+
+[dependencies]
+rnix = "0.8.0"
+
+[dev-dependencies]
+expect-test = "1.1.0"