about summary refs log tree commit diff
path: root/pkgs/profpatsch/rust-deps.nix
blob: d6a52258063c4bb82b927401d78ea7c5c6087911 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildRustCrate }:

let
  libc = buildRustCrate {
    pname = "libc";
    version = "0.2.69";
    crateName = "libc";
    sha256 = "0fwi6rxklsaqcig432fg3cjamiilvv2c4jz0i3dxw7c33ipprhsz";
  };

  errno = buildRustCrate {
    pname = "errno";
    version = "0.2.5";
    crateName = "errno";
    sha256 = "0gd36jijlb17df3ffxqxqczlwdawicbbzqjwfjc4b5lzqgizm0bz";
    dependencies = [ libc ];
  };

in {
  inherit
    libc
    errno
    ;
}