571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
46 lines
1.0 KiB
Nix
46 lines
1.0 KiB
Nix
{ lib, rustPlatform, fetchgit
|
|
, pkg-config, pixman, libcap_ng, cyrus_sasl
|
|
, libpulseaudio, libclang, gtk3, libusbgx, alsa-lib
|
|
, linuxHeaders, libseccomp
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "stratovirt";
|
|
version = "2.4.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://gitee.com/openeuler/stratovirt.git";
|
|
rev = "v${version}";
|
|
hash = "sha256-1Ex6ahKBoVRikSqrgHGYaBFzWkPFDm8bGVyB7KmO8tI=";
|
|
};
|
|
|
|
cargoHash = "sha256-uuZCbmt3eIlKurwMOV7LezVSjOVG/90OdT2PC8YLi3I=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs = [
|
|
pixman
|
|
libcap_ng
|
|
cyrus_sasl
|
|
libpulseaudio
|
|
gtk3
|
|
libusbgx
|
|
alsa-lib
|
|
libclang
|
|
linuxHeaders
|
|
libseccomp
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitee.com/openeuler/stratovirt";
|
|
description = "Virtual Machine Manager from Huawei";
|
|
license = licenses.mulan-psl2;
|
|
maintainers = with maintainers; [ astro ];
|
|
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
|
mainProgram = "stratovirt";
|
|
};
|
|
}
|