toml2nix: init at 0.1.1 (#53883)

This commit is contained in:
Pierre-Etienne Meunier
2019-01-15 23:36:36 +02:00
committed by Vladyslav M
parent fcb4d11757
commit 121318a9b4
3 changed files with 92 additions and 1 deletions
+18
View File
@@ -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";
};
}