summary refs log tree commit diff
path: root/pkgs/applications/virtualization/aqemu/default.nix
blob: f98b8eefd78a9347578c35be4afd8ba1b4bb3a87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ cmake, fetchFromGitHub, libvncserver, qemu, qtbase, stdenv
}:

stdenv.mkDerivation rec {
  pname = "aqemu";
  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";
    license = licenses.gpl2;
    maintainers = with maintainers; [ hrdinka ];
    platforms = with platforms; linux;
  };
}