python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / by-name / li / libguestfs-appliance / package.nix
blob9282997335d3c510a6e61f4b893a1ffeb5dcf5eb
2   lib,
3   stdenvNoCC,
4   fetchurl,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "libguestfs-appliance";
9   version = "1.54.0";
11   src = fetchurl {
12     url = "http://download.libguestfs.org/binaries/appliance/appliance-${version}.tar.xz";
13     hash = "sha256-D7f4Cnjx+OmLfqQWmauyXZiSjayG9TCmxftj0iOPFso=";
14   };
16   installPhase = ''
17     runHook preInstall
19     mkdir -p $out
20     cp README.fixed initrd kernel root $out
22     runHook postInstall
23   '';
25   meta = with lib; {
26     description = "VM appliance disk image used in libguestfs package";
27     homepage = "https://libguestfs.org";
28     license = with licenses; [
29       gpl2Plus
30       lgpl2Plus
31     ];
32     maintainers = with maintainers; [ lukts30 ];
33     platforms = [
34       "i686-linux"
35       "x86_64-linux"
36     ];
37     hydraPlatforms = [ ]; # Hydra fails with "Output limit exceeded"
38   };