aboutsummaryrefslogtreecommitdiff
path: root/hello/Cargo.nix
blob: 4db6737ec207bc6fc631bde70617a6ceebf78fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Generated by carnix 0.8.5: /home/till/.cargo/bin/carnix nix --src ./.
{ lib, buildPlatform, buildRustCrate, buildRustCrateHelpers, cratesIO, fetchgit }:
with buildRustCrateHelpers;
let inherit (lib.lists) fold;
    inherit (lib.attrsets) recursiveUpdate;
in
let crates = cratesIO // rec {
  crates.hello."0.1.0" = deps: { features?(features_.hello."0.1.0" deps {}) }: buildRustCrate {
    crateName = "hello";
    version = "0.1.0";
    authors = [ "till" ];
    src = ./.;
  };
  features_.hello."0.1.0" = deps: f: updateFeatures f (rec {
    hello."0.1.0".default = (f.hello."0.1.0".default or true);
  }) [];



}; in

rec {
  hello = crates.crates.hello."0.1.0" deps;
  __all = [ (hello {}) ];
  deps.hello."0.1.0" = {};
}