about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/virtualization/aqemu/default.nix
blob: e7cd5b7bde68be4250e858088d999e7a0e682b50 (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 {
  name = "aqemu-${version}";
  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;
  };
}