summary refs log tree commit diff
path: root/pkgs/tools/toml2nix
diff options
context:
space:
mode:
authorPierre-Etienne Meunier <pierre-etienne.meunier@mu.ie>2019-01-15 21:36:36 +0000
committerVladyslav M <dywedir@pm.me>2019-01-15 23:36:36 +0200
commit121318a9b47fa6422f0e7e44343a05067c4293c6 (patch)
treed96f91b2c1eda07a9c1de7de52164d5c805337be /pkgs/tools/toml2nix
parentfcb4d117577bf52ff81d64a19d8a784469b63819 (diff)
downloadnixpkgs-121318a9b47fa6422f0e7e44343a05067c4293c6.tar
nixpkgs-121318a9b47fa6422f0e7e44343a05067c4293c6.tar.gz
nixpkgs-121318a9b47fa6422f0e7e44343a05067c4293c6.tar.bz2
nixpkgs-121318a9b47fa6422f0e7e44343a05067c4293c6.tar.lz
nixpkgs-121318a9b47fa6422f0e7e44343a05067c4293c6.tar.xz
nixpkgs-121318a9b47fa6422f0e7e44343a05067c4293c6.tar.zst
nixpkgs-121318a9b47fa6422f0e7e44343a05067c4293c6.zip
toml2nix: init at 0.1.1 (#53883)
Diffstat (limited to 'pkgs/tools/toml2nix')
-rw-r--r--pkgs/tools/toml2nix/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/toml2nix/default.nix b/pkgs/tools/toml2nix/default.nix
new file mode 100644
index 00000000000..ac4de4eee14
--- /dev/null
+++ b/pkgs/tools/toml2nix/default.nix
@@ -0,0 +1,18 @@
+# Generated by carnix 0.9.7: carnix generate-nix
+{ lib, buildPlatform, buildRustCrate, buildRustCrateHelpers, cratesIO, fetchgit }:
+with buildRustCrateHelpers;
+let inherit (lib.lists) fold;
+    inherit (lib.attrsets) recursiveUpdate;
+in
+let crates = cratesIO; in
+rec {
+  toml2nix = crates.crates.toml2nix."0.1.1" deps;
+  __all = [ (toml2nix {}) ];
+  deps.serde."1.0.84" = {};
+  deps.toml."0.4.10" = {
+    serde = "1.0.84";
+  };
+  deps.toml2nix."0.1.1" = {
+    toml = "0.4.10";
+  };
+}