summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-11 19:46:31 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-11 19:46:31 +0000
commit2ed828052e8eca4e57baf84c59fc99c2b103313f (patch)
tree8a4c2e6b5e32643b607566fc28a507fc4ae3afae /pkgs/development/python-modules/wxPython
parent2c6200c02551ab1b873e39b8e1cb7cea27023c3e (diff)
downloadnixpkgs-2ed828052e8eca4e57baf84c59fc99c2b103313f.tar
nixpkgs-2ed828052e8eca4e57baf84c59fc99c2b103313f.tar.gz
nixpkgs-2ed828052e8eca4e57baf84c59fc99c2b103313f.tar.bz2
nixpkgs-2ed828052e8eca4e57baf84c59fc99c2b103313f.tar.lz
nixpkgs-2ed828052e8eca4e57baf84c59fc99c2b103313f.tar.xz
nixpkgs-2ed828052e8eca4e57baf84c59fc99c2b103313f.tar.zst
nixpkgs-2ed828052e8eca4e57baf84c59fc99c2b103313f.zip
Remove wxPython26 since it is not used
svn path=/nixpkgs/trunk/; revision=29773
Diffstat (limited to 'pkgs/development/python-modules/wxPython')
-rw-r--r--pkgs/development/python-modules/wxPython/2.6.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/wxPython/2.6.nix b/pkgs/development/python-modules/wxPython/2.6.nix
deleted file mode 100644
index 362f52bf44f..00000000000
--- a/pkgs/development/python-modules/wxPython/2.6.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, wxGTK, pythonPackages }:
-
-assert wxGTK.unicode;
-
-stdenv.mkDerivation {
-  name = "wxPython-2.6.3.3";
-  
-  builder = ./builder.sh;
-  
-  src = fetchurl {
-    url = mirror://sourceforge/wxpython/wxPython-src-2.6.3.3.tar.bz2;
-    md5 = "66b9c5f8e20a9505c39dab1a1234daa9";
-  };
-  
-  buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];
-  
-  passthru = { inherit wxGTK; };
-}