about summary refs log tree commit diff
path: root/pkgs/sternenseemann/rust/default.nix
blob: f79644a893b3bf34212e4d196e626b5f839709ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ writeRustSimpleLib
, testRustSimple
}:

let

  temp = testRustSimple
    (writeRustSimpleLib "temp" {
      release = false;
      verbose = true;
      meta = {
        description = "Tiny temp dir/file crate for rust";
      };
    } ./temp.rs);

in {
  inherit
    temp
    ;
  }