about summary refs log tree commit diff
path: root/pkgs/applications/virtualization/qemu
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/virtualization/qemu')
-rw-r--r--pkgs/applications/virtualization/qemu/0.13.nix (renamed from pkgs/applications/virtualization/qemu/0.12.3.nix)9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/virtualization/qemu/0.12.3.nix b/pkgs/applications/virtualization/qemu/0.13.nix
index a16a4d587291a..45961f950cf81 100644
--- a/pkgs/applications/virtualization/qemu/0.12.3.nix
+++ b/pkgs/applications/virtualization/qemu/0.13.nix
@@ -1,18 +1,19 @@
 {stdenv, fetchurl, SDL, zlib, which}:
 
 stdenv.mkDerivation rec {
-  name = "qemu-0.12.3";
+  name = "qemu-0.13.0";
 
   src = fetchurl {
     url = "http://download.savannah.gnu.org/releases/qemu/${name}.tar.gz";
-    sha256 = "0jyyz9vm8qrjb6nzfgdwmj9y990fnk2bl9ja0sr1i555n27nzqiw";
+    sha256 = "0xyqbwy78218ja6r9ya5p37j8hcd81l4cpw3ghvnxsjwn18mhvqy";
   };
-
-  patchFlags = "-p2";
   
   buildInputs = [SDL zlib which];
   
   meta = {
     description = "QEmu processor emulator";
+    license = "GPLv2+";
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
   };
 }