mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
uefi-run: init at 0.5.0 (#184200)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
7c9cb921e6
commit
cf49501b21
@ -8107,6 +8107,12 @@
|
||||
githubId = 42545625;
|
||||
name = "Maas Lalani";
|
||||
};
|
||||
maddiethecafebabe = {
|
||||
email = "maddie@cafebabe.date";
|
||||
github = "maddiethecafebabe";
|
||||
githubId = 75337286;
|
||||
name = "Madeline S.";
|
||||
};
|
||||
madjar = {
|
||||
email = "georges.dubus@compiletoi.net";
|
||||
github = "madjar";
|
||||
|
25
pkgs/tools/virtualization/uefi-run/default.nix
Normal file
25
pkgs/tools/virtualization/uefi-run/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "uefi-run";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Richard-W";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-fwzWdOinW/ECVI/65pPB1shxPdl2nZThAqlg8wlWg/g=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-c+wzMzTkG0FpfQ1rZ8e9dn0ez12vmoecrtNeFk90sdQ=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Directly run UEFI applications in qemu";
|
||||
homepage = "https://github.com/Richard-W/uefi-run";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.maddiethecafebabe ];
|
||||
};
|
||||
}
|
@ -31878,6 +31878,8 @@ with pkgs;
|
||||
|
||||
ueberzug = with python3Packages; toPythonApplication ueberzug;
|
||||
|
||||
uefi-run = callPackage ../tools/virtualization/uefi-run { };
|
||||
|
||||
uhhyou.lv2 = callPackage ../applications/audio/uhhyou.lv2 { };
|
||||
|
||||
umurmur = callPackage ../applications/networking/umurmur {
|
||||
|
Loading…
Reference in New Issue
Block a user