mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
eb019b5a6b
and drop package maintainership for removed maintainers. PlayerNameHere is now known on github as dixslyf. Editing maintainer-list.nix… Borlaag likely deleted their github account bhootjb is now known on github as jyssh. Editing maintainer-list.nix… IvanMalison is now known on github as colonelpanic8. Editing maintainer-list.nix… jonnybolton is now known on github as jonnynightingale. Editing maintainer-list.nix… ee2500 likely deleted their github account lethalman is now known on github as lucabrunox. Editing maintainer-list.nix… theHedgehog0 is now known on github as pyrox0. Editing maintainer-list.nix… maddiethecafebabe likely deleted their github account nebulka1 likely deleted their github account christianharke is now known on github as rake5k. Editing maintainer-list.nix… razvan-flavius-panda is now known on github as freeman42x. Editing maintainer-list.nix… joscha has no github handle RichterOliver is now known on github as ORichterSec. Editing maintainer-list.nix… DomesticMoth is now known on github as asciimoth. Editing maintainer-list.nix… pjbarnoy is now known on github as waaamb. Editing maintainer-list.nix…
26 lines
572 B
Nix
26 lines
572 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 = with maintainers; [ ];
|
|
};
|
|
}
|