mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
xva-img: init at 1.4.1
This commit is contained in:
parent
61525137fd
commit
9c170e66f0
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/virtualization/xva-img/default.nix
Normal file
24
pkgs/tools/virtualization/xva-img/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, lib, cmake, fetchFromGitHub, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xva-img";
|
||||
version = "1.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eriklax";
|
||||
repo = "xva-img";
|
||||
rev = version;
|
||||
sha256 = "1w3wrbrlgv7h2gdix2rmrmpjyla365kam5621a1aqjzwjqhjkwyq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = {
|
||||
maintainers = with lib.maintainers; [ lheckemann willibutz globin ];
|
||||
description = "Tool for converting Xen images to raw and back";
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -27527,6 +27527,8 @@ in
|
|||
|
||||
xteddy = callPackage ../applications/misc/xteddy { };
|
||||
|
||||
xva-img = callPackage ../tools/virtualization/xva-img { };
|
||||
|
||||
xwiimote = callPackage ../misc/drivers/xwiimote { };
|
||||
|
||||
xzoom = callPackage ../tools/X11/xzoom {};
|
||||
|
|
Loading…
Reference in a new issue