nixpkgs/pkgs/applications/virtualization/aqemu/default.nix

27 lines
658 B
Nix
Raw Normal View History

2020-04-07 20:32:37 +00:00
{ mkDerivation, cmake, fetchFromGitHub, libvncserver, qemu, qtbase, stdenv
2017-02-10 11:48:29 +00:00
}:
2020-04-07 20:32:37 +00:00
mkDerivation rec {
pname = "aqemu";
2017-02-10 11:48:29 +00:00
version = "0.9.2";
src = fetchFromGitHub {
owner = "tobimensch";
repo = "aqemu";
rev = "v${version}";
sha256 = "1h1mcw8x0jir5p39bs8ka0lcisiyi4jq61fsccgb9hsvl1i8fvk5";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libvncserver qtbase qemu ];
meta = with stdenv.lib; {
description = "A virtual machine manager GUI for qemu";
homepage = "https://github.com/tobimensch/aqemu";
2017-02-10 11:48:29 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ hrdinka ];
platforms = with platforms; linux;
};
}