mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
25 lines
584 B
Nix
25 lines
584 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "uefi-run";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Richard-W";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-tR547osqw18dCMHJLqJ8AQBelbv8yCl7rAqslu+vnDQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-s1Kbc3JHoYy0UJwNfSunIdQ3xHjlQaut/Cb0JSYyB9g=";
|
|
|
|
meta = with lib; {
|
|
description = "Directly run UEFI applications in qemu";
|
|
homepage = "https://github.com/Richard-W/uefi-run";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.maddiethecafebabe ];
|
|
};
|
|
}
|