summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2009-12-30 18:02:07 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2009-12-30 18:02:07 +0000
commitcd2a1516210f7574bf12896215bc07aeda8861e0 (patch)
tree48ff77ab22a674dc3953726ab369dffedef8f34c /pkgs/applications
parent3fa73c9c8abe704b6ec0cdeeeb13367f8d0045f1 (diff)
downloadnixlib-cd2a1516210f7574bf12896215bc07aeda8861e0.tar
nixlib-cd2a1516210f7574bf12896215bc07aeda8861e0.tar.gz
nixlib-cd2a1516210f7574bf12896215bc07aeda8861e0.tar.bz2
nixlib-cd2a1516210f7574bf12896215bc07aeda8861e0.tar.lz
nixlib-cd2a1516210f7574bf12896215bc07aeda8861e0.tar.xz
nixlib-cd2a1516210f7574bf12896215bc07aeda8861e0.tar.zst
nixlib-cd2a1516210f7574bf12896215bc07aeda8861e0.zip
remove some old versions of qemu. svn version has also been outdated, but I'm not removing that one yet
svn path=/nixpkgs/trunk/; revision=19158
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/virtualization/qemu/0.10.3.nix18
-rw-r--r--pkgs/applications/virtualization/qemu/0.9.1.nix20
2 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/applications/virtualization/qemu/0.10.3.nix b/pkgs/applications/virtualization/qemu/0.10.3.nix
deleted file mode 100644
index 18683a209fba..000000000000
--- a/pkgs/applications/virtualization/qemu/0.10.3.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{stdenv, fetchurl, SDL, zlib, which}:
-
-stdenv.mkDerivation {
-  name = "qemu-0.10.3";
-
-  src = fetchurl {
-    url = http://download.savannah.gnu.org/releases/qemu/qemu-0.10.3.tar.gz;
-    sha256 = "0xxhyxa376vi4drjpqq21g0h6gqgb1fxamca7zinl2l8iix0sm49";
-  };
-
-  patchFlags = "-p2";
-  
-  buildInputs = [SDL zlib which];
-  
-  meta = {
-    description = "QEmu processor emulator";
-  };
-}
diff --git a/pkgs/applications/virtualization/qemu/0.9.1.nix b/pkgs/applications/virtualization/qemu/0.9.1.nix
deleted file mode 100644
index bb5ad173c0a1..000000000000
--- a/pkgs/applications/virtualization/qemu/0.9.1.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{stdenv, fetchurl, SDL, zlib, which}:
-
-stdenv.mkDerivation {
-  name = "qemu-0.9.1";
-
-  src = fetchurl {
-    url = http://bellard.org/qemu/qemu-0.9.1.tar.gz;
-    sha256 = "199mb12w141yh2afzznh539jsip4h79kfsxwaj1xhzfwljsd0mj7";
-  };
-
-  patches = [../../../os-specific/linux/kvm/smbd-path.patch];
-
-  patchFlags = "-p2";
-  
-  buildInputs = [SDL zlib which];
-  
-  meta = {
-    description = "QEmu processor emulator";
-  };
-}