about summary refs log tree commit diff
path: root/pkgs/tools/misc/bootspec/default.nix
blob: 789f438de50eb1294eb4990873a72a116a3ba6bb (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
25
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
  pname = "bootspec";
  version = "unstable-2022-12-05";

  src = fetchFromGitHub {
    owner = "DeterminateSystems";
    repo = pname;
    rev = "67a617ab6b99211daa92e748d27ead3f78127cf8";
    hash = "sha256-GX6Tzs/ClTUV9OXLvPFw6uBhrpCWSMI+PfrViyFEIxs=";
  };

  cargoHash = "sha256-N/hbfjsuvwCc0mxOpeVVcTxb5cA024lyLSEpVcrS7kA=";

  meta = with lib; {
    description = "Implementation of RFC-0125's datatype and synthesis tooling";
    homepage = "https://github.com/DeterminateSystems/bootspec";
    license = licenses.mit;
    maintainers = teams.determinatesystems.members;
    platforms = platforms.unix;
  };
}