From dbee2b8ee9e51868d4fb09d6d685a41959630f4f Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 17 Mar 2013 16:18:36 -0700 Subject: [PATCH 001/167] cuetools-1.3.1 --- pkgs/tools/cd-dvd/cuetools/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/tools/cd-dvd/cuetools/default.nix diff --git a/pkgs/tools/cd-dvd/cuetools/default.nix b/pkgs/tools/cd-dvd/cuetools/default.nix new file mode 100644 index 000000000000..fd58e3ea6e27 --- /dev/null +++ b/pkgs/tools/cd-dvd/cuetools/default.nix @@ -0,0 +1,19 @@ +{stdenv, fetchurl, automake, autoconf, flex, bison }: + +stdenv.mkDerivation { + name = "cuetools-1.3.1"; + + src = fetchurl { + url = https://github.com/svend/cuetools/archive/cuetools-1.3.1.tar.gz; + sha256 = "1cap3wl0mlcqrjywpz46003w8jws05rr3r87pzqkz1g89v9459dg"; + }; + + preConfigure = "autoreconf -fiv"; + + buildInputs = [ automake autoconf flex bison ]; + + meta = { + description = "cue and toc file parsers and utilities"; + homepage = https://github.com/svend/cuetools; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ba6f934f01e7..9af85e06f3f6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -579,6 +579,8 @@ let cowsay = callPackage ../tools/misc/cowsay { }; + cuetools = callPackage ../tools/cd-dvd/cuetools { }; + unifdef = callPackage ../development/tools/misc/unifdef { }; "unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { }; From 94a3a5e00a6986d2520dee972c3235fc0d51f028 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 24 Mar 2013 22:08:09 -0700 Subject: [PATCH 002/167] shntool-3.0.10 --- pkgs/applications/audio/shntool/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/applications/audio/shntool/default.nix diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix new file mode 100644 index 000000000000..68fb8bfb1423 --- /dev/null +++ b/pkgs/applications/audio/shntool/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, flac }: + +stdenv.mkDerivation rec { + version = "3.0.10"; + name = "shntool-${version}"; + + src = fetchurl { + url = http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz; + sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l"; + }; + + buildInputs = [ flac ]; + + meta = { + description = "multi-purpose WAVE data processing and reporting utility"; + homepage = http://www.etree.org/shnutils/shntool/; + license = "GPLv2+"; + platforms = with stdenv.lib.platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1e269b6f97d5..bb35ee95dd64 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7762,6 +7762,8 @@ let guile = guile_1_8; }; + shntool = callPackage ../applications/audio/shntool { }; + sonic_visualiser = callPackage ../applications/audio/sonic-visualiser { inherit (pkgs.vamp) vampSDK; inherit (pkgs.xlibs) libX11; From fa2d85fded5b155ee9b95205195ae84e4cb7d66c Mon Sep 17 00:00:00 2001 From: Marco Maggesi Date: Mon, 25 Mar 2013 10:56:57 +0100 Subject: [PATCH 003/167] Update HOL Light to rev 157 --- .../science/logic/hol_light/default.nix | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/pkgs/applications/science/logic/hol_light/default.nix b/pkgs/applications/science/logic/hol_light/default.nix index 3ba9e7eb49f6..f9549241a45c 100644 --- a/pkgs/applications/science/logic/hol_light/default.nix +++ b/pkgs/applications/science/logic/hol_light/default.nix @@ -4,28 +4,20 @@ let start_script = '' #!/bin/sh cd "$out/lib/hol_light" - exec ${ocaml}/bin/ocaml -I "$(ocamlfind query camlp5)" -init make.ml + exec ${ocaml}/bin/ocaml -I "camlp5 -where" -init make.ml ''; in stdenv.mkDerivation { - name = "hol_light-20130124"; + name = "hol_light-20130324"; src = fetchsvn { url = http://hol-light.googlecode.com/svn/trunk; - rev = "155"; - sha256 = "057223kcv7y2vcnyzvrygvdafn6mb7ycr1m5rj3fsrwz0yl8dqnr"; + rev = "157"; + sha256 = "0d0pbnkw2gb11dn30ggfl91lhdxv86kd1fyiqn170w08n0gi805f"; }; buildInputs = [ ocaml findlib camlp5 ]; - buildPhase = '' - make pa_j.ml - ocamlc -c \ - -pp "camlp5r pa_lexer.cmo pa_extend.cmo q_MLast.cmo" \ - -I "$(ocamlfind query camlp5)" \ - pa_j.ml - ''; - installPhase = '' mkdir -p "$out/lib/hol_light" "$out/bin" cp -a . $out/lib/hol_light @@ -45,6 +37,6 @@ can extend it with new theorems and inference rules without compromising its soundness. ''; homepage = http://www.cl.cam.ac.uk/~jrh13/hol-light/; - license = "BSD"; + license = stdenv.lib.licenses.bsd2; }; } From 1c4e7e78ced8e4504ec29ab72449bf35d2a9a37f Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Tue, 26 Mar 2013 22:52:54 +0800 Subject: [PATCH 004/167] Add chicken-4.8.1 --- pkgs/development/compilers/chicken/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 pkgs/development/compilers/chicken/default.nix diff --git a/pkgs/development/compilers/chicken/default.nix b/pkgs/development/compilers/chicken/default.nix new file mode 100644 index 000000000000..deb93257df73 --- /dev/null +++ b/pkgs/development/compilers/chicken/default.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation { + name = "chicken-4.8.1"; + + meta = { + homepage = http://www.call-cc.org/; + description = "Chicken Scheme"; + }; + + src = fetchurl { + url = http://code.call-cc.org/dev-snapshots/2013/01/04/chicken-4.8.1.tar.gz; + md5 = "bd758ec7abeaeb4f4c92c290fb5f3db7"; + }; + + buildFlags = "PLATFORM=linux PREFIX=$(out) VARDIR=$(out)/var/lib"; + installFlags = "PLATFORM=linux PREFIX=$(out) VARDIR=$(out)/var/lib"; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f7f9aa08b8c5..78bc9fe474df 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1940,6 +1940,8 @@ let bigloo = callPackage ../development/compilers/bigloo { }; + chicken = callPackage ../development/compilers/chicken { }; + ccl = builderDefsPackage ../development/compilers/ccl {}; clangUnwrapped = callPackage ../development/compilers/llvm/clang.nix { From e70954f8c856c76a25a03c838b182d666ea59374 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 27 Mar 2013 19:51:32 +0100 Subject: [PATCH 005/167] New package: g500-control g500-control is a small tool to configure internal profiles of a Logitech G500 mouse. Signed-off-by: Moritz Ulrich --- pkgs/tools/misc/g500-control/default.nix | 34 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/tools/misc/g500-control/default.nix diff --git a/pkgs/tools/misc/g500-control/default.nix b/pkgs/tools/misc/g500-control/default.nix new file mode 100644 index 000000000000..1055b3c8d5be --- /dev/null +++ b/pkgs/tools/misc/g500-control/default.nix @@ -0,0 +1,34 @@ +{stdenv, fetchurl, coreutils}: + +stdenv.mkDerivation rec { + name = "g500-control-0.0.1"; + + src = fetchurl { + url = "http://g500-control.googlecode.com/files/g500_control_0.0.1.tar.gz"; + sha256 = "1xlg9lpxnk3228k81y1i6jjh4df1p4jh64g54w969g6a6v6dazvb"; + }; + + buildInputs = [ coreutils ]; + + unpackPhase = '' + mkdir -pv g500-control + tar -C g500-control/ -xf $src + ''; + + buildPhase = '' + cd g500-control + gcc -o g500-control *.c + ''; + + installPhase = '' + mkdir -pv $out/bin/ + cp g500-control $out/bin/ + ''; + + meta = { + homepage = http://code.google.com/p/g500-control/; + description = "Configure Logitech G500's internal profile under Linux"; + license = stdenv.lib.licenses.gpl2; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e72c0fe3d10e..94f8a018bd0e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -811,6 +811,8 @@ let uni2ascii = callPackage ../tools/text/uni2ascii { }; + g500-control = callPackage ../tools/misc/g500-control { }; + gawk = callPackage ../tools/text/gawk { }; gdmap = callPackage ../tools/system/gdmap { }; From da90131e5a8aa45545b4dafa2ce2fa052f2e109a Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 27 Mar 2013 20:59:57 +0100 Subject: [PATCH 006/167] g500-control: Add meta.platforms. Signed-off-by: Moritz Ulrich --- pkgs/tools/misc/g500-control/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/misc/g500-control/default.nix b/pkgs/tools/misc/g500-control/default.nix index 1055b3c8d5be..adccde71c46d 100644 --- a/pkgs/tools/misc/g500-control/default.nix +++ b/pkgs/tools/misc/g500-control/default.nix @@ -29,6 +29,7 @@ stdenv.mkDerivation rec { homepage = http://code.google.com/p/g500-control/; description = "Configure Logitech G500's internal profile under Linux"; license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; }; } From f3f3a728f664f86c7664a596c8b1752b70bccdb8 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 27 Mar 2013 16:35:42 -0400 Subject: [PATCH 007/167] generate-cpan-package: Don't hard-code Eelco's environment Signed-off-by: Shea Levy --- maintainers/scripts/generate-cpan-package | 2 -- 1 file changed, 2 deletions(-) diff --git a/maintainers/scripts/generate-cpan-package b/maintainers/scripts/generate-cpan-package index f091625b6ce7..2817e23e2fa9 100755 --- a/maintainers/scripts/generate-cpan-package +++ b/maintainers/scripts/generate-cpan-package @@ -1,7 +1,5 @@ #! /bin/sh -e -export PERL5LIB=/nix/var/nix/profiles/per-user/eelco/cpan-generator/lib/perl5/site_perl - name="$1" [ -n "$name" ] || { echo "no name"; exit 1; } From 7a69bd708ec6fd0838cf000a5d2ec4a78f933a8c Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 27 Mar 2013 16:35:54 -0400 Subject: [PATCH 008/167] Add the DBIxClassHelpers package Signed-off-by: Shea Levy --- pkgs/top-level/perl-packages.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 7855a1a1eb3d..4291fde5908e 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1553,6 +1553,19 @@ rec { }; }; + DBIxClassCandy = buildPerlPackage { + name = "DBIx-Class-Candy-0.002103"; + src = fetchurl { + url = mirror://cpan/authors/id/F/FR/FREW/DBIx-Class-Candy-0.002103.tar.gz; + sha256 = "1vcaigvzxq9jjkhw2bkayrnsa76sakr3wrv7009f1dxyfa0iyrsk"; + }; + propagatedBuildInputs = [ TestDeep TestFatal DBIxClass LinguaENInflect StringCamelCase ]; + meta = { + description = "Sugar for your favorite ORM, DBIx::Class"; + license = "perl5"; + }; + }; + DBIxClassCursorCached = buildPerlPackage { name = "DBIx-Class-Cursor-Cached-1.001002"; src = fetchurl { @@ -1576,6 +1589,19 @@ rec { propagatedBuildInputs = [DBIxClass HTMLWidget]; }; + DBIxClassHelpers = buildPerlPackage { + name = "DBIx-Class-Helpers-2.016005"; + src = fetchurl { + url = mirror://cpan/authors/id/F/FR/FREW/DBIx-Class-Helpers-2.016005.tar.gz; + sha256 = "0nkskc0h284l2q3m33553i8g4pr1kcx7vmwz8bi1kmga16bs7nqk"; + }; + propagatedBuildInputs = [ DBIxClassCandy TestDeep CarpClan DBDSQLite ]; + meta = { + description = "Simplify the common case stuff for DBIx::Class."; + license = "perl5"; + }; + }; + DBIxClassIntrospectableM2M = buildPerlPackage { name = "DBIx-Class-IntrospectableM2M-0.001001"; src = fetchurl { From 64bc336f50a2203f8c8feccd0eef4b5462c6de16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Wed, 27 Mar 2013 22:25:33 +0100 Subject: [PATCH 009/167] Blender 2.66 WIP --- pkgs/applications/misc/blender/default.nix | 17 ++-- .../interpreters/python/3.3/default.nix | 82 +++++++++++++++++++ pkgs/development/libraries/oiio/default.nix | 27 ++++++ pkgs/top-level/all-packages.nix | 7 +- 4 files changed, 124 insertions(+), 9 deletions(-) create mode 100644 pkgs/development/interpreters/python/3.3/default.nix create mode 100644 pkgs/development/libraries/oiio/default.nix diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 828d55ad4789..b9c32c982ec4 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -1,26 +1,29 @@ -{ stdenv, fetchurl, SDL, cmake, gettext, ilmbase, libXi, libjpeg, -libpng, libsamplerate, libtiff, mesa, openal, openexr, openjpeg, +{ stdenv, fetchurl, SDL, cmake, ffmpeg, gettext, glew, ilmbase, libXi, libjpeg, +libpng, libsamplerate, libtiff, mesa, oiio, openal, openexr, openjpeg, python, zlib, boost }: stdenv.mkDerivation rec { - name = "blender-2.63a"; + name = "blender-2.66a"; src = fetchurl { url = "http://download.blender.org/source/${name}.tar.gz"; - sha256 = "c479b1abfe5fd8a1a5d04b8d21fdbc0fc960d7855b24785b888c09792bca4c1a"; + sha256 = "0wj8x9xk5irvsjc3rm7wzml1j47xcdpdpy84kidafk02biskcqcb"; }; - buildInputs = [ cmake mesa gettext python libjpeg libpng zlib openal - SDL openexr libsamplerate libXi libtiff ilmbase openjpeg boost ]; + buildInputs = [ cmake mesa ffmpeg gettext python glew libjpeg libpng zlib openal + SDL openexr libsamplerate libXi libtiff ilmbase oiio openjpeg boost ]; + cmakeFlags = [ "-DOPENEXR_INC=${openexr}/include/OpenEXR" "-DWITH_OPENCOLLADA=OFF" "-DWITH_INSTALL_PORTABLE=OFF" + "-DPYTHON_LIBRARY=python${python.majorVersion}m" "-DPYTHON_LIBPATH=${python}/lib" + "-DPYTHON_INCLUDE_DIR=${python}/include/python${python.majorVersion}m" ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR -I${python}/include/${python.libPrefix}"; + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR -I${python}/include/${python.libPrefix}m"; enableParallelBuilding = true; diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix new file mode 100644 index 000000000000..7baecad76c6b --- /dev/null +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -0,0 +1,82 @@ +{ stdenv, fetchurl +, bzip2 +, db4 +, gdbm +, libX11, xproto +, ncurses +, openssl +, readline +, sqlite +, tcl, tk +, zlib +}: + +assert readline != null -> ncurses != null; + +with stdenv.lib; + +let + majorVersion = "3.3"; + version = "${majorVersion}.1rc1"; + + buildInputs = filter (p: p != null) [ + zlib bzip2 gdbm sqlite db4 readline ncurses openssl tcl tk libX11 xproto + ]; +in +stdenv.mkDerivation { + name = "python3-${version}"; + inherit majorVersion version; + + src = fetchurl { + url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2"; + sha256 = "1pnsbdzbd3750jcy32sv1760lv7am4x3f33jn1kmdmd82za279gv"; + }; + + preConfigure = '' + for i in /usr /sw /opt /pkg; do # improve purity + substituteInPlace ./setup.py --replace $i /no-such-path + done + ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} + + configureFlagsArray=( --enable-shared --with-threads + CPPFLAGS="${concatStringsSep " " (map (p: "-I${p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${p}/lib") buildInputs)}" + LIBS="-lcrypt ${optionalString (ncurses != null) "-lncurses"}" + ) + ''; + + setupHook = ./setup-hook.sh; + + postInstall = '' + rm -rf "$out/lib/python${majorVersion}/test" + ''; + + passthru = { + zlibSupport = zlib != null; + sqliteSupport = sqlite != null; + db4Support = db4 != null; + readlineSupport = readline != null; + opensslSupport = openssl != null; + tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null); + libPrefix = "python${majorVersion}"; + }; + + enableParallelBuilding = true; + + meta = { + homepage = "http://python.org"; + description = "a high-level dynamically-typed programming language"; + longDescription = '' + Python is a remarkably powerful dynamic programming language that + is used in a wide variety of application domains. Some of its key + distinguishing features include: clear, readable syntax; strong + introspection capabilities; intuitive object orientation; natural + expression of procedural code; full modularity, supporting + hierarchical packages; exception-based error handling; and very + high level dynamic data types. + ''; + license = stdenv.lib.licenses.psfl; + platforms = stdenv.lib.platforms.all; + maintainers = with stdenv.lib.maintainers; [ simons chaoflow ]; + }; +} diff --git a/pkgs/development/libraries/oiio/default.nix b/pkgs/development/libraries/oiio/default.nix new file mode 100644 index 000000000000..1b6b8be115ff --- /dev/null +++ b/pkgs/development/libraries/oiio/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, cmake, unzip, boost, libjpeg, libtiff, libpng, openexr, ilmbase }: + +stdenv.mkDerivation rec { + name = "oiio-${version}"; + version = "1.1.8"; + + src = fetchurl { + url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip"; + sha256 = "08a6qhplzs8kianqb1gjgrndg81h3il5531jn9g6i4940b1xispg"; + }; + + buildInputs = [ cmake unzip boost libjpeg libtiff libpng openexr ilmbase ]; + + configurePhase = ""; + + buildPhase = "make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 INSTALLDIR=$out dist_dir="; + + installPhase = "echo hallo"; + + meta = with stdenv.lib; { + homepage = http://www.openimageio.org; + description = "A library for reading and writing images"; + license = licenses.bsd3; + maintainers = [ maintainers.goibhniu ]; + platforms = platforms.linux; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 354559a1efe2..53c4feb06763 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2876,8 +2876,9 @@ let pure = callPackage ../development/interpreters/pure {}; - python3 = python32; + python3 = python33; python32 = callPackage ../development/interpreters/python/3.2 { }; + python33 = callPackage ../development/interpreters/python/3.3 { }; python = python27; python26 = callPackage ../development/interpreters/python/2.6 { }; @@ -4711,6 +4712,8 @@ let opensc = opensc_0_11_7; }; + oiio = callPackage ../development/libraries/oiio { }; + ois = callPackage ../development/libraries/ois {}; opal = callPackage ../development/libraries/opal {}; @@ -6647,7 +6650,7 @@ let }; blender = callPackage ../applications/misc/blender { - python = python32; + python = python3; }; bristol = callPackage ../applications/audio/bristol { }; From 3300479c74c868ad55c391d30e27db55604e6e7a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 27 Mar 2013 13:58:31 +0100 Subject: [PATCH 010/167] systemd: Update to 199 This incorporates some changes from https://github.com/vcunat/nixpkgs/commit/eb64a2f5620a9ba6ac7f598694d82db0cf83e669. --- ...aemon-reexec-do-the-right-thing-on-N.patch | 10 ++--- ...e-duplicate-paths-in-systemctl-start.patch | 19 ++++----- ...ts-for-uninitialised-encrypted-devic.patch | 6 +-- ...o-configuration-hints-for-some-units.patch | 18 ++++---- ...rop-the-dependency-on-local-fs.targe.patch | 6 +-- .../0006-Don-t-call-plymouth-quit.patch | 6 +-- ...007-Ignore-IPv6-link-local-addresses.patch | 2 +- ...lt-in-nscd-when-using-nss-myhostname.patch | 42 ------------------- ...andle-missing-etc-sysctl.conf-proper.patch | 28 +++++++++++++ pkgs/os-specific/linux/systemd/default.nix | 14 +++---- 10 files changed, 68 insertions(+), 83 deletions(-) delete mode 100644 pkgs/os-specific/linux/systemd/0008-Fix-a-segfault-in-nscd-when-using-nss-myhostname.patch create mode 100644 pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch diff --git a/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch b/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch index 9afa7543e571..27facd4f3cc3 100644 --- a/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch +++ b/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch @@ -1,7 +1,7 @@ -From 0085f49cd0ba889e3db9102f328f6044ae3a2c18 Mon Sep 17 00:00:00 2001 +From ebbb4bc256e1ed53c594fc54d9e1a9faf5a5f77a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:44:33 +0100 -Subject: [PATCH 1/6] Make "systemctl daemon-reexec" do the right thing on +Subject: [PATCH 1/8] Make "systemctl daemon-reexec" do the right thing on NixOS --- @@ -9,10 +9,10 @@ Subject: [PATCH 1/6] Make "systemctl daemon-reexec" do the right thing on 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/main.c b/src/core/main.c -index 1ee3c9c..1686f60 100644 +index 25f55fc..c2e42b7 100644 --- a/src/core/main.c +++ b/src/core/main.c -@@ -1858,7 +1858,7 @@ finish: +@@ -1887,7 +1887,7 @@ finish: char_array_0(sfd); i = 0; @@ -22,5 +22,5 @@ index 1ee3c9c..1686f60 100644 args[i++] = "--switched-root"; args[i++] = arg_running_as == SYSTEMD_SYSTEM ? "--system" : "--user"; -- -1.8.0.1 +1.8.1 diff --git a/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch b/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch index 76160a1f7cc1..c6a648678bec 100644 --- a/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch +++ b/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch @@ -1,30 +1,29 @@ -From 2b0a9106d3aabb365af0cc34b595a1e697120f37 Mon Sep 17 00:00:00 2001 +From 64c36ac79fca8f0214faed8b7aff19b379b1ac1b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:45:01 +0100 -Subject: [PATCH 2/6] Ignore duplicate paths in "systemctl start" +Subject: [PATCH 2/8] Ignore duplicate paths in "systemctl start" --- - src/systemctl/systemctl.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) + src/systemctl/systemctl.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c -index 2ebfff8..9f99df5 100644 +index edd136a..86ce32a 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c -@@ -1591,8 +1591,11 @@ static int start_unit_one( - +@@ -1510,8 +1510,10 @@ static int start_unit_one( r = set_put(s, p); if (r < 0) { + free(p); - log_error("Failed to add path to set."); - return r; -+ free(p); + if (r != -EEXIST) { + log_error("Failed to add path %s to set.", p); + return r; + } } + } - p = NULL; -- -1.8.0.1 +1.8.1 diff --git a/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch b/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch index a16a2672feb5..23133547fd01 100644 --- a/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch +++ b/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch @@ -1,7 +1,7 @@ -From a013beb84f135cebf1c8c9363d5676c1c0a6be7a Mon Sep 17 00:00:00 2001 +From 776093e73b86bcddfeb0971cb6267d13d07f0a81 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:46:30 +0100 -Subject: [PATCH 3/6] Start device units for uninitialised encrypted devices +Subject: [PATCH 3/8] Start device units for uninitialised encrypted devices This is necessary because the NixOS service that initialises the filesystem depends on the appearance of the device unit. Also, this @@ -28,5 +28,5 @@ index d17bdd9..040b10e 100644 SUBSYSTEM=="block", ENV{DEVTYPE}=="disk", KERNEL=="md*", TEST!="md/array_state", ENV{SYSTEMD_READY}="0" SUBSYSTEM=="block", ENV{DEVTYPE}=="disk", KERNEL=="md*", ATTR{md/array_state}=="|clear|inactive", ENV{SYSTEMD_READY}="0" -- -1.8.0.1 +1.8.1 diff --git a/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch b/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch index beab35d63a06..483c1f812870 100644 --- a/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch +++ b/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch @@ -1,7 +1,7 @@ -From b40d8783f94666035baae567882c0d4be82cda01 Mon Sep 17 00:00:00 2001 +From 0bc7513439a8b77f62bc8ebcf220b77f83321b75 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:48:19 +0100 -Subject: [PATCH 4/6] Set switch-to-configuration hints for some units +Subject: [PATCH 4/8] Set switch-to-configuration hints for some units MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @@ -24,22 +24,22 @@ to prevent all user sessions from being killed when this unit changes. 4 files changed, 12 insertions(+) diff --git a/units/local-fs.target b/units/local-fs.target -index dd92b17..dfcbc7b 100644 +index ee02e4e..63ae843 100644 --- a/units/local-fs.target +++ b/units/local-fs.target -@@ -10,3 +10,5 @@ Description=Local File Systems - Documentation=man:systemd.special(7) +@@ -11,3 +11,5 @@ Documentation=man:systemd.special(7) + After=local-fs-pre.target OnFailure=emergency.target OnFailureIsolate=yes + +X-StopOnReconfiguration=yes diff --git a/units/remote-fs.target b/units/remote-fs.target -index 9e68878..85a53d7 100644 +index e867b8d..02462b4 100644 --- a/units/remote-fs.target +++ b/units/remote-fs.target -@@ -9,5 +9,7 @@ - Description=Remote File Systems +@@ -10,5 +10,7 @@ Description=Remote File Systems Documentation=man:systemd.special(7) + After=remote-fs-pre.target remote-fs-setup.target +X-StopOnReconfiguration=yes + @@ -70,5 +70,5 @@ index 0869e73..b6ed958 100644 +# Restart kills all active sessions. +X-RestartIfChanged=no -- -1.8.0.1 +1.8.1 diff --git a/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch b/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch index 4403e6f56aaf..9efbba08ab9f 100644 --- a/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch +++ b/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch @@ -1,7 +1,7 @@ -From c5c8ac3a0420fb42ba2f629368fd5bd6ea1e753b Mon Sep 17 00:00:00 2001 +From 5337d8f5a555f83ba8731472a2f3b0d36ac607d9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:56:03 +0100 -Subject: [PATCH 5/6] sysinit.target: Drop the dependency on local-fs.target +Subject: [PATCH 5/8] sysinit.target: Drop the dependency on local-fs.target and swap.target Having all services with DefaultDependencies=yes depend on @@ -29,5 +29,5 @@ index 8f4fb8f..e0f0147 100644 +After=emergency.service emergency.target RefuseManualStart=yes -- -1.8.0.1 +1.8.1 diff --git a/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch b/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch index 250a751fe0c0..f0be5b34f0c8 100644 --- a/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch +++ b/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch @@ -1,7 +1,7 @@ -From d3caa154098e215145679f38fa92a8bd482107be Mon Sep 17 00:00:00 2001 +From b944fede26773167cb6a9f86888a9209dda4c35e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 18:36:28 +0100 -Subject: [PATCH 6/6] Don't call "plymouth quit" +Subject: [PATCH 6/8] Don't call "plymouth quit" NixOS doesn't use Plymouth (yet). --- @@ -34,5 +34,5 @@ index 269797a..2c640f4 100644 ExecStart=-/sbin/sulogin ExecStopPost=-@SYSTEMCTL@ --fail --no-block default -- -1.8.0.1 +1.8.1 diff --git a/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch b/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch index 1a8d294fd225..32aca8b10aa0 100644 --- a/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch +++ b/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch @@ -1,4 +1,4 @@ -From ab889004b8972258a87798133451f99dfce21823 Mon Sep 17 00:00:00 2001 +From b9f175c7b3ea6ac34d148f5afba598f985c5b9fe Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 4 Feb 2013 12:41:14 +0100 Subject: [PATCH 7/8] Ignore IPv6 link-local addresses diff --git a/pkgs/os-specific/linux/systemd/0008-Fix-a-segfault-in-nscd-when-using-nss-myhostname.patch b/pkgs/os-specific/linux/systemd/0008-Fix-a-segfault-in-nscd-when-using-nss-myhostname.patch deleted file mode 100644 index 6937c6c594e9..000000000000 --- a/pkgs/os-specific/linux/systemd/0008-Fix-a-segfault-in-nscd-when-using-nss-myhostname.patch +++ /dev/null @@ -1,42 +0,0 @@ -From ef9b259ae24e7bf4ebec04b0b0a44964bc661bb5 Mon Sep 17 00:00:00 2001 -From: Eelco Dolstra -Date: Mon, 4 Feb 2013 12:43:08 +0100 -Subject: [PATCH 8/8] Fix a segfault in nscd when using nss-myhostname -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Nscd expects that an NSS module's gethostbyname4_r function returns -its first result in the pre-allocated gaih_addrtuple denoted by **pat. -(See nscd/aicache.c in the Glibc sources.) However, nss-myhostname -doesn't fill in **pat but allocates the first result in ‘buffer’, then -sets *pat. So nscd crashes (e.g. when running ‘getent ahosts -my-machine’). - -Hard to tell if this is a bug in nscd, since there doesn't seem to be -a proper API spec for gethostbyname4_r. But in any case, this patch -fixes the crash by copying the first result to **pat. ---- - src/nss-myhostname/nss-myhostname.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/src/nss-myhostname/nss-myhostname.c b/src/nss-myhostname/nss-myhostname.c -index 834a806..b0fb832 100644 ---- a/src/nss-myhostname/nss-myhostname.c -+++ b/src/nss-myhostname/nss-myhostname.c -@@ -176,7 +176,11 @@ enum nss_status _nss_myhostname_gethostbyname4_r( - /* Verify the size matches */ - assert(idx == ms); - -- *pat = r_tuple_prev; -+ /* Nscd expects us to store the first record in **pat. */ -+ if (*pat) -+ **pat = *r_tuple_prev; -+ else -+ *pat = r_tuple_prev; - - if (ttlp) - *ttlp = 0; --- -1.8.1 - diff --git a/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch b/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch new file mode 100644 index 000000000000..92411c16650d --- /dev/null +++ b/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch @@ -0,0 +1,28 @@ +From dcfb048af5face4787ecdf29c00454898c52963d Mon Sep 17 00:00:00 2001 +From: Eelco Dolstra +Date: Wed, 27 Mar 2013 13:33:09 +0100 +Subject: [PATCH 8/8] systemd-sysctl: Handle missing /etc/sysctl.conf properly + +Since fabe5c0e5fce730aa66e10a9c4f9fdd443d7aeda, systemd-sysctl returns +a non-zero exit code if /etc/sysctl.conf does not exist, due to a +broken ENOENT check. +--- + src/sysctl/sysctl.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c +index 2d43660..79f3f77 100644 +--- a/src/sysctl/sysctl.c ++++ b/src/sysctl/sysctl.c +@@ -125,7 +125,7 @@ static int parse_file(Hashmap *sysctl_options, const char *path, bool ignore_eno + + r = search_and_fopen_nulstr(path, "re", conf_file_dirs, &f); + if (r < 0) { +- if (ignore_enoent && errno == -ENOENT) ++ if (ignore_enoent && r == -ENOENT) + return 0; + + log_error("Failed to open file '%s', ignoring: %s", path, strerror(-r)); +-- +1.8.1 + diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 9e64bb7ed405..b1365a0ac07f 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -1,16 +1,16 @@ { stdenv, fetchurl, pkgconfig, intltool, gperf, libcap, dbus, kmod , xz, pam, acl, cryptsetup, libuuid, m4, utillinux -, glib, kbd, libxslt, coreutils, libgcrypt, sysvtools +, glib, kbd, libxslt, coreutils, libgcrypt, sysvtools, docbook_xsl }: assert stdenv.gcc.libc or null != null; stdenv.mkDerivation rec { - name = "systemd-197"; + name = "systemd-199"; src = fetchurl { url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz"; - sha256 = "1dbljyyc3w4a1af99f15f3sqnfx7mfmc5x5hwxb70kg23ai7x1g6"; + sha256 = "1vazjqi95pri5zx21gs4chyd7c8kg5lf1rc26w47zkry9yh64i4c"; }; patches = @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { ./0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch ./0006-Don-t-call-plymouth-quit.patch ./0007-Ignore-IPv6-link-local-addresses.patch - ./0008-Fix-a-segfault-in-nscd-when-using-nss-myhostname.patch + ./0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch ] ++ stdenv.lib.optional stdenv.isArm ./libc-bug-accept4-arm.patch; buildInputs = [ pkgconfig intltool gperf libcap dbus kmod xz pam acl - /* cryptsetup */ libuuid m4 glib libxslt libgcrypt + /* cryptsetup */ libuuid m4 glib libxslt libgcrypt docbook_xsl ]; configureFlags = @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = [ # Can't say ${polkit}/bin/pkttyagent here because that would # lead to a cyclic dependency. - "-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\"" + "-UPOLKIT_AGENT_BINARY_PATH -DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\"" "-fno-stack-protector" # Work around our kernel headers being too old. FIXME: remove # this after the next stdenv update. @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { # 1e1954f53386cb773e2a152748dd31c4d36aa2d8) because using /var is # forbidden in early boot, but in NixOS the initrd guarantees that # /var is mounted. - makeFlags = "CPPFLAGS=-I${stdenv.gcc.libc}/include hwdb_bin=/var/lib/udev/hwdb.bin"; + makeFlags = "hwdb_bin=/var/lib/udev/hwdb.bin"; installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc sysvinitdir=$(TMPDIR)/etc/init.d"; From 916c1adb84691f0b776ae0c363dab5790f93535a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 27 Mar 2013 22:32:19 +0100 Subject: [PATCH 011/167] Delete all kernels older than 2.6.39 Systemd doesn't support those kernels, so there is no point in keeping them around. --- pkgs/os-specific/linux/kernel/aufs2-35.patch | 351 ----------------- pkgs/os-specific/linux/kernel/aufs2.patch | 354 ------------------ .../linux/kernel/cifs-timeout-2.6.15.patch | 44 --- .../linux/kernel/cifs-timeout-2.6.29.patch | 47 --- .../linux/kernel/cifs-timeout-2.6.35.patch | 45 --- .../linux/kernel/dell-rfkill.patch | 23 -- .../os-specific/linux/kernel/linux-2.6.15.nix | 48 --- .../os-specific/linux/kernel/linux-2.6.32.nix | 215 ----------- .../os-specific/linux/kernel/linux-2.6.35.nix | 222 ----------- pkgs/os-specific/linux/kernel/patches.nix | 87 ----- .../kernel/sheevaplug_modules-2.6.35.patch | 63 ---- pkgs/top-level/all-packages.nix | 53 +-- 12 files changed, 3 insertions(+), 1549 deletions(-) delete mode 100644 pkgs/os-specific/linux/kernel/aufs2-35.patch delete mode 100644 pkgs/os-specific/linux/kernel/aufs2.patch delete mode 100644 pkgs/os-specific/linux/kernel/cifs-timeout-2.6.15.patch delete mode 100644 pkgs/os-specific/linux/kernel/cifs-timeout-2.6.29.patch delete mode 100644 pkgs/os-specific/linux/kernel/cifs-timeout-2.6.35.patch delete mode 100644 pkgs/os-specific/linux/kernel/dell-rfkill.patch delete mode 100644 pkgs/os-specific/linux/kernel/linux-2.6.15.nix delete mode 100644 pkgs/os-specific/linux/kernel/linux-2.6.32.nix delete mode 100644 pkgs/os-specific/linux/kernel/linux-2.6.35.nix delete mode 100644 pkgs/os-specific/linux/kernel/sheevaplug_modules-2.6.35.patch diff --git a/pkgs/os-specific/linux/kernel/aufs2-35.patch b/pkgs/os-specific/linux/kernel/aufs2-35.patch deleted file mode 100644 index 30776e641063..000000000000 --- a/pkgs/os-specific/linux/kernel/aufs2-35.patch +++ /dev/null @@ -1,351 +0,0 @@ -aufs2 base patch for linux-2.6.35 - -diff --git a/fs/namei.c b/fs/namei.c -index 868d0cb..6e92c81 100644 ---- a/fs/namei.c -+++ b/fs/namei.c -@@ -1178,7 +1178,7 @@ out: - * needs parent already locked. Doesn't follow mounts. - * SMP-safe. - */ --static struct dentry *lookup_hash(struct nameidata *nd) -+struct dentry *lookup_hash(struct nameidata *nd) - { - int err; - -@@ -1190,5 +1190,5 @@ - --static int __lookup_one_len(const char *name, struct qstr *this, -+int __lookup_one_len(const char *name, struct qstr *this, - struct dentry *base, int len) - { - unsigned long hash; -diff --git a/fs/splice.c b/fs/splice.c -index efdbfec..e01a51e 100644 ---- a/fs/splice.c -+++ b/fs/splice.c -@@ -1104,8 +1104,8 @@ EXPORT_SYMBOL(generic_splice_sendpage); - /* - * Attempt to initiate a splice from pipe to file. - */ --static long do_splice_from(struct pipe_inode_info *pipe, struct file *out, -- loff_t *ppos, size_t len, unsigned int flags) -+long do_splice_from(struct pipe_inode_info *pipe, struct file *out, -+ loff_t *ppos, size_t len, unsigned int flags) - { - ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, - loff_t *, size_t, unsigned int); -@@ -1132,9 +1132,9 @@ static long do_splice_from(struct pipe_inode_info *pipe, struct file *out, - /* - * Attempt to initiate a splice from a file to a pipe. - */ --static long do_splice_to(struct file *in, loff_t *ppos, -- struct pipe_inode_info *pipe, size_t len, -- unsigned int flags) -+long do_splice_to(struct file *in, loff_t *ppos, -+ struct pipe_inode_info *pipe, size_t len, -+ unsigned int flags) - { - ssize_t (*splice_read)(struct file *, loff_t *, - struct pipe_inode_info *, size_t, unsigned int); -diff --git a/include/linux/namei.h b/include/linux/namei.h -index 05b441d..91bc74e 100644 ---- a/include/linux/namei.h -+++ b/include/linux/namei.h -@@ -73,6 +73,9 @@ extern int vfs_path_lookup(struct dentry *, struct vfsmount *, - extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry, - int (*open)(struct inode *, struct file *)); - -+extern struct dentry *lookup_hash(struct nameidata *nd); -+extern int __lookup_one_len(const char *name, struct qstr *this, -+ struct dentry *base, int len); - extern struct dentry *lookup_one_len(const char *, struct dentry *, int); - - extern int follow_down(struct path *); -diff --git a/include/linux/splice.h b/include/linux/splice.h -index 997c3b4..be9a153 100644 ---- a/include/linux/splice.h -+++ b/include/linux/splice.h -@@ -89,4 +89,10 @@ extern int splice_grow_spd(struct pipe_inode_info *, struct splice_pipe_desc *); - extern void splice_shrink_spd(struct pipe_inode_info *, - struct splice_pipe_desc *); - -+extern long do_splice_from(struct pipe_inode_info *pipe, struct file *out, -+ loff_t *ppos, size_t len, unsigned int flags); -+extern long do_splice_to(struct file *in, loff_t *ppos, -+ struct pipe_inode_info *pipe, size_t len, -+ unsigned int flags); -+ - #endif -aufs2 standalone patch for linux-2.6.35 - -diff --git a/fs/namei.c b/fs/namei.c -index 6e92c81..334130e 100644 ---- a/fs/namei.c -+++ b/fs/namei.c -@@ -348,6 +348,7 @@ int deny_write_access(struct file * file) - - return 0; - } -+EXPORT_SYMBOL(deny_write_access); - - /** - * path_get - get a reference to a path -@@ -1187,6 +1188,7 @@ struct dentry *lookup_hash(struct nameidata *nd) - return ERR_PTR(err); - return __lookup_hash(&nd->last, nd->path.dentry, nd); - } -+EXPORT_SYMBOL(lookup_hash); - - int __lookup_one_len(const char *name, struct qstr *this, - struct dentry *base, int len) -@@ -1209,6 +1211,7 @@ int __lookup_one_len(const char *name, struct qstr *this, - this->hash = end_name_hash(hash); - return 0; - } -+EXPORT_SYMBOL(__lookup_one_len); - - /** - * lookup_one_len - filesystem helper to lookup single pathname component -diff --git a/fs/namespace.c b/fs/namespace.c -index 88058de..397afcc 100644 ---- a/fs/namespace.c -+++ b/fs/namespace.c -@@ -1279,6 +1279,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg, - } - return 0; - } -+EXPORT_SYMBOL(iterate_mounts); - - static void cleanup_group_ids(struct vfsmount *mnt, struct vfsmount *end) - { -diff --git a/fs/notify/group.c b/fs/notify/group.c -index 0e16771..3fab10a 100644 ---- a/fs/notify/group.c -+++ b/fs/notify/group.c -@@ -22,6 +22,7 @@ - #include - #include - #include -+#include - - #include - #include "fsnotify.h" -@@ -169,6 +170,7 @@ void fsnotify_put_group(struct fsnotify_group *group) - fsnotify_recalc_global_mask(); - fsnotify_destroy_group(group); - } -+EXPORT_SYMBOL(fsnotify_put_group); - - /* - * Simply run the fsnotify_groups list and find a group which matches -@@ -252,3 +254,4 @@ struct fsnotify_group *fsnotify_obtain_group(unsigned int group_num, __u32 mask, - - return group; - } -+EXPORT_SYMBOL(fsnotify_obtain_group); -diff --git a/fs/notify/inode_mark.c b/fs/notify/inode_mark.c -index 0399bcb..74cdc13 100644 ---- a/fs/notify/inode_mark.c -+++ b/fs/notify/inode_mark.c -@@ -105,6 +105,7 @@ void fsnotify_put_mark(struct fsnotify_mark_entry *entry) - if (atomic_dec_and_test(&entry->refcnt)) - entry->free_mark(entry); - } -+EXPORT_SYMBOL(fsnotify_put_mark); - - /* - * Recalculate the mask of events relevant to a given inode locked. -@@ -215,6 +216,7 @@ void fsnotify_destroy_mark_by_entry(struct fsnotify_mark_entry *entry) - if (unlikely(atomic_dec_and_test(&group->num_marks))) - fsnotify_final_destroy_group(group); - } -+EXPORT_SYMBOL(fsnotify_destroy_mark_by_entry); - - /* - * Given a group, destroy all of the marks associated with that group. -@@ -281,6 +283,7 @@ struct fsnotify_mark_entry *fsnotify_find_mark_entry(struct fsnotify_group *grou - } - return NULL; - } -+EXPORT_SYMBOL(fsnotify_find_mark_entry); - - /* - * Nothing fancy, just initialize lists and locks and counters. -@@ -297,6 +300,7 @@ void fsnotify_init_mark(struct fsnotify_mark_entry *entry, - entry->inode = NULL; - entry->free_mark = free_mark; - } -+EXPORT_SYMBOL(fsnotify_init_mark); - - /* - * Attach an initialized mark entry to a given group and inode. -@@ -352,6 +356,7 @@ int fsnotify_add_mark(struct fsnotify_mark_entry *entry, - - return ret; - } -+EXPORT_SYMBOL(fsnotify_add_mark); - - /** - * fsnotify_unmount_inodes - an sb is unmounting. handle any watched inodes. -diff --git a/fs/open.c b/fs/open.c -index 5463266..d248ead 100644 ---- a/fs/open.c -+++ b/fs/open.c -@@ -59,6 +59,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs, - mutex_unlock(&dentry->d_inode->i_mutex); - return ret; - } -+EXPORT_SYMBOL(do_truncate); - - static long do_sys_truncate(const char __user *pathname, loff_t length) - { -diff --git a/fs/splice.c b/fs/splice.c -index e01a51e..4806358 100644 ---- a/fs/splice.c -+++ b/fs/splice.c -@@ -1128,6 +1128,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out, - - return splice_write(pipe, out, ppos, len, flags); - } -+EXPORT_SYMBOL(do_splice_from); - - /* - * Attempt to initiate a splice from a file to a pipe. -@@ -1154,6 +1155,7 @@ long do_splice_to(struct file *in, loff_t *ppos, - - return splice_read(in, ppos, pipe, len, flags); - } -+EXPORT_SYMBOL(do_splice_to); - - /** - * splice_direct_to_actor - splices data directly between two non-pipes -diff --git a/security/commoncap.c b/security/commoncap.c -index 4e01599..3611e1b 100644 ---- a/security/commoncap.c -+++ b/security/commoncap.c -@@ -951,3 +951,4 @@ int cap_file_mmap(struct file *file, unsigned long reqprot, - } - return ret; - } -+EXPORT_SYMBOL(cap_file_mmap); -diff --git a/security/device_cgroup.c b/security/device_cgroup.c -index 8d9c48f..29108aa 100644 ---- a/security/device_cgroup.c -+++ b/security/device_cgroup.c -@@ -515,6 +515,7 @@ found: - - return -EPERM; - } -+EXPORT_SYMBOL(devcgroup_inode_permission); - - int devcgroup_inode_mknod(int mode, dev_t dev) - { -diff --git a/security/security.c b/security/security.c -index 351942a..6ba84a8 100644 ---- a/security/security.c -+++ b/security/security.c -@@ -376,6 +376,7 @@ int security_path_mkdir(struct path *dir, struct dentry *dentry, int mode) - return 0; - return security_ops->path_mkdir(dir, dentry, mode); - } -+EXPORT_SYMBOL(security_path_mkdir); - - int security_path_rmdir(struct path *dir, struct dentry *dentry) - { -@@ -383,6 +384,7 @@ int security_path_rmdir(struct path *dir, struct dentry *dentry) - return 0; - return security_ops->path_rmdir(dir, dentry); - } -+EXPORT_SYMBOL(security_path_rmdir); - - int security_path_unlink(struct path *dir, struct dentry *dentry) - { -@@ -390,6 +392,7 @@ int security_path_unlink(struct path *dir, struct dentry *dentry) - return 0; - return security_ops->path_unlink(dir, dentry); - } -+EXPORT_SYMBOL(security_path_unlink); - - int security_path_symlink(struct path *dir, struct dentry *dentry, - const char *old_name) -@@ -398,6 +401,7 @@ int security_path_symlink(struct path *dir, struct dentry *dentry, - return 0; - return security_ops->path_symlink(dir, dentry, old_name); - } -+EXPORT_SYMBOL(security_path_symlink); - - int security_path_link(struct dentry *old_dentry, struct path *new_dir, - struct dentry *new_dentry) -@@ -406,6 +410,7 @@ int security_path_link(struct dentry *old_dentry, struct path *new_dir, - return 0; - return security_ops->path_link(old_dentry, new_dir, new_dentry); - } -+EXPORT_SYMBOL(security_path_link); - - int security_path_rename(struct path *old_dir, struct dentry *old_dentry, - struct path *new_dir, struct dentry *new_dentry) -@@ -416,6 +421,7 @@ int security_path_rename(struct path *old_dir, struct dentry *old_dentry, - return security_ops->path_rename(old_dir, old_dentry, new_dir, - new_dentry); - } -+EXPORT_SYMBOL(security_path_rename); - - int security_path_truncate(struct path *path, loff_t length, - unsigned int time_attrs) -@@ -424,6 +430,7 @@ int security_path_truncate(struct path *path, loff_t length, - return 0; - return security_ops->path_truncate(path, length, time_attrs); - } -+EXPORT_SYMBOL(security_path_truncate); - - int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt, - mode_t mode) -@@ -432,6 +439,7 @@ int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt, - return 0; - return security_ops->path_chmod(dentry, mnt, mode); - } -+EXPORT_SYMBOL(security_path_chmod); - - int security_path_chown(struct path *path, uid_t uid, gid_t gid) - { -@@ -439,6 +447,7 @@ int security_path_chown(struct path *path, uid_t uid, gid_t gid) - return 0; - return security_ops->path_chown(path, uid, gid); - } -+EXPORT_SYMBOL(security_path_chown); - - int security_path_chroot(struct path *path) - { -@@ -515,6 +524,7 @@ int security_inode_readlink(struct dentry *dentry) - return 0; - return security_ops->inode_readlink(dentry); - } -+EXPORT_SYMBOL(security_inode_readlink); - - int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd) - { -@@ -529,6 +539,7 @@ int security_inode_permission(struct inode *inode, int mask) - return 0; - return security_ops->inode_permission(inode, mask); - } -+EXPORT_SYMBOL(security_inode_permission); - - int security_inode_setattr(struct dentry *dentry, struct iattr *attr) - { -@@ -622,6 +633,7 @@ int security_file_permission(struct file *file, int mask) - { - return security_ops->file_permission(file, mask); - } -+EXPORT_SYMBOL(security_file_permission); - - int security_file_alloc(struct file *file) - { -@@ -649,6 +661,7 @@ int security_file_mmap(struct file *file, unsigned long reqprot, - return ret; - return ima_file_mmap(file, prot); - } -+EXPORT_SYMBOL(security_file_mmap); - - int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot, - unsigned long prot) diff --git a/pkgs/os-specific/linux/kernel/aufs2.patch b/pkgs/os-specific/linux/kernel/aufs2.patch deleted file mode 100644 index 191972c760c3..000000000000 --- a/pkgs/os-specific/linux/kernel/aufs2.patch +++ /dev/null @@ -1,354 +0,0 @@ -From: -http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=blob;f=aufs2-base.patch;hb=eb0355d5b8ff5b04ad217a86d8c677f265675436 -http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=blob;f=aufs2-standalone.patch;hb=a9c3ab997b526d76bdd23391b3ddc1fdf28edd46 - -aufs2 base patch for linux-2.6.32 - -diff --git a/fs/namei.c b/fs/namei.c -index d11f404..7d28f56 100644 ---- a/fs/namei.c -+++ b/fs/namei.c -@@ -1219,7 +1219,7 @@ out: - * needs parent already locked. Doesn't follow mounts. - * SMP-safe. - */ --static struct dentry *lookup_hash(struct nameidata *nd) -+struct dentry *lookup_hash(struct nameidata *nd) - { - int err; - -@@ -1229,7 +1229,7 @@ static struct dentry *lookup_hash(struct nameidata *nd) - return __lookup_hash(&nd->last, nd->path.dentry, nd); - } - --static int __lookup_one_len(const char *name, struct qstr *this, -+int __lookup_one_len(const char *name, struct qstr *this, - struct dentry *base, int len) - { - unsigned long hash; -diff --git a/fs/splice.c b/fs/splice.c -index 7394e9e..77184f0 100644 ---- a/fs/splice.c -+++ b/fs/splice.c -@@ -1051,8 +1051,8 @@ EXPORT_SYMBOL(generic_splice_sendpage); - /* - * Attempt to initiate a splice from pipe to file. - */ --static long do_splice_from(struct pipe_inode_info *pipe, struct file *out, -- loff_t *ppos, size_t len, unsigned int flags) -+long do_splice_from(struct pipe_inode_info *pipe, struct file *out, -+ loff_t *ppos, size_t len, unsigned int flags) - { - ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, - loff_t *, size_t, unsigned int); -@@ -1078,9 +1078,9 @@ static long do_splice_from(struct pipe_inode_info *pipe, struct file *out, - /* - * Attempt to initiate a splice from a file to a pipe. - */ --static long do_splice_to(struct file *in, loff_t *ppos, -- struct pipe_inode_info *pipe, size_t len, -- unsigned int flags) -+long do_splice_to(struct file *in, loff_t *ppos, -+ struct pipe_inode_info *pipe, size_t len, -+ unsigned int flags) - { - ssize_t (*splice_read)(struct file *, loff_t *, - struct pipe_inode_info *, size_t, unsigned int); -diff --git a/include/linux/namei.h b/include/linux/namei.h -index ec0f607..1438153 100644 ---- a/include/linux/namei.h -+++ b/include/linux/namei.h -@@ -75,6 +75,9 @@ extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry - extern struct file *nameidata_to_filp(struct nameidata *nd, int flags); - extern void release_open_intent(struct nameidata *); - -+extern struct dentry *lookup_hash(struct nameidata *nd); -+extern int __lookup_one_len(const char *name, struct qstr *this, -+ struct dentry *base, int len); - extern struct dentry *lookup_one_len(const char *, struct dentry *, int); - extern struct dentry *lookup_one_noperm(const char *, struct dentry *); - -diff --git a/include/linux/splice.h b/include/linux/splice.h -index 18e7c7c..8393b5c 100644 ---- a/include/linux/splice.h -+++ b/include/linux/splice.h -@@ -82,4 +82,10 @@ extern ssize_t splice_to_pipe(struct pipe_inode_info *, - extern ssize_t splice_direct_to_actor(struct file *, struct splice_desc *, - splice_direct_actor *); - -+extern long do_splice_from(struct pipe_inode_info *pipe, struct file *out, -+ loff_t *ppos, size_t len, unsigned int flags); -+extern long do_splice_to(struct file *in, loff_t *ppos, -+ struct pipe_inode_info *pipe, size_t len, -+ unsigned int flags); -+ - #endif - -aufs2 standalone patch for linux-2.6.32 - -diff --git a/fs/namei.c b/fs/namei.c -index 7d28f56..0f6117c 100644 ---- a/fs/namei.c -+++ b/fs/namei.c -@@ -350,6 +350,7 @@ int deny_write_access(struct file * file) - - return 0; - } -+EXPORT_SYMBOL(deny_write_access); - - /** - * path_get - get a reference to a path -@@ -1228,6 +1229,7 @@ struct dentry *lookup_hash(struct nameidata *nd) - return ERR_PTR(err); - return __lookup_hash(&nd->last, nd->path.dentry, nd); - } -+EXPORT_SYMBOL(lookup_hash); - - int __lookup_one_len(const char *name, struct qstr *this, - struct dentry *base, int len) -@@ -1250,6 +1252,7 @@ int __lookup_one_len(const char *name, struct qstr *this, - this->hash = end_name_hash(hash); - return 0; - } -+EXPORT_SYMBOL(__lookup_one_len); - - /** - * lookup_one_len - filesystem helper to lookup single pathname component -diff --git a/fs/namespace.c b/fs/namespace.c -index bdc3cb4..a2cadcf 100644 ---- a/fs/namespace.c -+++ b/fs/namespace.c -@@ -39,6 +39,7 @@ - - /* spinlock for vfsmount related operations, inplace of dcache_lock */ - __cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock); -+EXPORT_SYMBOL(vfsmount_lock); - - static int event; - static DEFINE_IDA(mnt_id_ida); -diff --git a/fs/notify/group.c b/fs/notify/group.c -index 0e16771..3fab10a 100644 ---- a/fs/notify/group.c -+++ b/fs/notify/group.c -@@ -22,6 +22,7 @@ - #include - #include - #include -+#include - - #include - #include "fsnotify.h" -@@ -169,6 +170,7 @@ void fsnotify_put_group(struct fsnotify_group *group) - fsnotify_recalc_global_mask(); - fsnotify_destroy_group(group); - } -+EXPORT_SYMBOL(fsnotify_put_group); - - /* - * Simply run the fsnotify_groups list and find a group which matches -@@ -252,3 +254,4 @@ struct fsnotify_group *fsnotify_obtain_group(unsigned int group_num, __u32 mask, - - return group; - } -+EXPORT_SYMBOL(fsnotify_obtain_group); -diff --git a/fs/notify/inode_mark.c b/fs/notify/inode_mark.c -index 3165d85..4586162 100644 ---- a/fs/notify/inode_mark.c -+++ b/fs/notify/inode_mark.c -@@ -106,6 +106,7 @@ void fsnotify_put_mark(struct fsnotify_mark_entry *entry) - if (atomic_dec_and_test(&entry->refcnt)) - entry->free_mark(entry); - } -+EXPORT_SYMBOL(fsnotify_put_mark); - - /* - * Recalculate the mask of events relevant to a given inode locked. -@@ -216,6 +217,7 @@ void fsnotify_destroy_mark_by_entry(struct fsnotify_mark_entry *entry) - if (unlikely(atomic_dec_and_test(&group->num_marks))) - fsnotify_final_destroy_group(group); - } -+EXPORT_SYMBOL(fsnotify_destroy_mark_by_entry); - - /* - * Given a group, destroy all of the marks associated with that group. -@@ -282,6 +284,7 @@ struct fsnotify_mark_entry *fsnotify_find_mark_entry(struct fsnotify_group *grou - } - return NULL; - } -+EXPORT_SYMBOL(fsnotify_find_mark_entry); - - /* - * Nothing fancy, just initialize lists and locks and counters. -@@ -298,6 +301,7 @@ void fsnotify_init_mark(struct fsnotify_mark_entry *entry, - entry->inode = NULL; - entry->free_mark = free_mark; - } -+EXPORT_SYMBOL(fsnotify_init_mark); - - /* - * Attach an initialized mark entry to a given group and inode. -@@ -353,6 +357,7 @@ int fsnotify_add_mark(struct fsnotify_mark_entry *entry, - - return ret; - } -+EXPORT_SYMBOL(fsnotify_add_mark); - - /** - * fsnotify_unmount_inodes - an sb is unmounting. handle any watched inodes. -diff --git a/fs/open.c b/fs/open.c -index 4f01e06..ef09031 100644 ---- a/fs/open.c -+++ b/fs/open.c -@@ -223,6 +223,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs, - mutex_unlock(&dentry->d_inode->i_mutex); - return ret; - } -+EXPORT_SYMBOL(do_truncate); - - static long do_sys_truncate(const char __user *pathname, loff_t length) - { -diff --git a/fs/splice.c b/fs/splice.c -index 77184f0..8479d95 100644 ---- a/fs/splice.c -+++ b/fs/splice.c -@@ -1074,6 +1074,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out, - - return splice_write(pipe, out, ppos, len, flags); - } -+EXPORT_SYMBOL(do_splice_from); - - /* - * Attempt to initiate a splice from a file to a pipe. -@@ -1099,6 +1100,7 @@ long do_splice_to(struct file *in, loff_t *ppos, - - return splice_read(in, ppos, pipe, len, flags); - } -+EXPORT_SYMBOL(do_splice_to); - - /** - * splice_direct_to_actor - splices data directly between two non-pipes -diff --git a/security/commoncap.c b/security/commoncap.c -index fe30751..813108d 100644 ---- a/security/commoncap.c -+++ b/security/commoncap.c -@@ -1014,3 +1014,4 @@ int cap_file_mmap(struct file *file, unsigned long reqprot, - } - return ret; - } -+EXPORT_SYMBOL(cap_file_mmap); -diff --git a/security/device_cgroup.c b/security/device_cgroup.c -index 6cf8fd2..008e0d8 100644 ---- a/security/device_cgroup.c -+++ b/security/device_cgroup.c -@@ -514,6 +514,7 @@ found: - - return -EPERM; - } -+EXPORT_SYMBOL(devcgroup_inode_permission); - - int devcgroup_inode_mknod(int mode, dev_t dev) - { -diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c -index b85e61b..a23fad4 100644 ---- a/security/integrity/ima/ima_main.c -+++ b/security/integrity/ima/ima_main.c -@@ -324,6 +324,7 @@ int ima_file_mmap(struct file *file, unsigned long prot) - MAY_EXEC, FILE_MMAP); - return 0; - } -+EXPORT_SYMBOL(ima_file_mmap); - - /** - * ima_bprm_check - based on policy, collect/store measurement. -diff --git a/security/security.c b/security/security.c -index c4c6732..092cd90 100644 ---- a/security/security.c -+++ b/security/security.c -@@ -386,6 +386,7 @@ int security_path_mkdir(struct path *path, struct dentry *dentry, int mode) - return 0; - return security_ops->path_mkdir(path, dentry, mode); - } -+EXPORT_SYMBOL(security_path_mkdir); - - int security_path_rmdir(struct path *path, struct dentry *dentry) - { -@@ -393,6 +394,7 @@ int security_path_rmdir(struct path *path, struct dentry *dentry) - return 0; - return security_ops->path_rmdir(path, dentry); - } -+EXPORT_SYMBOL(security_path_rmdir); - - int security_path_unlink(struct path *path, struct dentry *dentry) - { -@@ -400,6 +402,7 @@ int security_path_unlink(struct path *path, struct dentry *dentry) - return 0; - return security_ops->path_unlink(path, dentry); - } -+EXPORT_SYMBOL(security_path_unlink); - - int security_path_symlink(struct path *path, struct dentry *dentry, - const char *old_name) -@@ -408,6 +411,7 @@ int security_path_symlink(struct path *path, struct dentry *dentry, - return 0; - return security_ops->path_symlink(path, dentry, old_name); - } -+EXPORT_SYMBOL(security_path_symlink); - - int security_path_link(struct dentry *old_dentry, struct path *new_dir, - struct dentry *new_dentry) -@@ -416,6 +420,7 @@ int security_path_link(struct dentry *old_dentry, struct path *new_dir, - return 0; - return security_ops->path_link(old_dentry, new_dir, new_dentry); - } -+EXPORT_SYMBOL(security_path_link); - - int security_path_rename(struct path *old_dir, struct dentry *old_dentry, - struct path *new_dir, struct dentry *new_dentry) -@@ -426,6 +431,7 @@ int security_path_rename(struct path *old_dir, struct dentry *old_dentry, - return security_ops->path_rename(old_dir, old_dentry, new_dir, - new_dentry); - } -+EXPORT_SYMBOL(security_path_rename); - - int security_path_truncate(struct path *path, loff_t length, - unsigned int time_attrs) -@@ -434,6 +440,7 @@ int security_path_truncate(struct path *path, loff_t length, - return 0; - return security_ops->path_truncate(path, length, time_attrs); - } -+EXPORT_SYMBOL(security_path_truncate); - #endif - - int security_inode_create(struct inode *dir, struct dentry *dentry, int mode) -@@ -505,6 +512,7 @@ int security_inode_readlink(struct dentry *dentry) - return 0; - return security_ops->inode_readlink(dentry); - } -+EXPORT_SYMBOL(security_inode_readlink); - - int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd) - { -@@ -519,6 +527,7 @@ int security_inode_permission(struct inode *inode, int mask) - return 0; - return security_ops->inode_permission(inode, mask); - } -+EXPORT_SYMBOL(security_inode_permission); - - int security_inode_setattr(struct dentry *dentry, struct iattr *attr) - { -@@ -619,6 +628,7 @@ int security_file_permission(struct file *file, int mask) - { - return security_ops->file_permission(file, mask); - } -+EXPORT_SYMBOL(security_file_permission); - - int security_file_alloc(struct file *file) - { -@@ -641,6 +651,7 @@ int security_file_mmap(struct file *file, unsigned long reqprot, - { - return security_ops->file_mmap(file, reqprot, prot, flags, addr, addr_only); - } -+EXPORT_SYMBOL(security_file_mmap); - - int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot, - unsigned long prot) diff --git a/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.15.patch b/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.15.patch deleted file mode 100644 index 4e399af8300d..000000000000 --- a/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.15.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- a/fs/cifs/transport.c 2011-04-12 15:16:00.253887813 +0200 -+++ b/fs/cifs/transport.c 2011-04-12 15:17:22.650296413 +0200 -@@ -247,9 +247,9 @@ - n_vec - first_vec, total_len); - if ((rc == -ENOSPC) || (rc == -EAGAIN)) { - i++; -- if(i >= 14) { -+ if(i >= 119) { - cERROR(1, -- ("sends on sock %p stuck for 15 seconds", -+ ("sends on sock %p stuck for 120 seconds", - ssocket)); - rc = -EAGAIN; - break; -@@ -421,12 +421,12 @@ - else if (long_op == 2) /* writes past end of file can take loong time */ - timeout = 180 * HZ; - else if (long_op == 1) -- timeout = 45 * HZ; /* should be greater than -+ timeout = 120 * HZ; /* should be greater than - servers oplock break timeout (about 43 seconds) */ - else if (long_op > 2) { - timeout = MAX_SCHEDULE_TIMEOUT; - } else -- timeout = 15 * HZ; -+ timeout = 120 * HZ; - /* wait for 15 seconds or until woken up due to response arriving or - due to last connection to this server being unmounted */ - if (signal_pending(current)) { -@@ -687,12 +687,12 @@ - else if (long_op == 2) /* writes past end of file can take loong time */ - timeout = 180 * HZ; - else if (long_op == 1) -- timeout = 45 * HZ; /* should be greater than -+ timeout = 120 * HZ; /* should be greater than - servers oplock break timeout (about 43 seconds) */ - else if (long_op > 2) { - timeout = MAX_SCHEDULE_TIMEOUT; - } else -- timeout = 15 * HZ; -+ timeout = 120 * HZ; - /* wait for 15 seconds or until woken up due to response arriving or - due to last connection to this server being unmounted */ - if (signal_pending(current)) { diff --git a/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.29.patch b/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.29.patch deleted file mode 100644 index b2dac3f016c4..000000000000 --- a/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.29.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff -ru -x '*~' /tmp/linux-2.6.32.14/fs/cifs/transport.c linux-2.6.32.14/fs/cifs/transport.c ---- /tmp/linux-2.6.32.14/fs/cifs/transport.c 2010-05-26 23:29:57.000000000 +0200 -+++ linux-2.6.32.14/fs/cifs/transport.c 2010-06-20 22:03:13.000000000 +0200 -@@ -166,9 +166,9 @@ - after the retries we will kill the socket and - reconnect which may clear the network problem. - */ -- if ((i >= 14) || (!server->noblocksnd && (i > 2))) { -+ if ((i >= 119) || (!server->noblocksnd && (i > 2))) { - cERROR(1, -- ("sends on sock %p stuck for 15 seconds", -+ ("sends on sock %p stuck for 120 seconds", - ssocket)); - rc = -EAGAIN; - break; -@@ -459,11 +459,11 @@ - goto out; - - if (long_op == CIFS_STD_OP) -- timeout = 15 * HZ; -+ timeout = 120 * HZ; - else if (long_op == CIFS_VLONG_OP) /* e.g. slow writes past EOF */ - timeout = 180 * HZ; - else if (long_op == CIFS_LONG_OP) -- timeout = 45 * HZ; /* should be greater than -+ timeout = 120 * HZ; /* should be greater than - servers oplock break timeout (about 43 seconds) */ - else if (long_op == CIFS_ASYNC_OP) - goto out; -@@ -651,7 +651,7 @@ - goto out; - - if (long_op == CIFS_STD_OP) -- timeout = 15 * HZ; -+ timeout = 120 * HZ; - /* wait for 15 seconds or until woken up due to response arriving or - due to last connection to this server being unmounted */ - else if (long_op == CIFS_ASYNC_OP) -@@ -659,7 +659,7 @@ - else if (long_op == CIFS_VLONG_OP) /* writes past EOF can be slow */ - timeout = 180 * HZ; - else if (long_op == CIFS_LONG_OP) -- timeout = 45 * HZ; /* should be greater than -+ timeout = 120 * HZ; /* should be greater than - servers oplock break timeout (about 43 seconds) */ - else if (long_op == CIFS_BLOCKING_OP) - timeout = 0x7FFFFFFF; /* large but no so large as to wrap */ diff --git a/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.35.patch b/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.35.patch deleted file mode 100644 index 8043739ee9a8..000000000000 --- a/pkgs/os-specific/linux/kernel/cifs-timeout-2.6.35.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- /tmp/linux-2.6.32.14/fs/cifs/transport.c 2010-11-22 20:01:26.000000000 +0100 -+++ linux-2.6.32.14/fs/cifs/transport.c 2011-03-29 15:31:14.926510480 +0200 -@@ -166,8 +166,8 @@ - after the retries we will kill the socket and - reconnect which may clear the network problem. - */ -- if ((i >= 14) || (!server->noblocksnd && (i > 2))) { -- cERROR(1, "sends on sock %p stuck for 15 seconds", -+ if ((i >= 119) || (!server->noblocksnd && (i > 2))) { -+ cERROR(1, "sends on sock %p stuck for 119 seconds", - ssocket); - rc = -EAGAIN; - break; -@@ -458,11 +458,11 @@ - goto out; - - if (long_op == CIFS_STD_OP) -- timeout = 15 * HZ; -+ timeout = 120 * HZ; - else if (long_op == CIFS_VLONG_OP) /* e.g. slow writes past EOF */ - timeout = 180 * HZ; - else if (long_op == CIFS_LONG_OP) -- timeout = 45 * HZ; /* should be greater than -+ timeout = 120 * HZ; /* should be greater than - servers oplock break timeout (about 43 seconds) */ - else if (long_op == CIFS_ASYNC_OP) - goto out; -@@ -650,7 +650,7 @@ - goto out; - - if (long_op == CIFS_STD_OP) -- timeout = 15 * HZ; -+ timeout = 120 * HZ; - /* wait for 15 seconds or until woken up due to response arriving or - due to last connection to this server being unmounted */ - else if (long_op == CIFS_ASYNC_OP) -@@ -658,7 +658,7 @@ - else if (long_op == CIFS_VLONG_OP) /* writes past EOF can be slow */ - timeout = 180 * HZ; - else if (long_op == CIFS_LONG_OP) -- timeout = 45 * HZ; /* should be greater than -+ timeout = 120 * HZ; /* should be greater than - servers oplock break timeout (about 43 seconds) */ - else if (long_op == CIFS_BLOCKING_OP) - timeout = 0x7FFFFFFF; /* large but no so large as to wrap */ diff --git a/pkgs/os-specific/linux/kernel/dell-rfkill.patch b/pkgs/os-specific/linux/kernel/dell-rfkill.patch deleted file mode 100644 index 32f890c84f66..000000000000 --- a/pkgs/os-specific/linux/kernel/dell-rfkill.patch +++ /dev/null @@ -1,23 +0,0 @@ -Ensure that the dell-bluetooth device does not stay in the "hard -blocked" state. - -From https://patchwork.kernel.org/patch/37539/ - -diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c -index 74909c4..cf40c4e 100644 ---- a/drivers/platform/x86/dell-laptop.c -+++ b/drivers/platform/x86/dell-laptop.c -@@ -197,8 +197,11 @@ static void dell_rfkill_query(struct rfkill *rfkill, void *data) - dell_send_request(&buffer, 17, 11); - status = buffer.output[1]; - -- if (status & BIT(bit)) -- rfkill_set_hw_state(rfkill, !!(status & BIT(16))); -+ /* -+ * Don't change state unless the read-only HW rfkill switch is disabled. -+ */ -+ if (status & BIT(16)) -+ rfkill_set_hw_state(rfkill, !!(status & BIT(bit))); - } - - static const struct rfkill_ops dell_rfkill_ops = { diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.15.nix b/pkgs/os-specific/linux/kernel/linux-2.6.15.nix deleted file mode 100644 index 2dd67f46167c..000000000000 --- a/pkgs/os-specific/linux/kernel/linux-2.6.15.nix +++ /dev/null @@ -1,48 +0,0 @@ -{ stdenv, fetchurl, extraConfig ? "", ... } @ args: - -let - configWithPlatform = kernelPlatform: - '' - # Don't include any debug features. - DEBUG_KERNEL n - - # Support drivers that need external firmware. - STANDALONE n - - # Make /proc/config.gz available. - IKCONFIG_PROC y - - # Optimize with -O2, not -Os. - CC_OPTIMIZE_FOR_SIZE n - - # Enable various subsystems. - MTD_COMPLEX_MAPPINGS y # needed for many devices - - # Networking options. - IP_PNP n - IPV6_PRIVACY y - - # Filesystem options - in particular, enable extended attributes and - # ACLs for all filesystems that support them. - CIFS_XATTR y - CIFS_POSIX y - - ${extraConfig} - ''; -in - -import ./generic.nix (rec { - version = "2.6.15.7"; - postBuild = "make $makeFlags $kernelTarget"; - - src = fetchurl { - url = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${version}.tar.bz2"; - sha256 = "43e0c251924324749b06464512532c3002d6294520faabdba5b3aea4e840b48b"; - }; - - config = configWithPlatform stdenv.platform; - configCross = configWithPlatform stdenv.cross.platform; -} - -// removeAttrs args ["extraConfig"] -) \ No newline at end of file diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.32.nix b/pkgs/os-specific/linux/kernel/linux-2.6.32.nix deleted file mode 100644 index 57b16c791cf1..000000000000 --- a/pkgs/os-specific/linux/kernel/linux-2.6.32.nix +++ /dev/null @@ -1,215 +0,0 @@ -{ stdenv, fetchurl, extraConfig ? "", ... } @ args: - -let - configWithPlatform = kernelPlatform: - '' - # Don't include any debug features. - DEBUG_KERNEL n - - # Support drivers that need external firmware. - STANDALONE n - - # Make /proc/config.gz available. - IKCONFIG_PROC y - - # Optimize with -O2, not -Os. - CC_OPTIMIZE_FOR_SIZE n - - # Enable the kernel's built-in memory tester. - MEMTEST y - - # Include the CFQ I/O scheduler in the kernel, rather than as a - # module, so that the initrd gets a good I/O scheduler. - IOSCHED_CFQ y - - # Disable some expensive (?) features. - FTRACE n - KPROBES n - NUMA? n - PM_TRACE_RTC n - - # Enable various subsystems. - ACCESSIBILITY y # Accessibility support - AUXDISPLAY y # Auxiliary Display support - DONGLE y # Serial dongle support - HIPPI y - MTD_COMPLEX_MAPPINGS y # needed for many devices - NET_POCKET y # enable pocket and portable adapters - SCSI_LOWLEVEL y # enable lots of SCSI devices - SCSI_LOWLEVEL_PCMCIA y - SPI y # needed for many devices - SPI_MASTER y - WAN y - - # Networking options. - IP_PNP n - IPV6_PRIVACY y - NETFILTER_ADVANCED y - IP_VS_PROTO_TCP y - IP_VS_PROTO_UDP y - IP_VS_PROTO_ESP y - IP_VS_PROTO_AH y - IP_DCCP_CCID3 n # experimental - CLS_U32_PERF y - CLS_U32_MARK y - - # Wireless networking. - IPW2100_MONITOR y # support promiscuous mode - IPW2200_MONITOR y # support promiscuous mode - IWLWIFI_LEDS? y - IWLWIFI_SPECTRUM_MEASUREMENT y - IWL3945_SPECTRUM_MEASUREMENT y - IWL4965 y # Intel Wireless WiFi 4965AGN - IWL5000 y # Intel Wireless WiFi 5000AGN - HOSTAP_FIRMWARE y # Support downloading firmware images with Host AP driver - HOSTAP_FIRMWARE_NVRAM y - - # Some settings to make sure that fbcondecor works - in particular, - # disable tileblitting and the drivers that need it. - - # Enable various FB devices. - FB y - FB_EFI y - FB_NVIDIA_I2C y # Enable DDC Support - FB_RIVA_I2C y - FB_ATY_CT y # Mach64 CT/VT/GT/LT (incl. 3D RAGE) support - FB_ATY_GX y # Mach64 GX support - FB_SAVAGE_I2C y - FB_SAVAGE_ACCEL y - FB_SIS_300 y - FB_SIS_315 y - FB_3DFX_ACCEL y - FB_GEODE y - - # Video configuration - # The intel drivers already require KMS - DRM_I915_KMS y - - # Sound. - SND_AC97_POWER_SAVE y # AC97 Power-Saving Mode - SND_HDA_INPUT_BEEP y # Support digital beep via input layer - SND_USB_CAIAQ_INPUT y - PSS_MIXER y # Enable PSS mixer (Beethoven ADSP-16 and other compatible) - - # USB serial devices. - USB_SERIAL_GENERIC y # USB Generic Serial Driver - USB_SERIAL_KEYSPAN_MPR y # include firmware for various USB serial devices - USB_SERIAL_KEYSPAN_USA28 y - USB_SERIAL_KEYSPAN_USA28X y - USB_SERIAL_KEYSPAN_USA28XA y - USB_SERIAL_KEYSPAN_USA28XB y - USB_SERIAL_KEYSPAN_USA19 y - USB_SERIAL_KEYSPAN_USA18X y - USB_SERIAL_KEYSPAN_USA19W y - USB_SERIAL_KEYSPAN_USA19QW y - USB_SERIAL_KEYSPAN_USA19QI y - USB_SERIAL_KEYSPAN_USA49W y - USB_SERIAL_KEYSPAN_USA49WLC y - - # Filesystem options - in particular, enable extended attributes and - # ACLs for all filesystems that support them. - EXT2_FS_XATTR y # Ext2 extended attributes - EXT2_FS_POSIX_ACL y # Ext2 POSIX Access Control Lists - EXT2_FS_SECURITY y # Ext2 Security Labels - EXT2_FS_XIP y # Ext2 execute in place support - EXT4_FS_POSIX_ACL y - EXT4_FS_SECURITY y - REISERFS_FS_XATTR y - REISERFS_FS_POSIX_ACL y - REISERFS_FS_SECURITY y - JFS_POSIX_ACL y - JFS_SECURITY y - XFS_QUOTA y - XFS_POSIX_ACL y - XFS_RT y # XFS Realtime subvolume support - OCFS2_DEBUG_MASKLOG n - OCFS2_FS_POSIX_ACL y - BTRFS_FS_POSIX_ACL y - UBIFS_FS_XATTR y - UBIFS_FS_ADVANCED_COMPR y - NFSD_V2_ACL y - NFSD_V3 y - NFSD_V3_ACL y - NFSD_V4 y - CIFS_XATTR y - CIFS_POSIX y - - # Security related features. - STRICT_DEVMEM y # Filter access to /dev/mem - SECURITY_SELINUX_BOOTPARAM_VALUE 0 # disable SELinux by default - - # Misc. options. - 8139TOO_8129 y - 8139TOO_PIO n # PIO is slower - AIC79XX_DEBUG_ENABLE n - AIC7XXX_DEBUG_ENABLE n - AIC94XX_DEBUG n - B43_PCMCIA y - BLK_DEV_BSG n - BLK_DEV_CMD640_ENHANCED y # CMD640 enhanced support - BLK_DEV_IDEACPI y # IDE ACPI support - BLK_DEV_INTEGRITY y - BSD_PROCESS_ACCT_V3 y - BT_HCIUART_BCSP y - BT_HCIUART_H4 y # UART (H4) protocol support - BT_HCIUART_LL y - BT_RFCOMM_TTY y # RFCOMM TTY support - CPU_FREQ_DEBUG n - CRASH_DUMP n - DMAR? n # experimental - DVB_DYNAMIC_MINORS y # we use udev - FUSION y # Fusion MPT device support - IDE_GD_ATAPI y # ATAPI floppy support - IRDA_ULTRA y # Ultra (connectionless) protocol - JOYSTICK_IFORCE_232 y # I-Force Serial joysticks and wheels - JOYSTICK_IFORCE_USB y # I-Force USB joysticks and wheels - JOYSTICK_XPAD_FF y # X-Box gamepad rumble support - JOYSTICK_XPAD_LEDS y # LED Support for Xbox360 controller 'BigX' LED - KALLSYMS_EXTRA_PASS n - LDM_PARTITION y # Windows Logical Disk Manager (Dynamic Disk) support - LEDS_TRIGGER_IDE_DISK y # LED IDE Disk Trigger - LOGIRUMBLEPAD2_FF y # Logitech Rumblepad 2 force feedback - LOGO n # not needed - MEDIA_ATTACH y - MEGARAID_NEWGEN y - MICROCODE_AMD y - MODVERSIONS y - MOUSE_PS2_ELANTECH y # Elantech PS/2 protocol extension - MTRR_SANITIZER y - NET_FC y # Fibre Channel driver support - PCI_LEGACY y - PPP_MULTILINK y # PPP multilink support - REGULATOR y # Voltage and Current Regulator Support - SCSI_LOGGING y # SCSI logging facility - SERIAL_8250 y # 8250/16550 and compatible serial support - SLIP_COMPRESSED y # CSLIP compressed headers - SLIP_SMART y - THERMAL_HWMON y # Hardware monitoring support - USB_DEBUG n - USB_EHCI_ROOT_HUB_TT y # Root Hub Transaction Translators - X86_CHECK_BIOS_CORRUPTION y - X86_MCE y - - ${if kernelPlatform ? kernelExtraConfig then kernelPlatform.kernelExtraConfig else ""} - ${extraConfig} - ''; -in - -import ./generic.nix ( - - rec { - version = "2.6.32.60"; - - src = fetchurl { - url = "mirror://kernel/linux/kernel/v2.6/longterm/v2.6.32/linux-${version}.tar.bz2"; - sha256 = "0iyg5z76g8wnh73aq6p6j4xb3043skpa14fb3dwgbpdpx710x5nf"; - }; - - config = configWithPlatform stdenv.platform; - configCross = configWithPlatform stdenv.cross.platform; - - features.iwlwifi = true; - } - - // removeAttrs args ["extraConfig"] -) diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.35.nix b/pkgs/os-specific/linux/kernel/linux-2.6.35.nix deleted file mode 100644 index 1b8f9fded70a..000000000000 --- a/pkgs/os-specific/linux/kernel/linux-2.6.35.nix +++ /dev/null @@ -1,222 +0,0 @@ -{ stdenv, fetchurl, extraConfig ? "", ... } @ args: - -let - configWithPlatform = kernelPlatform: - '' - # Don't include any debug features. - DEBUG_KERNEL n - - # Support drivers that need external firmware. - STANDALONE n - - # Make /proc/config.gz available. - IKCONFIG_PROC y - - # Optimize with -O2, not -Os. - CC_OPTIMIZE_FOR_SIZE n - - # Enable the kernel's built-in memory tester. - MEMTEST y - - # Include the CFQ I/O scheduler in the kernel, rather than as a - # module, so that the initrd gets a good I/O scheduler. - IOSCHED_CFQ y - BLK_CGROUP y # required by CFQ - - # Disable some expensive (?) features. - FTRACE n - KPROBES n - NUMA? n - PM_TRACE_RTC n - - # Enable various subsystems. - ACCESSIBILITY y # Accessibility support - AUXDISPLAY y # Auxiliary Display support - DONGLE y # Serial dongle support - HIPPI y - MTD_COMPLEX_MAPPINGS y # needed for many devices - NET_POCKET y # enable pocket and portable adapters - SCSI_LOWLEVEL y # enable lots of SCSI devices - SCSI_LOWLEVEL_PCMCIA y - SPI y # needed for many devices - SPI_MASTER y - WAN y - - # Networking options. - IP_PNP n - IPV6_PRIVACY y - NETFILTER_ADVANCED y - IP_VS_PROTO_TCP y - IP_VS_PROTO_UDP y - IP_VS_PROTO_ESP y - IP_VS_PROTO_AH y - IP_DCCP_CCID3 n # experimental - CLS_U32_PERF y - CLS_U32_MARK y - - # Wireless networking. - IPW2100_MONITOR y # support promiscuous mode - IPW2200_MONITOR y # support promiscuous mode - IWL4965 y # Intel Wireless WiFi 4965AGN - IWL5000 y # Intel Wireless WiFi 5000AGN - HOSTAP_FIRMWARE y # Support downloading firmware images with Host AP driver - HOSTAP_FIRMWARE_NVRAM y - - # Some settings to make sure that fbcondecor works - in particular, - # disable tileblitting and the drivers that need it. - - # Enable various FB devices. - FB y - FB_EFI y - FB_NVIDIA_I2C y # Enable DDC Support - FB_RIVA_I2C y - FB_ATY_CT y # Mach64 CT/VT/GT/LT (incl. 3D RAGE) support - FB_ATY_GX y # Mach64 GX support - FB_SAVAGE_I2C y - FB_SAVAGE_ACCEL y - FB_SIS_300 y - FB_SIS_315 y - FB_3DFX_ACCEL y - FB_GEODE y - - # Video configuration - # The intel drivers already require KMS - DRM_I915_KMS y - - # Sound. - SND_AC97_POWER_SAVE y # AC97 Power-Saving Mode - SND_HDA_INPUT_BEEP y # Support digital beep via input layer - SND_USB_CAIAQ_INPUT y - PSS_MIXER y # Enable PSS mixer (Beethoven ADSP-16 and other compatible) - - # USB serial devices. - USB_SERIAL_GENERIC y # USB Generic Serial Driver - USB_SERIAL_KEYSPAN_MPR y # include firmware for various USB serial devices - USB_SERIAL_KEYSPAN_USA28 y - USB_SERIAL_KEYSPAN_USA28X y - USB_SERIAL_KEYSPAN_USA28XA y - USB_SERIAL_KEYSPAN_USA28XB y - USB_SERIAL_KEYSPAN_USA19 y - USB_SERIAL_KEYSPAN_USA18X y - USB_SERIAL_KEYSPAN_USA19W y - USB_SERIAL_KEYSPAN_USA19QW y - USB_SERIAL_KEYSPAN_USA19QI y - USB_SERIAL_KEYSPAN_USA49W y - USB_SERIAL_KEYSPAN_USA49WLC y - - # Filesystem options - in particular, enable extended attributes and - # ACLs for all filesystems that support them. - EXT2_FS_XATTR y # Ext2 extended attributes - EXT2_FS_POSIX_ACL y # Ext2 POSIX Access Control Lists - EXT2_FS_SECURITY y # Ext2 Security Labels - EXT2_FS_XIP y # Ext2 execute in place support - EXT4_FS_POSIX_ACL y - EXT4_FS_SECURITY y - REISERFS_FS_XATTR y - REISERFS_FS_POSIX_ACL y - REISERFS_FS_SECURITY y - JFS_POSIX_ACL y - JFS_SECURITY y - XFS_QUOTA y - XFS_POSIX_ACL y - XFS_RT y # XFS Realtime subvolume support - OCFS2_DEBUG_MASKLOG n - BTRFS_FS_POSIX_ACL y - UBIFS_FS_XATTR y - UBIFS_FS_ADVANCED_COMPR y - NFSD_V2_ACL y - NFSD_V3 y - NFSD_V3_ACL y - NFSD_V4 y - CIFS_XATTR y - CIFS_POSIX y - - # Security related features. - STRICT_DEVMEM y # Filter access to /dev/mem - SECURITY_SELINUX_BOOTPARAM_VALUE 0 # disable SELinux by default - - # Misc. options. - 8139TOO_8129 y - 8139TOO_PIO n # PIO is slower - AIC79XX_DEBUG_ENABLE n - AIC7XXX_DEBUG_ENABLE n - AIC94XX_DEBUG n - B43_PCMCIA y - BLK_DEV_BSG n - BLK_DEV_CMD640_ENHANCED y # CMD640 enhanced support - BLK_DEV_IDEACPI y # IDE ACPI support - BLK_DEV_INTEGRITY y - BSD_PROCESS_ACCT_V3 y - BT_HCIUART_BCSP y - BT_HCIUART_H4 y # UART (H4) protocol support - BT_HCIUART_LL y - BT_RFCOMM_TTY y # RFCOMM TTY support - CPU_FREQ_DEBUG n - CRASH_DUMP n - DMAR? n # experimental - DVB_DYNAMIC_MINORS y # we use udev - FUSION y # Fusion MPT device support - IDE_GD_ATAPI y # ATAPI floppy support - IRDA_ULTRA y # Ultra (connectionless) protocol - JOYSTICK_IFORCE_232 y # I-Force Serial joysticks and wheels - JOYSTICK_IFORCE_USB y # I-Force USB joysticks and wheels - JOYSTICK_XPAD_FF y # X-Box gamepad rumble support - JOYSTICK_XPAD_LEDS y # LED Support for Xbox360 controller 'BigX' LED - KALLSYMS_EXTRA_PASS n - LDM_PARTITION y # Windows Logical Disk Manager (Dynamic Disk) support - LEDS_TRIGGER_IDE_DISK y # LED IDE Disk Trigger - LOGIRUMBLEPAD2_FF y # Logitech Rumblepad 2 force feedback - LOGO n # not needed - MEDIA_ATTACH y - MEGARAID_NEWGEN y - MICROCODE_AMD y - MODVERSIONS y - MOUSE_PS2_ELANTECH y # Elantech PS/2 protocol extension - MTRR_SANITIZER y - NET_FC y # Fibre Channel driver support - PPP_MULTILINK y # PPP multilink support - REGULATOR y # Voltage and Current Regulator Support - SCSI_LOGGING y # SCSI logging facility - SERIAL_8250 y # 8250/16550 and compatible serial support - SLIP_COMPRESSED y # CSLIP compressed headers - SLIP_SMART y - THERMAL_HWMON y # Hardware monitoring support - USB_DEBUG n - USB_EHCI_ROOT_HUB_TT y # Root Hub Transaction Translators - X86_CHECK_BIOS_CORRUPTION y - X86_MCE y - - # Allow up to 128 GiB of RAM in Xen domains. - XEN_MAX_DOMAIN_MEMORY 128 - - # PROC_EVENTS requires that the netlink connector is not built - # as a module. This is required by libcgroup's cgrulesengd. - CONNECTOR y - PROC_EVENTS y - - # Devtmpfs support. - DEVTMPFS y - - ${if kernelPlatform ? kernelExtraConfig then kernelPlatform.kernelExtraConfig else ""} - ${extraConfig} - ''; -in - -import ./generic.nix ( - - rec { - version = "2.6.35.14"; - - src = fetchurl { - url = "mirror://kernel/linux/kernel/v2.6/longterm/v2.6.35/linux-${version}.tar.bz2"; - sha256 = "1wzml7s9karfbk2yi36g1r8fyaq4d4f16yizc68zgchv0xzj39zl"; - }; - - config = configWithPlatform stdenv.platform; - configCross = configWithPlatform stdenv.cross.platform; - - features.iwlwifi = true; - } - - // removeAttrs args ["extraConfig"] -) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 5288050d70dc..0c5109c9834a 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -2,24 +2,6 @@ let - fbcondecorConfig = - '' - FB_CON_DECOR y - - # fbcondecor is picky about some other settings. - FB y - FB_TILEBLITTING n - FB_MATROX n - FB_S3 n - FB_VT8623 n - FB_ARK n - FB_CFB_FILLRECT y - FB_CFB_COPYAREA y - FB_CFB_IMAGEBLIT y - FB_VESA y - FRAMEBUFFER_CONSOLE y - ''; - makeTuxonicePatch = { version, kernelVersion, sha256, url ? "http://tuxonice.net/files/tuxonice-${version}-for-${kernelVersion}.patch.bz2" }: { name = "tuxonice-${kernelVersion}"; @@ -64,47 +46,6 @@ rec { features.secPermPatch = true; }; - fbcondecor_2_6_31 = - { name = "fbcondecor-0.9.6-2.6.31.2"; - patch = fetchurl { - url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.6-2.6.31.2.patch; - sha256 = "1avk0yn0y2qbpsxf31r6d14y4a1mand01r4k4i71yfxvpqcgxka9"; - }; - extraConfig = fbcondecorConfig; - features.fbConDecor = true; - }; - - fbcondecor_2_6_35 = - rec { - name = "fbcondecor-0.9.6-2.6.35-rc4"; - patch = fetchurl { - url = "http://dev.gentoo.org/~spock/projects/fbcondecor/archive/${name}.patch"; - sha256 = "0dlks1arr3b3hlmw9k1a1swji2x655why61sa0aahm62faibsg1r"; - }; - extraConfig = fbcondecorConfig; - features.fbConDecor = true; - }; - - aufs2_2_6_32 = - { # From http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=tree;h=refs/heads/aufs2-32;hb=aufs2-32 - # Note that this merely the patch needed to build AUFS2 as a - # standalone package. - name = "aufs2"; - patch = ./aufs2.patch; - features.aufsBase = true; - features.aufs2 = true; - }; - - aufs2_2_6_35 = - { # From http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=tree;h=refs/heads/aufs2-35;hb=aufs2-35 - # Note that this merely the patch needed to build AUFS2 as a - # standalone package. - name = "aufs2"; - patch = ./aufs2-35.patch; - features.aufsBase = true; - features.aufs2 = true; - }; - aufs3_0 = rec { name = "aufs3.0"; version = "3.0.20121210"; @@ -164,24 +105,6 @@ rec { # Increase the timeout on CIFS requests from 15 to 120 seconds to # make CIFS more resilient to high load on the CIFS server. - cifs_timeout_2_6_15 = - { name = "cifs-timeout"; - patch = ./cifs-timeout-2.6.15.patch; - features.cifsTimeout = true; - }; - - cifs_timeout_2_6_29 = - { name = "cifs-timeout"; - patch = ./cifs-timeout-2.6.29.patch; - features.cifsTimeout = true; - }; - - cifs_timeout_2_6_35 = - { name = "cifs-timeout"; - patch = ./cifs-timeout-2.6.35.patch; - features.cifsTimeout = true; - }; - cifs_timeout_2_6_38 = { name = "cifs-timeout"; patch = ./cifs-timeout-2.6.38.patch; @@ -194,16 +117,6 @@ rec { features.noXsave = true; }; - dell_rfkill = - { name = "dell-rfkill"; - patch = ./dell-rfkill.patch; - }; - - sheevaplug_modules_2_6_35 = - { name = "sheevaplug_modules-2.6.35"; - patch = ./sheevaplug_modules-2.6.35.patch; - }; - mips_fpureg_emu = { name = "mips-fpureg-emulation"; patch = ./mips-fpureg-emulation.patch; diff --git a/pkgs/os-specific/linux/kernel/sheevaplug_modules-2.6.35.patch b/pkgs/os-specific/linux/kernel/sheevaplug_modules-2.6.35.patch deleted file mode 100644 index 5b62fb90670c..000000000000 --- a/pkgs/os-specific/linux/kernel/sheevaplug_modules-2.6.35.patch +++ /dev/null @@ -1,63 +0,0 @@ -http://www.mail-archive.com/armedslack@lists.armedslack.org/msg00212.html - -From d0679c730395d0bde9a46939e7ba255b4ba7dd7c Mon Sep 17 00:00:00 2001 -From: Andi Kleen -Date: Tue, 2 Feb 2010 14:40:02 -0800 -Subject: [PATCH] kbuild: move -fno-dwarf2-cfi-asm to powerpc only - -Better dwarf2 unwind information is a good thing, it allows better -debugging with kgdb and crash and helps systemtap. - -Commit 003086497f07f7f1e67c0c295e261740f822b377 ("Build with --fno-dwarf2-cfi-asm") disabled some CFI information globally to work -around a module loader bug on powerpc. - -But this disables the better unwind tables for all architectures, not just -powerpc. Move the workaround to powerpc and also add a suitable comment -that's it really a workaround. - -This improves dwarf2 unwind tables on x86 at least. - -Signed-off-by: Andi Kleen -Cc: Kyle McMartin -Signed-off-by: Andrew Morton -Acked-by: Benjamin Herrenschmidt -Signed-off-by: Michal Marek ---- - Makefile | 3 --- - arch/powerpc/Makefile | 5 +++++ - 2 files changed, 5 insertions(+), 3 deletions(-) - -diff --git a/Makefile b/Makefile -index 03053c6..2e74a68 100644 ---- a/Makefile -+++ b/Makefile -@@ -579,6 +579,9 @@ KBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) - # disable invalid "can't wrap" optimizations for signed / pointers - KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) - -+# revert to pre-gcc-4.4 behaviour of .eh_frame -+KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) -+ - # conserve stack if available - KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) - -diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile -index 1a54a3b..42dcd3f 100644 ---- a/arch/powerpc/Makefile -+++ b/arch/powerpc/Makefile -@@ -112,11 +112,6 @@ KBUILD_CFLAGS += $(call cc-option,-mspe=no) - # kernel considerably. - KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time) - --# FIXME: the module load should be taught about the additional relocs --# generated by this. --# revert to pre-gcc-4.4 behaviour of .eh_frame --KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) -- - # Never use string load/store instructions as they are - # often slow when they are implemented at all - KBUILD_CFLAGS += -mno-string --- -1.7.3.1 - diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e72c0fe3d10e..09365a80cf1c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5834,53 +5834,10 @@ let kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { }; - linux_2_6_15 = makeOverridable (import ../os-specific/linux/kernel/linux-2.6.15.nix) { - inherit fetchurl perl mktemp module_init_tools; - stdenv = overrideInStdenv stdenv [ gcc34 gnumake381 ]; - kernelPatches = - [ kernelPatches.cifs_timeout_2_6_15 - ]; - }; - - linux_2_6_32 = makeOverridable (import ../os-specific/linux/kernel/linux-2.6.32.nix) { - inherit fetchurl stdenv perl mktemp module_init_tools ubootChooser; - kernelPatches = - [ kernelPatches.fbcondecor_2_6_31 - kernelPatches.sec_perm_2_6_24 - # kernelPatches.aufs2_2_6_32 - kernelPatches.cifs_timeout_2_6_29 - # kernelPatches.no_xsave # doesn't apply anymore - kernelPatches.dell_rfkill - ]; - }; - - linux_2_6_35 = makeOverridable (import ../os-specific/linux/kernel/linux-2.6.35.nix) { - inherit fetchurl stdenv perl mktemp module_init_tools ubootChooser; - kernelPatches = - [ kernelPatches.fbcondecor_2_6_35 - kernelPatches.sec_perm_2_6_24 - # kernelPatches.aufs2_2_6_35 - kernelPatches.cifs_timeout_2_6_35 - ] ++ lib.optional (platform.kernelArch == "arm") - kernelPatches.sheevaplug_modules_2_6_35; - }; - - linux_2_6_35_oldI686 = linux_2_6_35.override { - extraConfig = '' - HIGHMEM64G? n - XEN? n - ''; - extraMeta = { - platforms = ["i686-linux"]; - maintainers = [lib.maintainers.raskin]; - }; - }; - linux_3_0 = makeOverridable (import ../os-specific/linux/kernel/linux-3.0.nix) { inherit fetchurl stdenv perl mktemp module_init_tools ubootChooser; kernelPatches = - [ #kernelPatches.fbcondecor_2_6_38 - kernelPatches.sec_perm_2_6_24 + [ kernelPatches.sec_perm_2_6_24 # kernelPatches.aufs3_0 ]; }; @@ -5888,8 +5845,7 @@ let linux_3_2 = makeOverridable (import ../os-specific/linux/kernel/linux-3.2.nix) { inherit fetchurl stdenv perl mktemp module_init_tools ubootChooser; kernelPatches = - [ #kernelPatches.fbcondecor_2_6_38 - kernelPatches.sec_perm_2_6_24 + [ kernelPatches.sec_perm_2_6_24 # kernelPatches.aufs3_2 kernelPatches.cifs_timeout_2_6_38 ]; @@ -5904,8 +5860,7 @@ let linux_3_4 = makeOverridable (import ../os-specific/linux/kernel/linux-3.4.nix) { inherit fetchurl stdenv perl mktemp module_init_tools ubootChooser; kernelPatches = - [ #kernelPatches.fbcondecor_2_6_38 - kernelPatches.sec_perm_2_6_24 + [ kernelPatches.sec_perm_2_6_24 # kernelPatches.aufs3_4 ] ++ lib.optionals (platform.kernelArch == "mips") [ kernelPatches.mips_fpureg_emu @@ -6066,8 +6021,6 @@ let }; # Build the kernel modules for the some of the kernels. - linuxPackages_2_6_32 = recurseIntoAttrs (linuxPackagesFor linux_2_6_32 linuxPackages_2_6_32); - linuxPackages_2_6_35 = recurseIntoAttrs (linuxPackagesFor linux_2_6_35 linuxPackages_2_6_35); linuxPackages_3_0 = recurseIntoAttrs (linuxPackagesFor linux_3_0 linuxPackages_3_0); linuxPackages_3_2 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_2 linuxPackages_3_2); linuxPackages_3_2_xen = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_2_xen linuxPackages_3_2_xen); From f0d45e2e25d7333b67cc1e401469b0de89aee27f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 27 Mar 2013 22:34:55 +0100 Subject: [PATCH 012/167] Linux kernel: Enable CONFIG_FHANDLE This enables the open_by_handle_at(2) and name_to_handle_at(2) syscalls. Systemd kind of requires this. --- pkgs/os-specific/linux/kernel/linux-3.0.nix | 1 + pkgs/os-specific/linux/kernel/linux-3.2.nix | 1 + pkgs/os-specific/linux/kernel/linux-3.4.nix | 1 + pkgs/os-specific/linux/kernel/linux-3.7.nix | 1 + pkgs/os-specific/linux/kernel/linux-3.8.nix | 1 + pkgs/os-specific/linux/kernel/linux-3.9.nix | 1 + 6 files changed, 6 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/linux-3.0.nix b/pkgs/os-specific/linux/kernel/linux-3.0.nix index 0f269a630e9d..4495e8177f48 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.0.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.0.nix @@ -173,6 +173,7 @@ let CRASH_DUMP n DMAR? n # experimental DVB_DYNAMIC_MINORS y # we use udev + FHANDLE y # used by systemd FUSION y # Fusion MPT device support IDE_GD_ATAPI y # ATAPI floppy support IRDA_ULTRA y # Ultra (connectionless) protocol diff --git a/pkgs/os-specific/linux/kernel/linux-3.2.nix b/pkgs/os-specific/linux/kernel/linux-3.2.nix index dc088d29e112..24609d59132e 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.2.nix @@ -176,6 +176,7 @@ let CRASH_DUMP n DMAR? n # experimental DVB_DYNAMIC_MINORS y # we use udev + FHANDLE y # used by systemd FUSION y # Fusion MPT device support IDE_GD_ATAPI y # ATAPI floppy support IRDA_ULTRA y # Ultra (connectionless) protocol diff --git a/pkgs/os-specific/linux/kernel/linux-3.4.nix b/pkgs/os-specific/linux/kernel/linux-3.4.nix index 0f2caeac4f7b..aef013bf50a8 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.4.nix @@ -177,6 +177,7 @@ let DMAR? n # experimental DVB_DYNAMIC_MINORS y # we use udev EFI_STUB y # EFI bootloader in the bzImage itself + FHANDLE y # used by systemd FUSION y # Fusion MPT device support IDE_GD_ATAPI y # ATAPI floppy support IRDA_ULTRA y # Ultra (connectionless) protocol diff --git a/pkgs/os-specific/linux/kernel/linux-3.7.nix b/pkgs/os-specific/linux/kernel/linux-3.7.nix index a522c90a10f9..ac49774b8185 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.7.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.7.nix @@ -178,6 +178,7 @@ let DMAR? n # experimental DVB_DYNAMIC_MINORS? y # we use udev EFI_STUB y # EFI bootloader in the bzImage itself + FHANDLE y # used by systemd FUSION y # Fusion MPT device support IDE_GD_ATAPI y # ATAPI floppy support IRDA_ULTRA y # Ultra (connectionless) protocol diff --git a/pkgs/os-specific/linux/kernel/linux-3.8.nix b/pkgs/os-specific/linux/kernel/linux-3.8.nix index 174c7553eeab..361d1f83a5c1 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.8.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.8.nix @@ -178,6 +178,7 @@ let DMAR? n # experimental DVB_DYNAMIC_MINORS? y # we use udev EFI_STUB y # EFI bootloader in the bzImage itself + FHANDLE y # used by systemd FUSION y # Fusion MPT device support IDE_GD_ATAPI y # ATAPI floppy support IRDA_ULTRA y # Ultra (connectionless) protocol diff --git a/pkgs/os-specific/linux/kernel/linux-3.9.nix b/pkgs/os-specific/linux/kernel/linux-3.9.nix index 1f0e60ee0d72..6340e71bf8a2 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.9.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.9.nix @@ -178,6 +178,7 @@ let DMAR? n # experimental DVB_DYNAMIC_MINORS? y # we use udev EFI_STUB y # EFI bootloader in the bzImage itself + FHANDLE y # used by systemd FUSION y # Fusion MPT device support IDE_GD_ATAPI y # ATAPI floppy support IRDA_ULTRA y # Ultra (connectionless) protocol From 419413ac52d0c212915cf012d96744064c03b811 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 27 Mar 2013 22:48:18 +0100 Subject: [PATCH 013/167] man-pages: Update to 3.50 --- pkgs/data/documentation/man-pages/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/documentation/man-pages/default.nix b/pkgs/data/documentation/man-pages/default.nix index 032a59e5c500..f1bc98c26cc4 100644 --- a/pkgs/data/documentation/man-pages/default.nix +++ b/pkgs/data/documentation/man-pages/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "man-pages-3.48"; + name = "man-pages-3.50"; src = fetchurl { url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz"; - sha256 = "6944cc3ad5131abab01c6703e63672b2e44be52737cdb1144f6ddaebb7f7d682"; + sha256 = "04fn7zzi75y79rkg57nkync3hf14m8708iw33s03f0x8ays6fajz"; }; preBuild = From 2ef559c51361de8e40937f05e670f38fdb2c42cb Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 27 Mar 2013 22:56:17 +0100 Subject: [PATCH 014/167] systemd: Enable the firmware loader in udev It's needed in kernels < 3.8. --- pkgs/os-specific/linux/systemd/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index b1365a0ac07f..76769d4d3e65 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { "--with-dbuspolicydir=$(out)/etc/dbus-1/system.d" "--with-dbussystemservicedir=$(out)/share/dbus-1/system-services" "--with-dbussessionservicedir=$(out)/share/dbus-1/services" - "--with-firmware-path=/root/test-firmware:/var/run/current-system/firmware" + "--with-firmware-path=/root/test-firmware:/run/current-system/firmware" "--with-tty-gid=3" # tty in NixOS has gid 3 ]; @@ -74,6 +74,8 @@ stdenv.mkDerivation rec { # Work around our kernel headers being too old. FIXME: remove # this after the next stdenv update. "-DFS_NOCOW_FL=0x00800000" + # Enable udev's firmware builtin for now. + "-DENABLE_FIRMWARE=1" ]; # Use /var/lib/udev rather than /etc/udev for the generated hardware From 67a1becfdca20d51cc97d99103e6978b209844d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Wed, 27 Mar 2013 23:29:17 +0100 Subject: [PATCH 015/167] OpenImageIO Tidy Up: moved to applications/graphics oiio includes CLI tools for manipulating graphics --- .../graphics/openimageio}/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) rename pkgs/{development/libraries/oiio => applications/graphics/openimageio}/default.nix (62%) diff --git a/pkgs/development/libraries/oiio/default.nix b/pkgs/applications/graphics/openimageio/default.nix similarity index 62% rename from pkgs/development/libraries/oiio/default.nix rename to pkgs/applications/graphics/openimageio/default.nix index 1b6b8be115ff..2a5c66fae183 100644 --- a/pkgs/development/libraries/oiio/default.nix +++ b/pkgs/applications/graphics/openimageio/default.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, cmake, unzip, boost, libjpeg, libtiff, libpng, openexr, ilmbase }: +{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff, openexr +, unzip +}: stdenv.mkDerivation rec { name = "oiio-${version}"; @@ -9,13 +11,16 @@ stdenv.mkDerivation rec { sha256 = "08a6qhplzs8kianqb1gjgrndg81h3il5531jn9g6i4940b1xispg"; }; - buildInputs = [ cmake unzip boost libjpeg libtiff libpng openexr ilmbase ]; + buildInputs = [ boost cmake ilmbase libjpeg libpng libtiff openexr unzip ]; configurePhase = ""; - buildPhase = "make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 INSTALLDIR=$out dist_dir="; + buildPhase = '' + make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 \ + INSTALLDIR=$out dist_dir= + ''; - installPhase = "echo hallo"; + installPhase = ""; meta = with stdenv.lib; { homepage = http://www.openimageio.org; From 8ef25cf87674239fdef5ddc38acc0d7e5f54be5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 00:45:22 +0100 Subject: [PATCH 016/167] Add OpenColorIO, a color management framework. Used by Blender --- .../libraries/opencolorio/default.nix | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/development/libraries/opencolorio/default.nix diff --git a/pkgs/development/libraries/opencolorio/default.nix b/pkgs/development/libraries/opencolorio/default.nix new file mode 100644 index 000000000000..513b340e132a --- /dev/null +++ b/pkgs/development/libraries/opencolorio/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, cmake, unzip }: + +stdenv.mkDerivation rec { + name = "ocio-${version}"; + version = "1.0.8"; + + src = fetchurl { + url = "https://github.com/imageworks/OpenColorIO/archive/v1.0.8.zip"; + sha256 = "1l70bf40dz2znm9rh3r6xs9d6kp719y1djayb7dc89khfqqbx2di"; + }; + + buildInputs = [ cmake unzip ]; + + meta = with stdenv.lib; { + homepage = http://opencolorio.org; + description = "A color management framework for visual effects and animation"; + license = licenses.bsd3; + maintainers = [ maintainers.goibhniu ]; + platforms = platforms.linux; + }; +} \ No newline at end of file From 043d21b69d85e61229f60f4985525f9f59fb9fba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 00:46:23 +0100 Subject: [PATCH 017/167] Add OpenColorIO support to OpenImageIO and tidy up --- pkgs/applications/graphics/openimageio/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/openimageio/default.nix b/pkgs/applications/graphics/openimageio/default.nix index 2a5c66fae183..fa7d16ccf0a7 100644 --- a/pkgs/applications/graphics/openimageio/default.nix +++ b/pkgs/applications/graphics/openimageio/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff, openexr -, unzip +{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff +, opencolorio, openexr, unzip }: stdenv.mkDerivation rec { @@ -11,7 +11,9 @@ stdenv.mkDerivation rec { sha256 = "08a6qhplzs8kianqb1gjgrndg81h3il5531jn9g6i4940b1xispg"; }; - buildInputs = [ boost cmake ilmbase libjpeg libpng libtiff openexr unzip ]; + buildInputs = [ + boost cmake ilmbase libjpeg libpng libtiff opencolorio openexr unzip + ]; configurePhase = ""; @@ -20,11 +22,11 @@ stdenv.mkDerivation rec { INSTALLDIR=$out dist_dir= ''; - installPhase = ""; + installPhase = ":"; meta = with stdenv.lib; { homepage = http://www.openimageio.org; - description = "A library for reading and writing images"; + description = "A library and tools for reading and writing images"; license = licenses.bsd3; maintainers = [ maintainers.goibhniu ]; platforms = platforms.linux; From 5c40e28dfb7a29f30af3489347f845c7ebbefaf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 00:47:47 +0100 Subject: [PATCH 018/167] Rename oiio to openimageio (more explicit) and add opencolorio --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 53c4feb06763..b6d32e6df391 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4712,7 +4712,7 @@ let opensc = opensc_0_11_7; }; - oiio = callPackage ../development/libraries/oiio { }; + opencolorio = callPackage ../development/libraries/opencolorio { }; ois = callPackage ../development/libraries/ois {}; @@ -7592,6 +7592,8 @@ let openbox = callPackage ../applications/window-managers/openbox { }; + openimageio = callPackage ../applications/graphics/openimageio { }; + openjump = callPackage ../applications/misc/openjump { }; openscad = callPackage ../applications/graphics/openscad {}; From ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 00:52:08 +0100 Subject: [PATCH 019/167] Blender: enable extra features in the Video Sequence Editor FFMPEG support allows a greater variety of export and import options. SNDFILE support allows WAV and other sound file formats to be used. JACK support allows blender to be used with XJadeo, Ardour or any other JACK away audio editor. --- pkgs/applications/misc/blender/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index b9c32c982ec4..763a7c2a6e55 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, SDL, cmake, ffmpeg, gettext, glew, ilmbase, libXi, libjpeg, -libpng, libsamplerate, libtiff, mesa, oiio, openal, openexr, openjpeg, +{ stdenv, fetchurl, SDL, cmake, ffmpeg, jackaudio, gettext, glew, ilmbase, libXi, libjpeg, +libpng, libsamplerate, libsndfile, libtiff, mesa, opencolorio, openimageio, openal, openexr, openjpeg, python, zlib, boost }: stdenv.mkDerivation rec { @@ -10,13 +10,17 @@ stdenv.mkDerivation rec { sha256 = "0wj8x9xk5irvsjc3rm7wzml1j47xcdpdpy84kidafk02biskcqcb"; }; - buildInputs = [ cmake mesa ffmpeg gettext python glew libjpeg libpng zlib openal - SDL openexr libsamplerate libXi libtiff ilmbase oiio openjpeg boost ]; + buildInputs = [ cmake mesa ffmpeg jackaudio gettext python glew libjpeg libpng zlib openal + SDL openexr libsamplerate libsndfile libXi libtiff ilmbase opencolorio openimageio openjpeg boost ]; cmakeFlags = [ "-DOPENEXR_INC=${openexr}/include/OpenEXR" "-DWITH_OPENCOLLADA=OFF" + "-DWITH_CODEC_FFMPEG=ON" + "-DWITH_CODEC_SNDFILE=ON" + "-DWITH_SYSTEM_OPENJPEG=ON" + "-DWITH_JACK=ON" "-DWITH_INSTALL_PORTABLE=OFF" "-DPYTHON_LIBRARY=python${python.majorVersion}m" "-DPYTHON_LIBPATH=${python}/lib" From 49b23b29dd84ff35a4ab1eb5bd9043e21e3f75e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 01:00:22 +0100 Subject: [PATCH 020/167] Blender: Tidy up, sort inputs, remove unused OPENJPEG option --- pkgs/applications/misc/blender/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 763a7c2a6e55..1ed51a81f5cc 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -1,6 +1,8 @@ -{ stdenv, fetchurl, SDL, cmake, ffmpeg, jackaudio, gettext, glew, ilmbase, libXi, libjpeg, -libpng, libsamplerate, libsndfile, libtiff, mesa, opencolorio, openimageio, openal, openexr, openjpeg, -python, zlib, boost }: +{ stdenv, fetchurl, SDL, boost, cmake, ffmpeg, gettext, glew +, ilmbase, jackaudio, libXi, libjpeg, libpng, libsamplerate, libsndfile +, libtiff, mesa, openal, opencolorio, openexr, openimageio, openjpeg, python +, zlib +}: stdenv.mkDerivation rec { name = "blender-2.66a"; @@ -10,8 +12,11 @@ stdenv.mkDerivation rec { sha256 = "0wj8x9xk5irvsjc3rm7wzml1j47xcdpdpy84kidafk02biskcqcb"; }; - buildInputs = [ cmake mesa ffmpeg jackaudio gettext python glew libjpeg libpng zlib openal - SDL openexr libsamplerate libsndfile libXi libtiff ilmbase opencolorio openimageio openjpeg boost ]; + buildInputs = [ + SDL boost cmake ffmpeg gettext glew ilmbase jackaudio libXi + libjpeg libpng libsamplerate libsndfile libtiff mesa openal + opencolorio openexr openimageio openjpeg python zlib + ]; cmakeFlags = [ @@ -19,7 +24,6 @@ stdenv.mkDerivation rec { "-DWITH_OPENCOLLADA=OFF" "-DWITH_CODEC_FFMPEG=ON" "-DWITH_CODEC_SNDFILE=ON" - "-DWITH_SYSTEM_OPENJPEG=ON" "-DWITH_JACK=ON" "-DWITH_INSTALL_PORTABLE=OFF" "-DPYTHON_LIBRARY=python${python.majorVersion}m" From 3da635c88a163f418564b9066b8087eb6da23e69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 01:03:30 +0100 Subject: [PATCH 021/167] Python 3.3 add setup-hook --- .../interpreters/python/3.3/setup-hook.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pkgs/development/interpreters/python/3.3/setup-hook.sh diff --git a/pkgs/development/interpreters/python/3.3/setup-hook.sh b/pkgs/development/interpreters/python/3.3/setup-hook.sh new file mode 100644 index 000000000000..e6fa34bf54ba --- /dev/null +++ b/pkgs/development/interpreters/python/3.3/setup-hook.sh @@ -0,0 +1,15 @@ +addPythonPath() { + addToSearchPathWithCustomDelimiter : PYTHONPATH $1/lib/python3.2/site-packages +} + +toPythonPath() { + local paths="$1" + local result= + for i in $paths; do + p="$i/lib/python3.2/site-packages" + result="${result}${result:+:}$p" + done + echo $result +} + +envHooks=(${envHooks[@]} addPythonPath) From a5e48c0f2062da5c5cc00412f0c021172c104aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 01:10:23 +0100 Subject: [PATCH 022/167] Python 3.3 upgrade to 3.3.1rc1 to fix an important bug for Nix http://bugs.python.org/issue15833 When Python 3.3.0 attempts to compile python bytecode in the system directories it raises and exception and stops. Since Python 3.3 is only required by the latest Blender, I hope it's OK to use the RC until the final release. --- pkgs/development/interpreters/python/3.3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index dc9f99e9cdcc..7baecad76c6b 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -17,7 +17,7 @@ with stdenv.lib; let majorVersion = "3.3"; - version = "${majorVersion}.0"; + version = "${majorVersion}.1rc1"; buildInputs = filter (p: p != null) [ zlib bzip2 gdbm sqlite db4 readline ncurses openssl tcl tk libX11 xproto @@ -29,7 +29,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2"; - sha256 = "1ybdf7wc8pfw51rf7xcywfw27n6l97qyzd1ibpq151q5dkyi7h8m"; + sha256 = "1pnsbdzbd3750jcy32sv1760lv7am4x3f33jn1kmdmd82za279gv"; }; preConfigure = '' From df92d96871863e7b3ce1e5a3ebfbfc815c1ad288 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 28 Mar 2013 13:08:25 +0100 Subject: [PATCH 023/167] linux: Update to 3.2.42 --- pkgs/os-specific/linux/kernel/linux-3.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.2.nix b/pkgs/os-specific/linux/kernel/linux-3.2.nix index 24609d59132e..3280ac7ad244 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.2.nix @@ -240,7 +240,7 @@ in import ./generic.nix ( rec { - version = "3.2.41"; + version = "3.2.42"; modDirVersion = version; @@ -250,7 +250,7 @@ import ./generic.nix ( src = fetchurl { url = "mirror://kernel/linux/kernel/v3.0/linux-${version}.tar.xz"; - sha256 = "0dwk0pg07kq5s4i8h0mzv4n3dc68hp0ayd1lqis3ix86m8qkhv4j"; + sha256 = "17cwyv474pnwj7i7i513l6g1iz8sp92gvf0crpmrrvv93064xz08"; }; config = configWithPlatform stdenv.platform; From 8a42c8b94e684e95f80e8dfb92c3cc5d3d5c1344 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 28 Mar 2013 13:13:08 +0100 Subject: [PATCH 024/167] httpd: Update to 2.2.24 --- pkgs/servers/http/apache-httpd/2.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix index d4def35c09f1..ba0bde633584 100644 --- a/pkgs/servers/http/apache-httpd/2.2.nix +++ b/pkgs/servers/http/apache-httpd/2.2.nix @@ -12,12 +12,12 @@ assert ldapSupport -> aprutil.ldapSupport && openldap != null; assert mpm == "prefork" || mpm == "worker" || mpm == "event"; stdenv.mkDerivation rec { - version = "2.2.23"; + version = "2.2.24"; name = "apache-httpd-${version}"; src = fetchurl { url = "mirror://apache/httpd/httpd-${version}.tar.bz2"; - sha1 = "2776145201068045d4ed83157a0e2e1c28c4c453"; + sha1 = "f73bce14832ec40c1aae68f4f8c367cab2266241"; }; buildInputs = [perl apr aprutil pcre] ++ From 229616de833d48211d2affb7bcf5b4374ea5ba66 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Thu, 28 Mar 2013 12:47:27 +0100 Subject: [PATCH 025/167] set platforms and correct license to synergy --- pkgs/applications/misc/synergy/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/synergy/default.nix b/pkgs/applications/misc/synergy/default.nix index a267a29c7e2e..4bb3ef9e64a4 100644 --- a/pkgs/applications/misc/synergy/default.nix +++ b/pkgs/applications/misc/synergy/default.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { meta = { description = "Tool to share the mouse keyboard and the clipboard between computers"; homepage = http://synergy-foss.org; - license = "GPL"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.all; }; } From 171425c8a0258e05b8c59965cbfa14ede04cc1f3 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 13:56:22 +0100 Subject: [PATCH 026/167] mini-httpd: update to version 1.4 --- pkgs/servers/http/mini-httpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/mini-httpd/default.nix b/pkgs/servers/http/mini-httpd/default.nix index 5cdff23d0a3a..b8848f1e5d80 100644 --- a/pkgs/servers/http/mini-httpd/default.nix +++ b/pkgs/servers/http/mini-httpd/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, boostHeaders }: stdenv.mkDerivation rec { - name = "mini-httpd-1.3"; + name = "mini-httpd-1.4"; src = fetchurl { url = "mirror://savannah/mini-httpd/${name}.tar.gz"; - sha256 = "16n33hyp3fcjvd71yrny3ym3kqvxr1jy2hh9wgf6b7zjri3gfak3"; + sha256 = "1i46klkx2ca1cgmlilajkx8gf7b7d7c2sj58llxfllh184pb6cpd"; }; buildInputs = [ boostHeaders ]; From 6cd1dc255ee33df8961a2c55c16844e6562362c6 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 09:42:15 -0400 Subject: [PATCH 027/167] Update rubygems Signed-off-by: Shea Levy --- .../interpreters/ruby/generated.nix | 231 ++++++++++-------- 1 file changed, 127 insertions(+), 104 deletions(-) diff --git a/pkgs/development/interpreters/ruby/generated.nix b/pkgs/development/interpreters/ruby/generated.nix index 2f276fc163a6..13ee31bf44f3 100644 --- a/pkgs/development/interpreters/ruby/generated.nix +++ b/pkgs/development/interpreters/ruby/generated.nix @@ -4,12 +4,12 @@ g: # Get dependencies from patched gems { aliases = { ZenTest = g.ZenTest_4_9_0; - actionmailer = g.actionmailer_3_2_12; - actionpack = g.actionpack_3_2_12; - activemodel = g.activemodel_3_2_12; - activerecord = g.activerecord_3_2_12; - activeresource = g.activeresource_3_2_12; - activesupport = g.activesupport_3_2_12; + actionmailer = g.actionmailer_3_2_13; + actionpack = g.actionpack_3_2_13; + activemodel = g.activemodel_3_2_13; + activerecord = g.activerecord_3_2_13; + activeresource = g.activeresource_3_2_13; + activesupport = g.activesupport_3_2_13; addressable = g.addressable_2_3_3; arel = g.arel_3_0_2; atoulme_Antwrap = g.atoulme_Antwrap_0_7_4; @@ -17,7 +17,7 @@ g: # Get dependencies from patched gems aws_sdk = g.aws_sdk_1_8_5; bitbucket_backup = g.bitbucket_backup_0_2_2; builder = g.builder_3_2_0; - buildr = g.buildr_1_4_10; + buildr = g.buildr_1_4_11; bundler = g.bundler_1_3_4; childprocess = g.childprocess_0_3_9; chronic = g.chronic_0_9_1; @@ -28,44 +28,45 @@ g: # Get dependencies from patched gems erubis = g.erubis_2_7_0; eventmachine = g.eventmachine_1_0_3; eventmachine_tail = g.eventmachine_tail_0_6_4; + execjs = g.execjs_1_4_0; fakes3 = g.fakes3_0_1_5; - faraday = g.faraday_0_8_6; + faraday = g.faraday_0_8_7; faraday_middleware = g.faraday_middleware_0_8_8; - ffi = g.ffi_1_4_0; + ffi = g.ffi_1_6_0; file_tail = g.file_tail_1_0_12; foreman = g.foreman_0_62_0; - highline = g.highline_1_6_15; + highline = g.highline_1_6_16; hike = g.hike_1_2_1; hoe = g.hoe_3_1_0; i18n = g.i18n_0_6_4; journey = g.journey_1_0_4; jruby_pageant = g.jruby_pageant_1_1_1; - jsduck = g.jsduck_4_6_2; + jsduck = g.jsduck_4_7_1; json = g.json_1_7_7; json_pure = g.json_pure_1_7_7; libv8 = g.libv8_3_3_10_4; macaddr = g.macaddr_1_6_1; - mail = g.mail_2_4_4; + mail = g.mail_2_5_3; mime_types = g.mime_types_1_21; minitar = g.minitar_0_5_3; - multi_json = g.multi_json_1_6_1; + multi_json = g.multi_json_1_7_2; multipart_post = g.multipart_post_1_2_0; net_sftp = g.net_sftp_2_0_5; net_ssh = g.net_ssh_2_6_6; nix = g.nix_0_1_1; - nokogiri = g.nokogiri_1_5_6; + nokogiri = g.nokogiri_1_5_9; papertrail = g.papertrail_0_9_7; papertrail_cli = g.papertrail_cli_0_9_3; - parallel = g.parallel_0_6_2; + parallel = g.parallel_0_6_3; polyglot = g.polyglot_0_3_3; rack = g.rack_1_5_2; rack_cache = g.rack_cache_1_2; rack_protection = g.rack_protection_1_5_0; rack_ssl = g.rack_ssl_1_3_3; rack_test = g.rack_test_0_6_2; - rails = g.rails_3_2_12; - railties = g.railties_3_2_12; - rake = g.rake_10_0_3; + rails = g.rails_3_2_13; + railties = g.railties_3_2_13; + rake = g.rake_10_0_4; rb_fsevent = g.rb_fsevent_0_9_3; rdiscount = g.rdiscount_2_0_7_1; rdoc = g.rdoc_3_12_2; @@ -85,9 +86,9 @@ g: # Get dependencies from patched gems syslog_protocol = g.syslog_protocol_0_9_2; systemu = g.systemu_2_5_2; therubyracer = g.therubyracer_0_10_2; - thin = g.thin_1_5_0; - thor = g.thor_0_17_0; - tilt = g.tilt_1_3_5; + thin = g.thin_1_5_1; + thor = g.thor_0_18_0; + tilt = g.tilt_1_3_6; tins = g.tins_0_7_2; treetop = g.treetop_1_4_12; tzinfo = g.tzinfo_0_3_37; @@ -130,71 +131,71 @@ installed versions.''; requiredGems = [ ]; sha256 = ''16bp7rwl463m0d213rmwp4rjfwiw1bm529c518v91l18h7hcnb96''; }; - actionmailer_3_2_12 = { + actionmailer_3_2_13 = { basename = ''actionmailer''; meta = { description = ''Email composition, delivery, and receiving framework (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.''; }; - name = ''actionmailer-3.2.12''; - requiredGems = [ g.actionpack_3_2_12 g.mail_2_4_4 ]; - sha256 = ''0rjcyz5p139iv7r9gb9nw6c490mksf6n3rnfxsg6bdaxpabinlc7''; + name = ''actionmailer-3.2.13''; + requiredGems = [ g.actionpack_3_2_13 g.mail_2_5_3 ]; + sha256 = ''0ksw1b5rba8l6400qgc6zjdn14q68n6crjmm76ggg32r4wv3xn06''; }; - actionpack_3_2_12 = { + actionpack_3_2_13 = { basename = ''actionpack''; meta = { description = ''Web-flow and rendering framework putting the VC in MVC (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Web apps on Rails. Simple, battle-tested conventions for building and testing MVC web applications. Works with any Rack-compatible server.''; }; - name = ''actionpack-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 g.rack_cache_1_2 g.builder_3_0_4 g.rack_1_4_5 g.rack_test_0_6_2 g.journey_1_0_4 g.sprockets_2_2_2 g.erubis_2_7_0 ]; - sha256 = ''19p8slf607ssvhd1xkqmk0ddhxqh99faqbgw9i0gyjh1hxyh4apk''; + name = ''actionpack-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.activemodel_3_2_13 g.rack_cache_1_2 g.builder_3_0_4 g.rack_1_4_5 g.rack_test_0_6_2 g.journey_1_0_4 g.sprockets_2_2_2 g.erubis_2_7_0 ]; + sha256 = ''1m3kd3rwa4z0yik68xi0l9q71lyzq4gdciqaw5w2w9pal1cj8y5w''; }; - activemodel_3_2_12 = { + activemodel_3_2_13 = { basename = ''activemodel''; meta = { description = ''A toolkit for building modeling frameworks (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''A toolkit for building modeling frameworks like Active Record and Active Resource. Rich support for attributes, callbacks, validations, observers, serialization, internationalization, and testing.''; }; - name = ''activemodel-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.builder_3_0_4 ]; - sha256 = ''1w43k2yhdybrrhph87zhb9shc1j8z1ryhpqy15y7cj9gc4a1bnqf''; + name = ''activemodel-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.builder_3_0_4 ]; + sha256 = ''0lpc9ylwm00g66hmgj06iq51m2l234ii7k6qsjiywf9x5fq6khn5''; }; - activerecord_3_2_12 = { + activerecord_3_2_13 = { basename = ''activerecord''; meta = { description = ''Object-relational mapper framework (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes. Strong conventions for associations, validations, aggregations, migrations, and testing come baked-in.''; }; - name = ''activerecord-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 g.arel_3_0_2 g.tzinfo_0_3_37 ]; - sha256 = ''0fl8iyv3gcy72y79iv4ccyck8ik02rrl3pdy7yxfhlnqgryp8syi''; + name = ''activerecord-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.activemodel_3_2_13 g.arel_3_0_2 g.tzinfo_0_3_37 ]; + sha256 = ''1z5rrjy2v27xldr24sd4sxi6k6f5anyg20kwj3qyc0jjn8c0gv85''; }; - activeresource_3_2_12 = { + activeresource_3_2_13 = { basename = ''activeresource''; meta = { description = ''REST modeling framework (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models.''; }; - name = ''activeresource-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 ]; - sha256 = ''0dmy7n93ndxfqkccs0mv82dzkr130414djg96qi8njyj07ad84fi''; + name = ''activeresource-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.activemodel_3_2_13 ]; + sha256 = ''1r4ph4cqd32d4lq9bfyv1dpfxc4qndcqhqx7h7xg4p0va7dz251l''; }; - activesupport_3_2_12 = { + activesupport_3_2_13 = { basename = ''activesupport''; meta = { description = ''A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.''; homepage = ''http://www.rubyonrails.org''; longDescription = ''A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.''; }; - name = ''activesupport-3.2.12''; - requiredGems = [ g.i18n_0_6_4 g.multi_json_1_6_1 ]; - sha256 = ''1giqkprxjf5gyfyhn5nz9q8a5gi3v8irxhkpqr00zc5fw1azllsg''; + name = ''activesupport-3.2.13''; + requiredGems = [ g.i18n_0_6_1 g.multi_json_1_7_2 ]; + sha256 = ''1vailj8ja9g3s029p5qbvqdpxcis5gcpkl2d6j7a6d36hxlwlf8y''; }; addressable_2_3_3 = { basename = ''addressable''; @@ -270,7 +271,7 @@ rails support and extra plugins for migrations and fixtures.''; longDescription = ''AWS SDK for Ruby''; }; name = ''aws-sdk-1.8.5''; - requiredGems = [ g.uuidtools_2_1_3 g.nokogiri_1_5_6 g.json_1_7_7 ]; + requiredGems = [ g.uuidtools_2_1_3 g.nokogiri_1_5_9 g.json_1_7_7 ]; sha256 = ''0rhkkkfsw0qzckn99mnvpbnl7b1kysma3x8bbqwah2x438kwygpb''; }; bitbucket_backup_0_2_2 = { @@ -281,7 +282,7 @@ rails support and extra plugins for migrations and fixtures.''; longDescription = ''A tool to backup Bitbucket repos.''; }; name = ''bitbucket-backup-0.2.2''; - requiredGems = [ g.highline_1_6_15 g.json_1_7_7 ]; + requiredGems = [ g.highline_1_6_16 g.json_1_7_7 ]; sha256 = ''1kzg6pkzw04n96i6mhb74gpg4c899wly5fc2m1y6m2xvn71qksys''; }; builder_3_0_4 = { @@ -332,7 +333,7 @@ simple to do. Currently the following builder objects are supported: requiredGems = [ ]; sha256 = ''0f2cpfx6lpazb1wrz3lf06qp6f0qf0gdq5z8xnhkplc3fz3kslb0''; }; - buildr_1_4_10 = { + buildr_1_4_11 = { basename = ''buildr''; meta = { description = ''Build like you code''; @@ -344,9 +345,9 @@ to do, and it takes care of the rest. But also something we can easily extend for those one-off tasks, with a language that's a joy to use. ''; }; - name = ''buildr-1.4.10''; + name = ''buildr-1.4.11''; requiredGems = [ g.rake_0_9_2_2 g.builder_3_1_3 g.net_ssh_2_6_0 g.net_sftp_2_0_5 g.rubyzip_0_9_9 g.highline_1_6_2 g.json_pure_1_7_5 g.rubyforge_2_0_4 g.hoe_3_1_0 g.rjb_1_4_2 g.atoulme_Antwrap_0_7_4 g.diff_lcs_1_1_3 g.rspec_expectations_2_11_3 g.rspec_mocks_2_11_3 g.rspec_core_2_11_1 g.rspec_2_11_0 g.xml_simple_1_1_1 g.minitar_0_5_3 g.bundler_1_3_4 ]; - sha256 = ''1x192r8ab5zr9rlp1i9b3pi3y74f9pj2w491wkgshgwj22akh6vn''; + sha256 = ''0bdrwl9jvxc5h2wqsyacr688hxvzcqan1bhqyryb5bg9a5gpscb4''; }; bundler_1_3_4 = { basename = ''bundler''; @@ -367,7 +368,7 @@ for those one-off tasks, with a language that's a joy to use. longDescription = ''This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.''; }; name = ''childprocess-0.3.9''; - requiredGems = [ g.ffi_1_4_0 ]; + requiredGems = [ g.ffi_1_6_0 ]; sha256 = ''0jbz2ix7ff9ry8717lhcq9w8j8yd45akw48giwgdqccay5mlph7d''; }; chronic_0_9_1 = { @@ -492,6 +493,17 @@ using TCP/IP, especially if custom protocols are required.''; requiredGems = [ g.eventmachine_1_0_3 ]; sha256 = ''1pvlb34vdzd81kf9f3xyibb4f55xjqm7lqqy28dgyci5cyv50y61''; }; + execjs_1_4_0 = { + basename = ''execjs''; + meta = { + description = ''Run JavaScript code from Ruby''; + homepage = ''https://github.com/sstephenson/execjs''; + longDescription = ''ExecJS lets you run JavaScript code from Ruby.''; + }; + name = ''execjs-1.4.0''; + requiredGems = [ g.multi_json_1_7_2 ]; + sha256 = ''0b69ci2afbcdqsri3i89a7s7j7palxsxdb65x6h2wx79kzlc5xcs''; + }; fakes3_0_1_5 = { basename = ''fakes3''; meta = { @@ -499,18 +511,18 @@ using TCP/IP, especially if custom protocols are required.''; longDescription = ''Use FakeS3 to test basic S3 functionality without actually connecting to S3''; }; name = ''fakes3-0.1.5''; - requiredGems = [ g.thor_0_17_0 g.builder_3_2_0 ]; + requiredGems = [ g.thor_0_18_0 g.builder_3_2_0 ]; sha256 = ''1na5wrbarla6s414svqmr5spbpv6vmcgpswal444x4clcpmadhib''; }; - faraday_0_8_6 = { + faraday_0_8_7 = { basename = ''faraday''; meta = { description = ''HTTP/REST API client library.''; homepage = ''https://github.com/lostisland/faraday''; }; - name = ''faraday-0.8.6''; + name = ''faraday-0.8.7''; requiredGems = [ g.multipart_post_1_2_0 ]; - sha256 = ''16jd0gnqfrh5v4v88nlasyjjm8cmf2w2p6gphxq64mvdxlcdy5jy''; + sha256 = ''186a9md3ixanl2crdlw37kspw5wiyw16z9mj3aw8rd1yd5q56ddi''; }; faraday_middleware_0_8_8 = { basename = ''faraday_middleware''; @@ -520,19 +532,19 @@ using TCP/IP, especially if custom protocols are required.''; longDescription = ''Various middleware for Faraday''; }; name = ''faraday_middleware-0.8.8''; - requiredGems = [ g.faraday_0_8_6 ]; + requiredGems = [ g.faraday_0_8_7 ]; sha256 = ''1n0g8pm7ynx6ffyqhscc1cqw97zhvd8isr31yfyj15335j1jsncz''; }; - ffi_1_4_0 = { + ffi_1_6_0 = { basename = ''ffi''; meta = { description = ''Ruby FFI''; homepage = ''http://wiki.github.com/ffi/ffi''; longDescription = ''Ruby FFI library''; }; - name = ''ffi-1.4.0''; + name = ''ffi-1.6.0''; requiredGems = [ ]; - sha256 = ''06a29qvg487yk9pyi7wzyj5700mf7s3mjdqc6dsrh0467mjj9768''; + sha256 = ''0jhjzj8gb6cakv32a6czgrx8krb0hx8mmkwh5yv2lhdcv3ak013v''; }; file_tail_1_0_12 = { basename = ''file_tail''; @@ -553,10 +565,10 @@ using TCP/IP, especially if custom protocols are required.''; longDescription = ''Process manager for applications with multiple components''; }; name = ''foreman-0.62.0''; - requiredGems = [ g.thor_0_17_0 ]; + requiredGems = [ g.thor_0_18_0 ]; sha256 = ''08i34rgs3bydk52zwpps4p0y2fvcnibp9lvfdhr75ppin7wv7lmr''; }; - highline_1_6_15 = { + highline_1_6_16 = { basename = ''highline''; meta = { description = ''HighLine is a high-level command-line IO library.''; @@ -567,9 +579,9 @@ crank out anything from simple list selection to complete shells with just minutes of work. ''; }; - name = ''highline-1.6.15''; + name = ''highline-1.6.16''; requiredGems = [ ]; - sha256 = ''1ilwlgylv92md9dnw6hqhrw8hiwk3f4k8qz6airqjp1rq9r594m1''; + sha256 = ''1v9dps96hryg7c8hqw41vbm1q02d7wpq7fj1c3bkzsd5518idgzi''; }; highline_1_6_2 = { basename = ''highline''; @@ -617,6 +629,17 @@ For extra goodness, see: http://seattlerb.rubyforge.org/hoe/Hoe.pdf''; requiredGems = [ g.rake_0_9_6 ]; sha256 = ''0i961x0hrd6fs1nsfham87dhn64gqpnai27l14jag7qbnp3a79yp''; }; + i18n_0_6_1 = { + basename = ''i18n''; + meta = { + description = ''New wave Internationalization support for Ruby''; + homepage = ''http://github.com/svenfuchs/i18n''; + longDescription = ''New wave Internationalization support for Ruby.''; + }; + name = ''i18n-0.6.1''; + requiredGems = [ ]; + sha256 = ''0x3lhp1vl1k4dfqx6k93hhxcpjkz57y8cf007ws7p845ywk6ibfl''; + }; i18n_0_6_4 = { basename = ''i18n''; meta = { @@ -650,16 +673,16 @@ For extra goodness, see: http://seattlerb.rubyforge.org/hoe/Hoe.pdf''; requiredGems = [ ]; sha256 = ''1kgqsn0bagr41gf5kbqaxbs38a7s5bm85m0pdx4qz7d70v9nc9cl''; }; - jsduck_4_6_2 = { + jsduck_4_7_1 = { basename = ''jsduck''; meta = { description = ''Simple JavaScript Duckumentation generator''; homepage = ''https://github.com/senchalabs/jsduck''; longDescription = ''Documentation generator for Sencha JS frameworks''; }; - name = ''jsduck-4.6.2''; - requiredGems = [ g.rdiscount_2_0_7_1 g.json_1_7_7 g.parallel_0_6_2 g.therubyracer_0_10_2 g.dimensions_1_2_0 ]; - sha256 = ''035w4igfa6yy6234ff4zbiqfjn0bhwqs6k8kji52l7gzgskwmzln''; + name = ''jsduck-4.7.1''; + requiredGems = [ g.rdiscount_2_0_7_1 g.json_1_7_7 g.parallel_0_6_3 g.execjs_1_4_0 g.therubyracer_0_10_2 g.dimensions_1_2_0 ]; + sha256 = ''0yn568ix4j4xpyrsk07cp5c3migsl7ymlg07fsyn5a65yrwyaiyv''; }; json_1_7_7 = { basename = ''json''; @@ -716,16 +739,16 @@ For extra goodness, see: http://seattlerb.rubyforge.org/hoe/Hoe.pdf''; requiredGems = [ g.systemu_2_5_2 ]; sha256 = ''1vd9l1d0lc0sq3rn1ya816wrzgxxqdzq6pgq0y0435qm6ikwy7ch''; }; - mail_2_4_4 = { + mail_2_5_3 = { basename = ''mail''; meta = { description = ''Mail provides a nice Ruby DSL for making, sending and reading emails.''; homepage = ''http://github.com/mikel/mail''; longDescription = ''A really Ruby Mail handler.''; }; - name = ''mail-2.4.4''; + name = ''mail-2.5.3''; requiredGems = [ g.mime_types_1_21 g.treetop_1_4_12 g.i18n_0_6_4 ]; - sha256 = ''0idylz5pnlz34mrxm7gs9jbll2c0k0y9dq2qarhxk30gwyvjaxi3''; + sha256 = ''1afr3acz7vsvr4gp6wnrkw1iwbjhf14mh8g8mlm40r86wcwzr39k''; }; mime_types_1_21 = { basename = ''mime_types''; @@ -770,16 +793,16 @@ added from the the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp requiredGems = [ ]; sha256 = ''035vs1knnnjsb8arfp8vx75warvwcdpiljjwv38lqljai9v8fq53''; }; - multi_json_1_6_1 = { + multi_json_1_7_2 = { basename = ''multi_json''; meta = { description = ''A gem to provide swappable JSON backends.''; homepage = ''http://github.com/intridea/multi_json''; longDescription = ''A gem to provide easy switching between different JSON backends, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, and OkJson.''; }; - name = ''multi_json-1.6.1''; + name = ''multi_json-1.7.2''; requiredGems = [ ]; - sha256 = ''0p33swcl9i97wvv0cq9jkdl8q7xbc3j07apy35vsgldnhw99krcg''; + sha256 = ''17mfs58bilkn2b9g3ggh6pz1w4c2a72mqsr6zf0qd8vahw5h158q''; }; multipart_post_1_2_0 = { basename = ''multipart_post''; @@ -836,7 +859,7 @@ added from the the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp requiredGems = [ ]; sha256 = ''0kwrbkkg0gxibhsz9dpd5zabcf2wqsicg28yiazyb3dc9dslk26k''; }; - nokogiri_1_5_6 = { + nokogiri_1_5_9 = { basename = ''nokogiri''; meta = { description = ''Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser''; @@ -847,9 +870,9 @@ many features is the ability to search documents via XPath or CSS3 selectors. XML is like violence - if it doesn’t solve your problems, you are not using enough of it.''; }; - name = ''nokogiri-1.5.6''; + name = ''nokogiri-1.5.9''; requiredGems = [ ]; - sha256 = ''1235h8k242f6yi5qgb8rfcx6gp7g99djwqgrz0vb6w12pbp9kar8''; + sha256 = ''08qx4p3p6dd1yh58c4waz5rjmkzv3v315fr0l6n0dgkg71dczbi9''; }; papertrail_0_9_7 = { basename = ''papertrail''; @@ -859,7 +882,7 @@ enough of it.''; longDescription = ''Command-line client for Papertrail hosted log management service. Tails and searches app server logs and system syslog. Supports Boolean search and works with grep and pipe output (Unix).''; }; name = ''papertrail-0.9.7''; - requiredGems = [ g.addressable_2_3_3 g.yajl_ruby_1_1_0 g.chronic_0_9_1 g.faraday_0_8_6 g.faraday_middleware_0_8_8 ]; + requiredGems = [ g.addressable_2_3_3 g.yajl_ruby_1_1_0 g.chronic_0_9_1 g.faraday_0_8_7 g.faraday_middleware_0_8_8 ]; sha256 = ''0v0m1v0qabbr9pmyl77znz39qy1m7p0xwvf3lf9hyq6n524f2dwr''; }; papertrail_cli_0_9_3 = { @@ -873,15 +896,15 @@ enough of it.''; requiredGems = [ g.papertrail_0_9_7 ]; sha256 = ''1914dcfqsmw5rl4xd1zwjrfbgwglyncxm8km06bgxaqn4wnaq5iv''; }; - parallel_0_6_2 = { + parallel_0_6_3 = { basename = ''parallel''; meta = { description = ''Run any kind of code in parallel processes''; - homepage = ''http://github.com/grosser/parallel''; + homepage = ''https://github.com/grosser/parallel''; }; - name = ''parallel-0.6.2''; + name = ''parallel-0.6.3''; requiredGems = [ ]; - sha256 = ''05rdbb1jqv0179wjfj74a1739rsqv7ijf4jp1i5s6lzh878c6l6p''; + sha256 = ''17mg4vfx1c4z7399azf982a3cn522m43kavdqfhfs6i89m7z0l9n''; }; polyglot_0_3_3 = { basename = ''polyglot''; @@ -981,27 +1004,27 @@ request helpers feature.''; requiredGems = [ g.rack_1_5_2 ]; sha256 = ''01mk715ab5qnqf6va8k3hjsvsmplrfqpz6g58qw4m3l8mim0p4ky''; }; - rails_3_2_12 = { + rails_3_2_13 = { basename = ''rails''; meta = { description = ''Full-stack web application framework.''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.''; }; - name = ''rails-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.actionpack_3_2_12 g.activerecord_3_2_12 g.activeresource_3_2_12 g.actionmailer_3_2_12 g.railties_3_2_12 g.bundler_1_3_4 ]; - sha256 = ''1jjnm74nzl5v3461c0mrbpa471yd6s8hnkmnxb64c2rm95c61wxz''; + name = ''rails-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.actionpack_3_2_13 g.activerecord_3_2_13 g.activeresource_3_2_13 g.actionmailer_3_2_13 g.railties_3_2_13 g.bundler_1_3_4 ]; + sha256 = ''1f5w4ivy0jxpjf1gkav064i0gd5x9xqnznwrkbc3slc9savprifz''; }; - railties_3_2_12 = { + railties_3_2_13 = { basename = ''railties''; meta = { description = ''Tools for creating, working with, and running Rails applications.''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Rails internals: application bootup, plugins, generators, and rake tasks.''; }; - name = ''railties-3.2.12''; - requiredGems = [ g.rake_10_0_3 g.rack_ssl_1_3_3 g.thor_0_17_0 g.rdoc_3_12_2 g.activesupport_3_2_12 g.actionpack_3_2_12 ]; - sha256 = ''0d8wy1n591x12bigj3jh8c9djzi8k68vh14342mc22raxwp5rwdw''; + name = ''railties-3.2.13''; + requiredGems = [ g.rake_10_0_4 g.rack_ssl_1_3_3 g.thor_0_18_0 g.rdoc_3_12_2 g.activesupport_3_2_13 g.actionpack_3_2_13 ]; + sha256 = ''01wbqfnlrs9nbs0b97dbxh7aap2bma7my530pcggxdf8ckms8kr9''; }; rake_0_9_2_2 = { basename = ''rake''; @@ -1025,16 +1048,16 @@ request helpers feature.''; requiredGems = [ ]; sha256 = ''09kyh351gddn6gjz255hbaza1cw235xvfz9dc15rhyq9phvqdphc''; }; - rake_10_0_3 = { + rake_10_0_4 = { basename = ''rake''; meta = { description = ''Ruby based make-like utility.''; homepage = ''http://rake.rubyforge.org''; longDescription = ''Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.''; }; - name = ''rake-10.0.3''; + name = ''rake-10.0.4''; requiredGems = [ ]; - sha256 = ''09vvf3ylhdkr10vz7ajl3c7ql6dsnzkh3qclpafar433bzadfbpf''; + sha256 = ''032z0csyi5bjfgzq3winvqvi9fpf3bfx518hzzapkfy90y702ds1''; }; rb_fsevent_0_9_3 = { basename = ''rb_fsevent''; @@ -1202,7 +1225,7 @@ See RDoc for a description of RDoc's markup and basic use.''; longDescription = ''WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application.''; }; name = ''selenium-webdriver-2.31.0''; - requiredGems = [ g.multi_json_1_6_1 g.rubyzip_0_9_9 g.childprocess_0_3_9 g.websocket_1_0_7 ]; + requiredGems = [ g.multi_json_1_7_2 g.rubyzip_0_9_9 g.childprocess_0_3_9 g.websocket_1_0_7 ]; sha256 = ''1nv3ff31g183kdb97jjz0y7ny3vdnccd09pgblpj87bzhrrdfv3r''; }; servolux_0_10_0 = { @@ -1227,7 +1250,7 @@ interpreters.''; longDescription = ''Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort.''; }; name = ''sinatra-1.3.2''; - requiredGems = [ g.rack_1_5_2 g.rack_protection_1_5_0 g.tilt_1_3_5 ]; + requiredGems = [ g.rack_1_5_2 g.rack_protection_1_5_0 g.tilt_1_3_6 ]; sha256 = ''05blf915zpiwyz7agcn9rwdmddwxz0z4l3gd4qlqmrgd2vkw4sxc''; }; sprockets_2_2_2 = { @@ -1238,7 +1261,7 @@ interpreters.''; longDescription = ''Sprockets is a Rack-based asset packaging system that concatenates and serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.''; }; name = ''sprockets-2.2.2''; - requiredGems = [ g.hike_1_2_1 g.multi_json_1_6_1 g.rack_1_5_2 g.tilt_1_3_5 ]; + requiredGems = [ g.hike_1_2_1 g.multi_json_1_7_2 g.rack_1_5_2 g.tilt_1_3_6 ]; sha256 = ''15ngw3bjbyr31ygzmmdxxa30ylah6pdn8akgdy9w30vfx2vr7s7s''; }; syslog_protocol_0_9_2 = { @@ -1274,38 +1297,38 @@ interpreters.''; requiredGems = [ g.libv8_3_3_10_4 ]; sha256 = ''111hm2l613v06sy7pzjzmnyi4x11rg3c2syhnpv8fn0wnn9rdiyb''; }; - thin_1_5_0 = { + thin_1_5_1 = { basename = ''thin''; meta = { description = ''A thin and fast web server''; homepage = ''http://code.macournoyer.com/thin/''; longDescription = ''A thin and fast web server''; }; - name = ''thin-1.5.0''; + name = ''thin-1.5.1''; requiredGems = [ g.rack_1_5_2 g.eventmachine_1_0_3 g.daemons_1_1_9 ]; - sha256 = ''14sd2qbbk6y108z6v723mh3f1mk8s4fwxmmn9f8dk4xkhk4rwvq1''; + sha256 = ''0hrq9m3hb6pm8yrqshhg0gafkphdpvwcqmr7k722kgdisp3w91ga''; }; - thor_0_17_0 = { + thor_0_18_0 = { basename = ''thor''; meta = { description = ''A scripting framework that replaces rake, sake and rubigen''; homepage = ''http://whatisthor.com/''; longDescription = ''A scripting framework that replaces rake, sake and rubigen''; }; - name = ''thor-0.17.0''; + name = ''thor-0.18.0''; requiredGems = [ ]; - sha256 = ''0gf46qafcfgmi20a2mnb3wkd9y6spgy2hq22h70377daj4zjxla2''; + sha256 = ''0m7pl518j5q1ymgxmsi6xfjp6k40mwbmzk33s760v53azwxkfxan''; }; - tilt_1_3_5 = { + tilt_1_3_6 = { basename = ''tilt''; meta = { description = ''Generic interface to multiple Ruby template engines''; homepage = ''http://github.com/rtomayko/tilt/''; longDescription = ''Generic interface to multiple Ruby template engines''; }; - name = ''tilt-1.3.5''; + name = ''tilt-1.3.6''; requiredGems = [ ]; - sha256 = ''081saxdxnal4ky38a904jw3n2837m80g211w0zm5rx6m712mb6qd''; + sha256 = ''1yz6zfnwq0qyjn71115vd63ly8zm1jss0b2v7fbcbzzj9lrnq9y6''; }; tins_0_7_2 = { basename = ''tins''; From 0866ec1aa7679d2683469f301d5e6ccbcddd39f2 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 09:52:27 -0400 Subject: [PATCH 028/167] Add the nix-build `result' symlink and cpan files to gitignore Signed-off-by: Shea Levy --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 4bcac5d261e1..b2d5a9aa5bd7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ ,* .*.swp .*.swo +cpan-info +cpan_tmp/ +result From f39310b525cc48f05eb6f025ec565a4722ed4f57 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 09:59:18 -0400 Subject: [PATCH 029/167] Add right_aws gem Signed-off-by: Shea Levy --- .../interpreters/ruby/generated.nix | 71 ++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/ruby/generated.nix b/pkgs/development/interpreters/ruby/generated.nix index 13ee31bf44f3..d4bb7fa4f2d1 100644 --- a/pkgs/development/interpreters/ruby/generated.nix +++ b/pkgs/development/interpreters/ruby/generated.nix @@ -71,6 +71,8 @@ g: # Get dependencies from patched gems rdiscount = g.rdiscount_2_0_7_1; rdoc = g.rdoc_3_12_2; remote_syslog = g.remote_syslog_1_6_13; + right_aws = g.right_aws_3_0_5; + right_http_connection = g.right_http_connection_1_3_0; rjb = g.rjb_1_4_6; rspec = g.rspec_2_11_0; rspec_core = g.rspec_core_2_11_1; @@ -98,7 +100,7 @@ g: # Get dependencies from patched gems xml_simple = g.xml_simple_1_1_1; yajl_ruby = g.yajl_ruby_1_1_0; }; - gem_nix_args = [ ''autotest-rails'' ''aws-sdk'' ''bitbucket-backup'' ''buildr'' ''fakes3'' ''foreman'' ''jsduck'' ''nix'' ''papertrail-cli'' ''rails'' ''rake'' ''rb-fsevent'' ''remote_syslog'' ''sass'' ''selenium-webdriver'' ''sinatra-1.3.2'' ''thin'' ''uuid'' ]; + gem_nix_args = [ ''autotest-rails'' ''aws-sdk'' ''bitbucket-backup'' ''buildr'' ''fakes3'' ''foreman'' ''jsduck'' ''nix'' ''papertrail-cli'' ''rails'' ''rake'' ''rb-fsevent'' ''remote_syslog'' ''right_aws'' ''sass'' ''selenium-webdriver'' ''sinatra-1.3.2'' ''thin'' ''uuid'' ]; gems = { ZenTest_4_9_0 = { basename = ''ZenTest''; @@ -1106,6 +1108,73 @@ See RDoc for a description of RDoc's markup and basic use.''; requiredGems = [ g.servolux_0_10_0 g.file_tail_1_0_12 g.eventmachine_1_0_3 g.eventmachine_tail_0_6_4 g.syslog_protocol_0_9_2 g.em_resolv_replace_1_1_3 ]; sha256 = ''0q35j02k2l3fw3fdzq0i3rd6chsqr982gj13f3m3lsxm7kms03nw''; }; + right_aws_3_0_5 = { + basename = ''right_aws''; + meta = { + description = ''The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.''; + longDescription = ''== DESCRIPTION: + +The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront. +These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon. +The RightScale AWS gems comprise: + +- RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud) and the + associated EBS (Elastic Block Store) +- RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service) +- RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service) (API version 2007-05-01) +- RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service) (API version 2008-01-01) +- RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB) +- RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service + +== FEATURES: + +- Full programmmatic access to EC2, EBS, S3, SQS, SDB, and CloudFront. +- Complete error handling: all operations check for errors and report complete + error information by raising an AwsError. +- Persistent HTTP connections with robust network-level retry layer using + RightHttpConnection). This includes socket timeouts and retries. +- Robust HTTP-level retry layer. Certain (user-adjustable) HTTP errors returned + by Amazon's services are classified as temporary errors. + These errors are automaticallly retried using exponentially increasing intervals. + The number of retries is user-configurable. +- Fast REXML-based parsing of responses (as fast as a pure Ruby solution allows). +- Uses libxml (if available) for faster response parsing. +- Support for large S3 list operations. Buckets and key subfolders containing + many (> 1000) keys are listed in entirety. Operations based on list (like + bucket clear) work on arbitrary numbers of keys. +- Support for streaming GETs from S3, and streaming PUTs to S3 if the data source is a file. +- Support for single-threaded usage, multithreaded usage, as well as usage with multiple + AWS accounts. +- Support for both first- and second-generation SQS (API versions 2007-05-01 + and 2008-01-01). These versions of SQS are not compatible. +- Support for signature versions 0 and 1 on SQS, SDB, and EC2. +- Interoperability with any cloud running Eucalyptus (http://eucalyptus.cs.ucsb.edu) +- Test suite (requires AWS account to do "live" testing). +''; + }; + name = ''right_aws-3.0.5''; + requiredGems = [ g.right_http_connection_1_3_0 ]; + sha256 = ''0pxdmxmqiidy3dpxsp4l0b1l6nq9b1sh4p1gkzalqm4l24646h4k''; + }; + right_http_connection_1_3_0 = { + basename = ''right_http_connection''; + meta = { + description = ''RightScale's robust HTTP/S connection module''; + homepage = ''http://rightscale.rubyforge.org/''; + longDescription = ''Rightscale::HttpConnection is a robust HTTP/S library. It implements a retry +algorithm for low-level network errors. + +== FEATURES: + +- provides put/get streaming +- does configurable retries on connect and read timeouts, DNS failures, etc. +- HTTPS certificate checking +''; + }; + name = ''right_http_connection-1.3.0''; + requiredGems = [ ]; + sha256 = ''0900zy2ya57vhxdkdm2gj7xmvzj4gwm5l7ad0lh68ka3vxhdi7ap''; + }; rjb_1_4_2 = { basename = ''rjb''; meta = { From cfbdb33197b83c49f87d68a4a9b848afe213bc75 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 10:59:40 -0400 Subject: [PATCH 030/167] Add a latest linuxPackages for living on the edge Theoretically this could be automatically detected by finding all packages named 'linux' and choosing the latest, but that's overkill. Just update it when a new kernel is added. Signed-off-by: Shea Levy --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c75a98a6f24d..adeea8c13381 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6030,6 +6030,8 @@ let linuxPackages_3_6_rpi = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_6_rpi linuxPackages_3_6_rpi); linuxPackages_3_7 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_7 linuxPackages_3_7); linuxPackages_3_8 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_8 linuxPackages_3_8); + # Update this when adding a new version! + linuxPackages_latest = pkgs.linuxPackages_3_8; # The current default kernel / kernel modules. linux = linuxPackages.kernel; From 65057975c82608b22aeb8701a151a6b7adf332ef Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Thu, 28 Mar 2013 17:19:04 +0100 Subject: [PATCH 031/167] xbmc: bump to 12.1 --- pkgs/applications/video/xbmc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/xbmc/default.nix b/pkgs/applications/video/xbmc/default.nix index 0588f580cc25..0a09fe30ace0 100644 --- a/pkgs/applications/video/xbmc/default.nix +++ b/pkgs/applications/video/xbmc/default.nix @@ -30,11 +30,11 @@ assert sambaSupport -> samba != null; assert vdpauSupport -> libvdpau != null && ffmpeg.vdpauSupport; stdenv.mkDerivation rec { - name = "xbmc-12.0"; + name = "xbmc-12.1"; src = fetchurl { url = "http://mirrors.xbmc.org/releases/source/${name}.tar.gz"; - sha256 = "0vy1a38gfbp9vhbjvwqm11sd76gl3s9q0h7gwpsks85m2k88q0ak"; + sha256 = "1hqyq1vl34sywcj8zgx7kdpf8ljzj969l5w6yy4314c431pg7qr9"; }; buildInputs = [ From 4b1042cf02fe4df4c7bc2b97f372d51c3247b209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 27 Mar 2013 20:18:45 +0100 Subject: [PATCH 032/167] pitz: new package pitz is a distributed bug tracker, inspired by ditz. Homepage: http://pitz.tplus1.com/ pitz has a command line interface, pitz-, and a webapp, pitz-webapp. TODO: pitz has a pitz-shell utility that depends on ipython, but when I enabled it it raised an exception. I think it depends on an old IPython version: from IPython.Shell import IPShellEmbed ImportError: No module named Shell A broken pitz-shell doesn't affect the rest of the command line interface nor the webapp, so it is not critical to have it working. There are not many distributed bug trackers out there, so I hope that adding pitz to nixpkgs may inspire people to support pitz (or similar software). --- pkgs/applications/misc/pitz/default.nix | 31 +++++++++++++++++++++++++ pkgs/top-level/python-packages.nix | 23 ++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 pkgs/applications/misc/pitz/default.nix diff --git a/pkgs/applications/misc/pitz/default.nix b/pkgs/applications/misc/pitz/default.nix new file mode 100644 index 000000000000..495583d95d4b --- /dev/null +++ b/pkgs/applications/misc/pitz/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, buildPythonPackage, tempita, jinja2, pyyaml, clepy, mock +, nose, decorator, docutils }: + +# TODO: pitz has a pitz-shell utility that depends on ipython, but it just +# errors out and dies (it probably depends on an old ipython version): +# +# from IPython.Shell import IPShellEmbed +# ImportError: No module named Shell +# +# pitz-shell is not the primary interface, so it is not critical to have it +# working. Concider fixing pitz upstream. + +buildPythonPackage rec { + name = "pitz-1.2.4"; + namePrefix = ""; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/pitz/${name}.tar.gz"; + sha256 = "1k7f3h4acllzqy3mjqnjd4w5jskp03s79b7dx3c85vlmd7824smr"; + }; + + # propagatedBuildInputs is needed for pitz to find its dependencies at + # runtime. If we use buildInputs it would just build, not run. + propagatedBuildInputs = [ tempita jinja2 pyyaml clepy mock nose decorator docutils ]; + + meta = { + description = "Distributed bugtracker"; + license = stdenv.lib.licenses.bsd3; + homepage = http://pitz.tplus1.com/; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9c816188b715..cd4ae54f4e0f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -58,6 +58,11 @@ pythonPackages = python.modules // rec { inherit python buildPythonPackage; }; + pitz = import ../applications/misc/pitz { + inherit (pkgs) stdenv fetchurl; + inherit buildPythonPackage tempita jinja2 pyyaml clepy mock nose decorator docutils; + }; + pycairo = import ../development/python-modules/pycairo { inherit (pkgs) stdenv fetchurl pkgconfig cairo x11; inherit python; @@ -534,6 +539,24 @@ pythonPackages = python.modules // rec { }; }); + + clepy = buildPythonPackage rec { + name = "clepy-0.3.20"; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/c/clepy/${name}.tar.gz"; + sha256 = "16vibfxms5z4ld8gbkra6dkhqm2cc3jnn0fwp7mw70nlwxnmm51c"; + }; + + buildInputs = [ mock nose decorator ]; + + meta = { + homepage = http://code.google.com/p/clepy/; + description = "Utilities created by the Cleveland Python users group"; + }; + }; + + clientform = buildPythonPackage (rec { name = "clientform-0.2.10"; From c98af108d00d0adbb2ff9549df54149fefd71f5e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 28 Mar 2013 18:04:49 +0100 Subject: [PATCH 033/167] libvirt: Update to 1.0.3 --- pkgs/development/libraries/libvirt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index ce714fd59ffc..6a6b693cbbe0 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -3,14 +3,14 @@ , libtasn1, ebtables, libgcrypt, yajl }: -let version = "1.0.2"; in +let version = "1.0.3"; in stdenv.mkDerivation { name = "libvirt-${version}"; src = fetchurl { url = "http://libvirt.org/sources/libvirt-${version}.tar.gz"; - sha256 = "0yf104r1377pg0kmx6sshmh8v5z0bdvv6266y5gbcn46yx92g34v"; + sha256 = "0mr727n0ygxk6y69srg3ahmjd7wligamw683x2snmz6wgk6llkzn"; }; buildInputs = @@ -30,7 +30,7 @@ stdenv.mkDerivation { postInstall = '' - substituteInPlace $out/etc/rc.d/init.d/libvirt-guests \ + substituteInPlace $out/libexec/libvirt-guests.sh \ --replace "$out/bin" "${gettext}/bin" ''; From 3abc3f4a6899e5cbb013a18e81ed9360910d0332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 28 Mar 2013 18:12:27 +0100 Subject: [PATCH 034/167] Updating mupen64plus, and adding a GUI for it. I can't say the GUI works very well... it doesn't find the core properly, but I couldn't find why. --- pkgs/misc/emulators/mupen64plus/default.nix | 22 ++++----------- pkgs/misc/emulators/wxmupen64plus/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 35 insertions(+), 17 deletions(-) create mode 100644 pkgs/misc/emulators/wxmupen64plus/default.nix diff --git a/pkgs/misc/emulators/mupen64plus/default.nix b/pkgs/misc/emulators/mupen64plus/default.nix index d67121fe430a..0f59da272ff9 100644 --- a/pkgs/misc/emulators/mupen64plus/default.nix +++ b/pkgs/misc/emulators/mupen64plus/default.nix @@ -1,28 +1,16 @@ {stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}: stdenv.mkDerivation { - name = "mupen64plus-1.5"; + name = "mupen64plus-1.99.5"; src = fetchurl { - url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz; - sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq"; + url = https://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-1.99.5.tar.gz; + sha1 = "ca80ae446c9591e272e3ec93f0a2a8b01cfcd34e"; }; buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ]; - preConfigure = '' - # Some C++ incompatibility fixes - sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Main.cpp - sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Combine.cpp - - # Fix some hardcoded paths - sed -i -e "s|/usr/local|$out|g" main/main.c - - # Remove PATH environment variable from install script - sed -i -e "s|export PATH=|#export PATH=|" ./install.sh - ''; - - buildPhase = "make all"; - installPhase = "PREFIX=$out make install"; + buildPhase = "./m64p_build.sh PREFIX=$out COREDIR=$out/lib/ PLUGINDIR=$out/lib/mupen64plus/ SHAREDIR=$out/share/mupen64plus/"; + installPhase = "./m64p_install.sh PREFIX=$out"; meta = { description = "A Nintendo 64 Emulator"; diff --git a/pkgs/misc/emulators/wxmupen64plus/default.nix b/pkgs/misc/emulators/wxmupen64plus/default.nix new file mode 100644 index 000000000000..a85d0fb389e2 --- /dev/null +++ b/pkgs/misc/emulators/wxmupen64plus/default.nix @@ -0,0 +1,28 @@ +{stdenv, fetchurl, python, wxGTK29, mupen64plus, SDL, libX11, mesa}: + +stdenv.mkDerivation { + name = "wxmupen64plus-0.3"; + src = fetchurl { + url = "https://bitbucket.org/auria/wxmupen64plus/get/0.3.tar.bz2"; + sha256 = "1mnxi4k011dd300k35li2p6x4wccwi6im21qz8dkznnz397ps67c"; + }; + + buildInputs = [ python wxGTK29 SDL libX11 mesa ]; + + configurePhase = '' + tar xf ${mupen64plus.src} + APIDIR=$(eval echo `pwd`/mupen64plus*/source/mupen64plus-core/src/api) + export CXXFLAGS="-I${libX11}/include/X11 -DLIBDIR=\\\"${mupen64plus}/lib/\\\"" + export LDFLAGS="-lwx_gtk2u_adv-2.9" + python waf configure --mupenapi=$APIDIR --wxconfig=`type -P wx-config` --prefix=$out + ''; + + buildPhase = "python waf"; + installPhase = "python waf install"; + + meta = { + description = "GUI for the Mupen64Plus 2.0 emulator"; + license = "GPLv2+"; + homepage = https://bitbucket.org/auria/wxmupen64plus/wiki/Home; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index adeea8c13381..15b1aeb4394e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8876,6 +8876,8 @@ let mupen64plus = callPackage ../misc/emulators/mupen64plus { }; + wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; + nix = nixStable; nixStable = callPackage ../tools/package-management/nix { From 5f677039c77a4d9c6fcbe9b99980eab34fae65f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 28 Mar 2013 18:16:40 +0100 Subject: [PATCH 035/167] Adding back the 1.5 expression of mupen64plus It has a GUI, for example. --- pkgs/misc/emulators/mupen64plus/1.5.nix | 33 +++++++++++++++++++++ pkgs/misc/emulators/mupen64plus/default.nix | 22 ++++++++++---- pkgs/top-level/all-packages.nix | 4 ++- 3 files changed, 53 insertions(+), 6 deletions(-) create mode 100644 pkgs/misc/emulators/mupen64plus/1.5.nix diff --git a/pkgs/misc/emulators/mupen64plus/1.5.nix b/pkgs/misc/emulators/mupen64plus/1.5.nix new file mode 100644 index 000000000000..d67121fe430a --- /dev/null +++ b/pkgs/misc/emulators/mupen64plus/1.5.nix @@ -0,0 +1,33 @@ +{stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}: + +stdenv.mkDerivation { + name = "mupen64plus-1.5"; + src = fetchurl { + url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz; + sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq"; + }; + + buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ]; + + preConfigure = '' + # Some C++ incompatibility fixes + sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Main.cpp + sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Combine.cpp + + # Fix some hardcoded paths + sed -i -e "s|/usr/local|$out|g" main/main.c + + # Remove PATH environment variable from install script + sed -i -e "s|export PATH=|#export PATH=|" ./install.sh + ''; + + buildPhase = "make all"; + installPhase = "PREFIX=$out make install"; + + meta = { + description = "A Nintendo 64 Emulator"; + license = "GPLv2+"; + homepage = http://code.google.com/p/mupen64plus; + maintainers = [ stdenv.lib.maintainers.sander ]; + }; +} diff --git a/pkgs/misc/emulators/mupen64plus/default.nix b/pkgs/misc/emulators/mupen64plus/default.nix index 0f59da272ff9..d67121fe430a 100644 --- a/pkgs/misc/emulators/mupen64plus/default.nix +++ b/pkgs/misc/emulators/mupen64plus/default.nix @@ -1,16 +1,28 @@ {stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}: stdenv.mkDerivation { - name = "mupen64plus-1.99.5"; + name = "mupen64plus-1.5"; src = fetchurl { - url = https://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-1.99.5.tar.gz; - sha1 = "ca80ae446c9591e272e3ec93f0a2a8b01cfcd34e"; + url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz; + sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq"; }; buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ]; - buildPhase = "./m64p_build.sh PREFIX=$out COREDIR=$out/lib/ PLUGINDIR=$out/lib/mupen64plus/ SHAREDIR=$out/share/mupen64plus/"; - installPhase = "./m64p_install.sh PREFIX=$out"; + preConfigure = '' + # Some C++ incompatibility fixes + sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Main.cpp + sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Combine.cpp + + # Fix some hardcoded paths + sed -i -e "s|/usr/local|$out|g" main/main.c + + # Remove PATH environment variable from install script + sed -i -e "s|export PATH=|#export PATH=|" ./install.sh + ''; + + buildPhase = "make all"; + installPhase = "PREFIX=$out make install"; meta = { description = "A Nintendo 64 Emulator"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 15b1aeb4394e..bfb1d8a4e827 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8876,7 +8876,7 @@ let mupen64plus = callPackage ../misc/emulators/mupen64plus { }; - wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; + mupen64plus1_5 = callPackage ../misc/emulators/mupen64plus/1.5.nix { }; nix = nixStable; @@ -9065,6 +9065,8 @@ let inherit (gnome2) zenity; }; + wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; + x2x = callPackage ../tools/X11/x2x { }; xosd = callPackage ../misc/xosd { }; From e48bbe4c391f69d3b4fd4773a0aa2a5e42562c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 28 Mar 2013 18:34:36 +0100 Subject: [PATCH 036/167] wpa_supplicant: Making a remote patch local. upstream is down --- pkgs/os-specific/linux/wpa_supplicant/default.nix | 8 +------- pkgs/os-specific/linux/wpa_supplicant/libnl.patch | 13 +++++++++++++ 2 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 pkgs/os-specific/linux/wpa_supplicant/libnl.patch diff --git a/pkgs/os-specific/linux/wpa_supplicant/default.nix b/pkgs/os-specific/linux/wpa_supplicant/default.nix index b3d94e26396e..8f441303c255 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/default.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix @@ -38,13 +38,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; - patches = - [ (fetchurl { - url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/hostap_allow-linking-with-libnl-3.2.patch?h=packages/wpa_supplicant"; - name = "hostap_allow-linking-with-libnl-3.2.patch"; - sha256 = "0iwvjq0apc6mv1r03k5pnyjgda3q47yx36c4lqvv8i8q1vn7kbf2"; - }) - ]; + patches = [ ./libnl.patch ]; postInstall = '' mkdir -p $out/share/man/man5 $out/share/man/man8 diff --git a/pkgs/os-specific/linux/wpa_supplicant/libnl.patch b/pkgs/os-specific/linux/wpa_supplicant/libnl.patch new file mode 100644 index 000000000000..ede6dad721c5 --- /dev/null +++ b/pkgs/os-specific/linux/wpa_supplicant/libnl.patch @@ -0,0 +1,13 @@ +diff -up wpa_supplicant-1.0-rc2/src/drivers/drivers.mak.foo wpa_supplicant-1.0-rc2/src/drivers/drivers.mak +--- wpa_supplicant-1.0-rc2/src/drivers/drivers.mak.foo 2012-03-02 16:11:43.176448714 -0600 ++++ wpa_supplicant-1.0-rc2/src/drivers/drivers.mak 2012-03-02 16:12:29.759866341 -0600 +@@ -48,7 +48,7 @@ NEED_RFKILL=y + ifdef CONFIG_LIBNL32 + DRV_LIBS += -lnl-3 + DRV_LIBS += -lnl-genl-3 +- DRV_CFLAGS += -DCONFIG_LIBNL20 ++ DRV_CFLAGS += -DCONFIG_LIBNL20 `pkg-config --cflags libnl-3.0` + else + ifdef CONFIG_LIBNL_TINY + DRV_LIBS += -lnl-tiny + From 0ad1f787601d8861fe56f9b79976f52f8e073305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 22:57:05 +0100 Subject: [PATCH 037/167] Python3: fix the download URL --- pkgs/development/interpreters/python/3.3/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index 7baecad76c6b..d81033a59139 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { inherit majorVersion version; src = fetchurl { - url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2"; + url = "http://www.python.org/ftp/python/3.3.1/Python-${version}.tar.bz2"; sha256 = "1pnsbdzbd3750jcy32sv1760lv7am4x3f33jn1kmdmd82za279gv"; }; From 67ce79f5e42b3dbf5fe3ff6099403e81b3f851df Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 13:27:04 +0100 Subject: [PATCH 038/167] set platforms for i3wm --- pkgs/applications/window-managers/i3/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix index 4173660f542d..9f9aaa5d6653 100644 --- a/pkgs/applications/window-managers/i3/default.nix +++ b/pkgs/applications/window-managers/i3/default.nix @@ -25,6 +25,7 @@ stdenv.mkDerivation rec { homepage = "http://i3wm.org"; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; }; } From 4926ad90e7f917514bcd79a2d555721f00b72bec Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Fri, 29 Mar 2013 02:06:34 +0100 Subject: [PATCH 039/167] adding lprof --- pkgs/tools/graphics/lprof/default.nix | 46 +++++++++++++++++++++++ pkgs/tools/graphics/lprof/lcms-1.17.patch | 13 +++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 61 insertions(+) create mode 100644 pkgs/tools/graphics/lprof/default.nix create mode 100644 pkgs/tools/graphics/lprof/lcms-1.17.patch diff --git a/pkgs/tools/graphics/lprof/default.nix b/pkgs/tools/graphics/lprof/default.nix new file mode 100644 index 000000000000..31eaebc0fa1c --- /dev/null +++ b/pkgs/tools/graphics/lprof/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchurl, scons, qt3, lcms1, libtiff, vigra }: + +/* how to calibrate your monitor: + Eg see https://wiki.archlinux.org/index.php/ICC_Profiles#Loading_ICC_Profiles +*/ +stdenv.mkDerivation { + name = "lprof-1.11.4.1"; + buildInputs = [ scons qt3 lcms1 libtiff vigra ]; + + preConfigure = '' + export QTDIR=${qt3} + export qt_directory=${qt3} + ''; + + src = fetchurl { + url = mirror://sourceforge/lprof/lprof/lprof-1.11.4/lprof-1.11.4.1.tar.gz; + sha256 = "0q8x24fm5yyvm151xrl3l03p7hvvciqnkbviprfnvlr0lyg9wsrn"; + }; + + # The sed commands disable header checks and add LDFLAGS NIX_CFLAGS_COMPILE + # to the gcc environment + buildPhase = '' + mkdir -p $out + export CXX=g++ + sed -i SConstruct \ + -e 's/def CheckForQt(context):/def CheckForQt(context):\n return 1/' \ + -e "s/not config.CheckHeader('lcms.h')/False/" \ + -e "s/not config.CheckHeader('tiff.h')/False/" \ + -e "s/not config.CheckCXXHeader('vigra\/impex.hxx')/False/" \ + \ + -e "s/^\( 'LDFLAGS'.*\)/\1\n,'NIX_CFLAGS_COMPILE' : os.environ['NIX_CFLAGS_COMPILE']/" \ + -e "s/^\( 'LDFLAGS'.*\)/\1\n,'NIX_LDFLAGS' : os.environ['NIX_LDFLAGS']/" + + scons PREFIX=$out SYSLIBS=1 install + ''; + + installPhase = ":"; + + patches = [ ./lcms-1.17.patch ]; + + meta = { + description = "Little CMS ICC profile construction set"; + homepage = "http://sourceforge.net/projects/lprof"; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/tools/graphics/lprof/lcms-1.17.patch b/pkgs/tools/graphics/lprof/lcms-1.17.patch new file mode 100644 index 000000000000..a88471e143fd --- /dev/null +++ b/pkgs/tools/graphics/lprof/lcms-1.17.patch @@ -0,0 +1,13 @@ +--- a/src/liblprof/lcmsprf.h 2007-08-31 15:36:20.000000000 -0700 ++++ b/src/liblprof/lcmsprf.h 2007-08-31 15:37:39.000000000 -0700 +@@ -67,6 +67,9 @@ + #define mmax(a,b) ((a) > (b)?(a):(b)) + #endif + ++#if LCMS_VERSION > 116 ++typedef int BOOL; ++#endif + + /* Misc operations ------------------------------------------------------------------------ */ + + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bfb1d8a4e827..9cdb18f83ee5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -770,6 +770,8 @@ let libbsd = callPackage ../development/libraries/libbsd { }; + lprof = callPackage ../tools/graphics/lprof { }; + flvtool2 = callPackage ../tools/video/flvtool2 { }; fontforge = lowPrio (callPackage ../tools/misc/fontforge { }); From 67962402894538a7ae50ee70502461d1a3e9a8d4 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Fri, 29 Mar 2013 15:04:02 +0100 Subject: [PATCH 040/167] Add aws-sdk and deps (node library) --- pkgs/top-level/node-packages.nix | 126 +++++++++++++++++++++++++++++-- 1 file changed, 121 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/node-packages.nix b/pkgs/top-level/node-packages.nix index 48a21d04bcf0..06f7ad321bbc 100644 --- a/pkgs/top-level/node-packages.nix +++ b/pkgs/top-level/node-packages.nix @@ -43,7 +43,7 @@ let self = { amdefine = "amdefine-0.0.4"; "amdefine->=0.0.4" = self."amdefine-0.0.4"; - + "amdefine-0.0.4" = self.buildNodePackage rec { name = "amdefine-0.0.4"; src = fetchurl { @@ -94,6 +94,20 @@ let self = { ]; }; + "aws-sdk" = self."aws-sdk-*"; + + "aws-sdk-*" = self.buildNodePackage rec { + name = "aws-sdk-0.9.7-pre.8"; + src = self.patchLatest { + url = "http://registry.npmjs.org/aws-sdk/-/${name}.tgz"; + sha256 = "d3854275981fff76153f79c62745d8d6c59018861729766908c920fff95ea422"; + }; + deps = [ + self."xml2js-0.2.4" + self."xmlbuilder" + ]; + }; + "backbone" = self."backbone-0.9.2"; "backbone-0.9.2" = self.buildNodePackage rec { @@ -270,6 +284,17 @@ let self = { "commander" = self."commander-~0.6.1"; + "commander-0.5.1" = self.buildNodePackage rec { + name = "commander-0.5.1"; + src = fetchurl { + url = "http://registry.npmjs.org/commander/-/${name}.tgz"; + sha256 = "91042851d0731b28a5e7c342e5cbce7723a7243d31ae378fa86c45ca9493a924"; + }; + deps = [ + + ]; + }; + "commander-~0.6.1" = self.buildNodePackage rec { name = "commander-0.6.1"; src = fetchurl { @@ -569,6 +594,47 @@ let self = { ]; }; + "htdigest" = self."htdigest-1.0.7"; + + "htdigest-1.0.7" = self.buildNodePackage rec { + name = "htdigest-1.0.7"; + src = fetchurl { + url = "http://registry.npmjs.org/htdigest/-/${name}.tgz"; + sha256 = "10fb047addf1c4f1089a26389066d5ff8f5ffa1ccce272a701bb4c2a30d90c58"; + }; + deps = [ + self."commander-0.5.1" + ]; + }; + + "htpasswd" = self."htpasswd-1.1.0"; + + "htpasswd-1.1.0" = self.buildNodePackage rec { + name = "htpasswd-1.1.0"; + src = fetchurl { + url = "http://registry.npmjs.org/htpasswd/-/${name}.tgz"; + sha256 = "cee9c0a525e717e3565ba6ffea8a64c480bc8a9e7800cb9bfc385d1a8e713ec9"; + }; + deps = [ + self."commander-0.5.1" + ]; + }; + + "http-auth" = self."http-auth-*"; + + "http-auth-*" = self.buildNodePackage rec { + name = "http-auth-1.2.7"; + src = fetchurl { + url = "http://registry.npmjs.org/http-auth/-/${name}.tgz"; + sha256 = "874dbb5907d03602f31eae959a0927a3112da8e868231d9a2119bb50d2fe63d2"; + }; + deps = [ + self."node-uuid-1.2.0" + self."htpasswd-1.1.0" + self."htdigest-1.0.7" + ]; + }; + "http-signature" = self."http-signature-0.9.9"; "http-signature-0.9.9" = self.buildNodePackage rec { @@ -805,6 +871,17 @@ let self = { "node-uuid" = self."node-uuid-1.3.3"; + "node-uuid-1.2.0" = self.buildNodePackage rec { + name = "node-uuid-1.2.0"; + src = fetchurl { + url = "http://registry.npmjs.org/node-uuid/-/${name}.tgz"; + sha256 = "96d3ce178ea0825d27a855630de74243a577dc988512512eea572829b208a3d2"; + }; + deps = [ + + ]; + }; + "node-uuid-1.3.3" = self.buildNodePackage rec { name = "node-uuid-1.3.3"; src = fetchurl { @@ -897,7 +974,7 @@ let self = { }; "optparse" = self."optparse-1.0.3"; - + "optparse-1.0.3" = self.buildNodePackage rec { name = "optparse-1.0.3"; src = fetchurl { @@ -905,7 +982,7 @@ let self = { sha256 = "1cg99i4rq8azxikzqz0ykw4q971azbj49d3m7slj041yscb6m883"; }; deps = [ - + ]; }; @@ -1115,6 +1192,19 @@ let self = { ]; }; + "sax" = self."sax->=0.4.2"; + + "sax->=0.4.2" = self.buildNodePackage rec { + name = "sax-0.5.2"; + src = fetchurl { + url = "http://registry.npmjs.org/sax/-/${name}.tgz"; + sha256 = "6bb7cd44e9dfea598997d4ba9d3279dafe75bed7b45904561ca9eb4d85cfd953"; + }; + deps = [ + + ]; + }; + "semver" = self."semver-1"; "semver-1" = self."semver-1.0.14"; @@ -1261,9 +1351,9 @@ let self = { self."requirejs-==0.26.0" ]; }; - + "swig" = self."swig-0.13.2"; - + "swig-0.13.2" = self.buildNodePackage rec { name = "swig-0.13.2"; src = fetchurl { @@ -1448,6 +1538,32 @@ let self = { ]; }; + "xml2js" = self."xml2js-0.2.4"; + + "xml2js-0.2.4" = self.buildNodePackage rec { + name = "xml2js-0.2.4"; + src = fetchurl { + url = "http://registry.npmjs.org/xml2js/-/${name}.tgz"; + sha256 = "8daebb075fc7c564d84221a0cef7825ac824db8e312f873daee59a6adf38da28"; + }; + deps = [ + self."sax->=0.4.2" + ]; + }; + + "xmlbuilder" = self."xmlbuilder-*"; + + "xmlbuilder-*" = self.buildNodePackage rec { + name = "xmlbuilder-0.4.2"; + src = fetchurl { + url = "http://registry.npmjs.org/xmlbuilder/-/${name}.tgz"; + sha256 = "3137e5bf9db1f114767f8ba56be753f2a9f512e38a2df64d7677ae3c9318a0fe"; + }; + deps = [ + + ]; + }; + "xmlhttprequest" = self."xmlhttprequest-1.2.2"; "xmlhttprequest-1.2.2" = self.buildNodePackage rec { From 2fa4e36946d5013663c01f8652be7bfc22efe777 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Fri, 29 Mar 2013 15:04:59 +0100 Subject: [PATCH 041/167] Add weighttp 0.3 --- pkgs/tools/networking/weighttp/default.nix | 15 +++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 pkgs/tools/networking/weighttp/default.nix diff --git a/pkgs/tools/networking/weighttp/default.nix b/pkgs/tools/networking/weighttp/default.nix new file mode 100644 index 000000000000..3bf23275a180 --- /dev/null +++ b/pkgs/tools/networking/weighttp/default.nix @@ -0,0 +1,15 @@ +{ stdenv, fetchurl, python, libev}: +stdenv.mkDerivation { + name = "weighttp-0.3"; + src = fetchurl { + url = http://cgit.lighttpd.net/weighttp.git/snapshot/weighttp-0.3.tar.gz; + sha256 = "0gl83vnip3nj7fdgbwqkmrx7kxp51sri9jfiwd04q9iz8f9bsmz5"; + }; + + buildInputs = [ python libev ]; + installPhase = '' + python waf configure --prefix=$out + python waf build + python waf install + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bfb1d8a4e827..f671d52e4182 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1806,6 +1806,8 @@ let libxml2 geoip; }; + weighttp = callPackage ../tools/networking/weighttp { }; + wget = callPackage ../tools/networking/wget { inherit (perlPackages) LWP; }; From 255f402bdd96499f2c40390da482cda897f89858 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Tue, 26 Mar 2013 11:42:18 +0100 Subject: [PATCH 042/167] lightdm: Add lightdm and lightdm-gtk-greeter --- .../lightdm-gtk-greeter/default.nix | 23 +++ .../lightdm-gtk-greeter.patch | 13 ++ .../display-managers/lightdm/default.nix | 25 +++ .../display-managers/lightdm/lightdm.patch | 193 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 + 5 files changed, 258 insertions(+) create mode 100644 pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix create mode 100644 pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch create mode 100644 pkgs/applications/display-managers/lightdm/default.nix create mode 100644 pkgs/applications/display-managers/lightdm/lightdm.patch diff --git a/pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix b/pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix new file mode 100644 index 000000000000..501826b82df2 --- /dev/null +++ b/pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, lightdm, pkgconfig, gtk3, intltool }: + +stdenv.mkDerivation { + name = "lightdm-gtk-greeter"; + + src = fetchurl { + url = "https://launchpad.net/lightdm-gtk-greeter/1.6/1.5.1/+download/lightdm-gtk-greeter-1.5.1.tar.gz"; + sha256 = "ecce7e917a79fa8f2126c3fafb6337f81f2198892159a4ef695016afecd2d621"; + }; + + buildInputs = [ pkgconfig gtk3 lightdm intltool ]; + + patches = + [ ./lightdm-gtk-greeter.patch + ]; + + patchFlags = "-p0"; + + postInstall = '' + substituteInPlace "$out/share/xgreeters/lightdm-gtk-greeter.desktop" \ + --replace "Exec=lightdm-gtk-greeter" "Exec=$out/sbin/lightdm-gtk-greeter" + ''; +} diff --git a/pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch b/pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch new file mode 100644 index 000000000000..5ae5603b4dd6 --- /dev/null +++ b/pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch @@ -0,0 +1,13 @@ +=== modified file 'src/lightdm-gtk-greeter.c' +--- src/lightdm-gtk-greeter.c 2013-02-09 23:20:39 +0000 ++++ src/lightdm-gtk-greeter.c 2013-03-29 12:21:34 +0000 +@@ -1273,7 +1273,7 @@ + gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (session_combo), renderer, TRUE); + gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (session_combo), renderer, "text", 0); + model = gtk_combo_box_get_model (session_combo); +- items = lightdm_get_sessions (); ++ items = lightdm_get_sessions (greeter); + for (item = items; item; item = item->next) + { + LightDMSession *session = item->data; + diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix new file mode 100644 index 000000000000..ce1f4400b271 --- /dev/null +++ b/pkgs/applications/display-managers/lightdm/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl, pam, pkgconfig, libxcb, glib, libXdmcp, itstool, libxml2, intltool, x11, libxklavier, libgcrypt, makeWrapper }: + +stdenv.mkDerivation { + name = "lightdm-1.5.1"; + + src = fetchurl { + url = https://launchpad.net/lightdm/1.6/1.5.1/+download/lightdm-1.5.1.tar.xz; + sha256 = "645db2d763cc514d6aecb1838f4a9c33c3dcf0c94567a7ef36c6b23d8aa56c86"; + }; + + buildInputs = [ pkgconfig pam libxcb glib libXdmcp itstool libxml2 intltool libxklavier libgcrypt makeWrapper ]; + + configureFlags = [ "--enable-liblightdm-gobject" ]; + + patches = + [ ./lightdm.patch + ]; + + patchFlags = "-p0"; + + meta = { + homepage = http://launchpad.net/lightdm; + platforms = stdenv.lib.platforms.linux; + }; +} \ No newline at end of file diff --git a/pkgs/applications/display-managers/lightdm/lightdm.patch b/pkgs/applications/display-managers/lightdm/lightdm.patch new file mode 100644 index 000000000000..a6e53bafcc79 --- /dev/null +++ b/pkgs/applications/display-managers/lightdm/lightdm.patch @@ -0,0 +1,193 @@ +=== modified file 'liblightdm-gobject/greeter.c' +--- liblightdm-gobject/greeter.c 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/greeter.c 2013-03-29 14:15:58 +0000 +@@ -567,6 +567,21 @@ + } + + /** ++ * lightdm_greeter_get_config_path ++ * @greeter: A #LightDMGreeter ++ * ++ * Get the config path to LightDM. ++ * ++ * Return value: The path to the current LightDM configuration file. ++ **/ ++const gchar * ++lightdm_greeter_get_config_path (LightDMGreeter *greeter) ++{ ++ g_return_val_if_fail (LIGHTDM_IS_GREETER (greeter), NULL); ++ return lightdm_greeter_get_hint (greeter, "config-path"); ++} ++ ++/** + * lightdm_greeter_get_hide_users_hint: + * @greeter: A #LightDMGreeter + * + +=== modified file 'liblightdm-gobject/lightdm/greeter.h' +--- liblightdm-gobject/lightdm/greeter.h 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/lightdm/greeter.h 2013-03-29 11:56:11 +0000 +@@ -93,6 +93,8 @@ + + const gchar *lightdm_greeter_get_autologin_user_hint (LightDMGreeter *greeter); + ++const gchar *lightdm_greeter_get_config_path (LightDMGreeter *greeter); ++ + gboolean lightdm_greeter_get_autologin_guest_hint (LightDMGreeter *greeter); + + gint lightdm_greeter_get_autologin_timeout_hint (LightDMGreeter *greeter); + +=== modified file 'liblightdm-gobject/lightdm/session.h' +--- liblightdm-gobject/lightdm/session.h 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/lightdm/session.h 2013-03-29 11:59:16 +0000 +@@ -12,6 +12,7 @@ + #define _LIGHTDM_SESSION_H_ + + #include ++#include "greeter.h" + + G_BEGIN_DECLS + +@@ -42,9 +43,9 @@ + + GType lightdm_session_get_type (void); + +-GList *lightdm_get_sessions (void); ++GList *lightdm_get_sessions (LightDMGreeter *greeter); + +-GList *lightdm_get_remote_sessions (void); ++GList *lightdm_get_remote_sessions (LightDMGreeter *greeter); + + const gchar *lightdm_session_get_key (LightDMSession *session); + + +=== modified file 'liblightdm-gobject/session.c' +--- liblightdm-gobject/session.c 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/session.c 2013-03-29 14:16:48 +0000 +@@ -11,6 +11,7 @@ + #include + #include + ++#include "lightdm/greeter.h" + #include "lightdm/session.h" + + enum { +@@ -167,7 +168,7 @@ + } + + static void +-update_sessions (void) ++update_sessions (LightDMGreeter *greeter) + { + GKeyFile *config_key_file = NULL; + gchar *config_path = NULL; +@@ -183,8 +184,8 @@ + remote_sessions_dir = g_strdup (REMOTE_SESSIONS_DIR); + + /* Use session directory from configuration */ +- /* FIXME: This should be sent in the greeter connection */ +- config_path = g_build_filename (CONFIG_DIR, "lightdm.conf", NULL); ++ config_path = g_strdup (lightdm_greeter_get_config_path (greeter)); ++ + config_key_file = g_key_file_new (); + result = g_key_file_load_from_file (config_key_file, config_path, G_KEY_FILE_NONE, &error); + if (error) +@@ -228,9 +229,9 @@ + * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession + **/ + GList * +-lightdm_get_sessions (void) ++lightdm_get_sessions (LightDMGreeter *greeter) + { +- update_sessions (); ++ update_sessions (greeter); + return local_sessions; + } + +@@ -242,9 +243,9 @@ + * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession + **/ + GList * +-lightdm_get_remote_sessions (void) ++lightdm_get_remote_sessions (LightDMGreeter *greeter) + { +- update_sessions (); ++ update_sessions (greeter); + return remote_sessions; + } + + +=== modified file 'src/display.c' +--- src/display.c 2013-03-26 22:22:49 +0000 ++++ src/display.c 2013-03-29 12:12:43 +0000 +@@ -62,6 +62,9 @@ + /* Program to run sessions through */ + gchar *session_wrapper; + ++ /* Path to the configuration file that lightdm is running under */ ++ gchar *config_path; ++ + /* TRUE if in a user session */ + gboolean in_user_session; + +@@ -213,6 +216,14 @@ + } + + void ++display_set_config_path (Display *display, const gchar *config_path) ++{ ++ g_return_if_fail (display != NULL); ++ g_free (display->priv->config_path); ++ display->priv->config_path = g_strdup (config_path); ++} ++ ++void + display_set_show_remote_login_hint (Display *display, gboolean show_remote_login) + { + g_return_if_fail (display != NULL); +@@ -436,6 +447,7 @@ + greeter_set_hint (display->priv->greeter, "show-remote-login", display->priv->greeter_show_remote_login ? "true" : "false"); + if (display->priv->greeter_is_lock) + greeter_set_hint (display->priv->greeter, "lock-screen", "true"); ++ greeter_set_hint (display->priv->greeter, "config-path", display->priv->config_path); + + /* Run greeter as unprivileged user */ + if (getuid () != 0) + +=== modified file 'src/display.h' +--- src/display.h 2013-03-26 22:22:49 +0000 ++++ src/display.h 2013-03-29 12:12:37 +0000 +@@ -80,6 +80,8 @@ + + void display_set_user_session (Display *display, SessionType type, const gchar *session_name); + ++void display_set_config_path (Display *display, const gchar *config_path); ++ + gboolean display_start (Display *display); + + gboolean display_get_is_ready (Display *display); + +=== modified file 'src/lightdm.c' +--- src/lightdm.c 2013-03-07 21:40:31 +0000 ++++ src/lightdm.c 2013-03-29 11:48:45 +0000 +@@ -1050,6 +1050,7 @@ + g_debug ("Starting Light Display Manager %s, UID=%i PID=%i", VERSION, getuid (), getpid ()); + + g_debug ("Loaded configuration from %s", config_path); ++ config_set_string (config_get_instance (), "LightDM", "config-path", config_path); + g_free (config_path); + + g_debug ("Using D-Bus name %s", LIGHTDM_BUS_NAME); + +=== modified file 'src/seat.c' +--- src/seat.c 2013-03-26 22:22:49 +0000 ++++ src/seat.c 2013-03-29 12:13:00 +0000 +@@ -536,6 +536,7 @@ + if (!session_name) + session_name = seat_get_string_property (seat, "user-session"); + display_set_user_session (display, SESSION_TYPE_LOCAL, session_name); ++ display_set_config_path (display, config_get_string (config_get_instance (), "LightDM", "config-path")); + + seat->priv->displays = g_list_append (seat->priv->displays, display); + g_signal_emit (seat, signals[DISPLAY_ADDED], 0, display); + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0d3e4cca9a24..e8059e4b5017 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7739,6 +7739,10 @@ let dropbox = callPackage ../applications/networking/dropbox { }; + lightdm = callPackage ../applications/display-managers/lightdm { }; + + lightdm_gtk_greeter = callPackage ../applications/display-managers/lightdm-gtk-greeter { }; + slim = callPackage ../applications/display-managers/slim { }; sndBase = builderDefsPackage (import ../applications/audio/snd) { From 6026c60388df4350bee39f129e9963b26619d6d6 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 16:43:38 +0100 Subject: [PATCH 043/167] spring: bump and fix build --- pkgs/games/spring/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index 3cb79e946311..ba45360ccb6d 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "spring-${version}"; - version = "0.91.0"; + version = "94.1"; src = fetchurl { - url = "mirror://sourceforge/springrts/spring_91.0_src.tar.lzma"; - sha256 = "0ycn9yxpbw58a8p3j3wf3r0x102k665l27bfp1vxq7kpwlk6314l"; + url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma"; + sha256 = "19myqwpz4mi4zdlcv8318dps0ymmw7qpawhq1rgk73ycmaiyaaka"; }; buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d7146872aa6b..05e57e5cbeec 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8305,7 +8305,7 @@ let # You still can override by passing more arguments. spaceOrbit = callPackage ../games/orbit { }; - spring = callPackage ../games/spring { boost = boost149;}; + spring = callPackage ../games/spring { }; springLobby = callPackage ../games/spring/springlobby.nix { }; From 02384dfc93a1891fedbf7984bc29a61147895e97 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:46:59 +0100 Subject: [PATCH 044/167] release-haskell.nix: adapt file to the new release-lib.nix --- pkgs/top-level/release-haskell.nix | 1165 ++++++++++++++-------------- 1 file changed, 581 insertions(+), 584 deletions(-) diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index bbc610d7c0c9..8ec797de672a 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -1,609 +1,606 @@ /* Essential Haskell packages that must build. */ -with (import ./release-lib.nix); +{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } }: -let +let supportedSystems = [ "x86_64-linux" ]; in - linux = ["x86_64-linux"]; +with import ./release-lib.nix { inherit supportedSystems; }; -in +mapTestOn { + gitAndTools.gitAnnex = supportedSystems; -mapTestOn (rec { - - gitAndTools.gitAnnex = linux; - - jhc = linux; + jhc = supportedSystems; haskellPackages_ghc742 = { - abstractPar = linux; - ACVector = linux; - aeson = linux; - AgdaExecutable = linux; - alex = linux; - alexMeta = linux; - alternativeIo = linux; - ansiTerminal = linux; - ansiWlPprint = linux; - asn1Data = linux; - AspectAG = linux; - async = linux; - attempt = linux; - attoparsecEnumerator = linux; - attoparsec = linux; - authenticate = linux; - base64Bytestring = linux; - baseUnicodeSymbols = linux; - benchpress = linux; - bimap = linux; - binaryShared = linux; - bitmap = linux; - bktrees = linux; - blazeBuilderEnumerator = linux; - blazeBuilder = linux; - blazeHtml = linux; - blazeTextual = linux; - bloomfilter = linux; - bmp = linux; - BNFC = linux; - BNFCMeta = linux; - Boolean = linux; - bytestringMmap = linux; - bytestringNums = linux; - bytestringTrie = linux; - cabal2Ghci = linux; - cabal2nix = linux; - cabalDev = linux; - cabalGhci = linux; - cabalInstall = linux; - cairo = linux; - caseInsensitive = linux; - cautiousFile = linux; - cereal = linux; - certificate = linux; - cgi = linux; - Chart = linux; - citeprocHs = linux; - clientsession = linux; - cmdargs = linux; - cmdlib = linux; - colorizeHaskell = linux; - colour = linux; - comonadsFd = linux; - conduit = linux; - ConfigFile = linux; - continuedFractions = linux; - converge = linux; - convertible = linux; - cookie = linux; - cpphs = linux; - cprngAes = linux; - criterion = linux; - cryptoApi = linux; - cryptocipher = linux; - cryptohash = linux; - Crypto = linux; - cssText = linux; - csv = linux; - darcs = linux; - dataAccessor = linux; - dataAccessorTemplate = linux; - dataDefault = linux; - dataenc = linux; - dataReify = linux; - datetime = linux; - DAV = linux; - dbus = linux; - derive = linux; - diagrams = linux; - Diff = linux; - digestiveFunctorsHeist = linux; - digestiveFunctorsSnap = linux; - digest = linux; - dimensional = linux; - dimensionalTf = linux; - directoryTree = linux; - distributedProcess = linux; - dlist = linux; - dns = linux; - doctest = linux; - dotgen = linux; - doubleConversion = linux; - Ebnf2ps = linux; - editDistance = linux; - editline = linux; - emailValidate = linux; - entropy = linux; - enumerator = linux; - epic = linux; - erf = linux; - failure = linux; - fclabels = linux; - feed = linux; - fgl = linux; - fileEmbed = linux; - filestore = linux; - fingertree = linux; - flexibleDefaults = linux; - funcmp = linux; - gamma = linux; - gdiff = linux; - ghcEvents = linux; - ghc = linux; - ghcMtl = linux; - ghcPaths = linux; - ghcSybUtils = linux; - githubBackup = linux; - github = linux; - gitit = linux; - glade = linux; - glib = linux; - Glob = linux; - gloss = linux; - GLUT = linux; - gnutls = linux; - graphviz = linux; - gtk = linux; - gtksourceview2 = linux; - hackageDb = linux; - haddock = linux; - hakyll = linux; - hamlet = linux; - happstackHamlet = linux; - happstackServer = linux; - happstackUtil = linux; - happy = linux; - hashable = linux; - hashedStorage = linux; - haskeline = linux; - haskellLexer = linux; - haskellPlatform = linux; - haskellSrcExts = linux; - haskellSrc = linux; - haskellSrcMeta = linux; - HaXml = linux; - haxr = linux; - HDBC = linux; - HDBCPostgresql = linux; - HDBCSqlite3 = linux; - HFuse = linux; - highlightingKate = linux; - hinotify = linux; - hint = linux; - Hipmunk = linux; - hledgerInterest = linux; - hledgerLib = linux; - hledger = linux; - hledgerWeb = linux; - hlint = linux; - HList = linux; - hmatrix = linux; - hoogle = linux; - hopenssl = linux; - hostname = linux; - hp2anyCore = linux; - hp2anyGraph = linux; - hS3 = linux; - hscolour = linux; - hsdns = linux; - hsemail = linux; - hslogger = linux; - hsloggerTemplate = linux; - hspec = linux; - hspread = linux; - HsSyck = linux; - HStringTemplate = linux; - hsyslog = linux; - html = linux; - httpConduit = linux; - httpDate = linux; - httpdShed = linux; - HTTP = linux; - httpTypes = linux; - HUnit = linux; - hxt = linux; - IfElse = linux; - irc = linux; - iteratee = linux; - jailbreakCabal = linux; - json = linux; - jsonTypes = linux; - lambdabot = linux; - languageCQuote = linux; - languageJavascript = linux; - largeword = linux; - lens = linux; - libxmlSax = linux; - liftedBase = linux; - ListLike = linux; - logfloat = linux; - ltk = linux; - mainlandPretty = linux; - maude = linux; - MaybeT = linux; - MemoTrie = linux; - mersenneRandomPure64 = linux; - mimeMail = linux; - MissingH = linux; - mmap = linux; - MonadCatchIOMtl = linux; - MonadCatchIOTransformers = linux; - monadControl = linux; - monadLoops = linux; - monadPar = linux; - monadPeel = linux; - MonadPrompt = linux; - MonadRandom = linux; - mpppc = linux; - mtl = linux; - mtlparse = linux; - multiplate = linux; - multirec = linux; - multiset = linux; - murmurHash = linux; - mwcRandom = linux; - nat = linux; - nats = linux; - naturals = linux; - networkInfo = linux; - network = linux; - networkMulticast = linux; - networkProtocolXmpp = linux; - nonNegative = linux; - numericPrelude = linux; - numtype = linux; - numtypeTf = linux; - ObjectName = linux; - OneTuple = linux; - OpenAL = linux; - OpenGL = linux; - packunused = linux; - pandoc = linux; - pandocTypes = linux; - pango = linux; - parallel = linux; - parseargs = linux; - parsec3 = linux; - parsec = linux; - parsimony = linux; - pathPieces = linux; - pathtype = linux; - pcreLight = linux; - permutation = linux; - persistent = linux; - persistentPostgresql = linux; - persistentSqlite = linux; - persistentTemplate = linux; - polyparse = linux; - ppm = linux; - prettyShow = linux; - primitive = linux; - PSQueue = linux; - pureMD5 = linux; - pwstoreFast = linux; - QuickCheck2 = linux; - QuickCheck = linux; - randomFu = linux; - random = linux; - randomShuffle = linux; - randomSource = linux; - RangedSets = linux; - ranges = linux; - readline = linux; - recaptcha = linux; - regexBase = linux; - regexCompat = linux; - regexPCRE = linux; - regexPosix = linux; - regexpr = linux; - regexTDFA = linux; - regular = linux; - RSA = linux; - rvar = linux; - safe = linux; - SafeSemaphore = linux; - SDLImage = linux; - SDL = linux; - SDLMixer = linux; - SDLTtf = linux; - semigroups = linux; - sendfile = linux; - shake = linux; - SHA = linux; - Shellac = linux; - shelly = linux; - simpleSendfile = linux; - smallcheck = linux; - SMTPClient = linux; - snapCore = linux; - snap = linux; - snapLoaderStatic = linux; - snapServer = linux; - split = linux; - splot = linux; - srcloc = linux; - stateref = linux; - StateVar = linux; - statistics = linux; - stbImage = linux; - stm = linux; - storableComplex = linux; - storableRecord = linux; - streamproc = linux; - strictConcurrency = linux; - strict = linux; - strptime = linux; - svgcairo = linux; - syb = linux; - sybWithClassInstancesText = linux; - sybWithClass = linux; - tabular = linux; - tagged = linux; - tagsoup = linux; - tar = linux; - Tensor = linux; - terminfo = linux; - testFramework = linux; - testpack = linux; - texmath = linux; - text = linux; - thLift = linux; - timeplot = linux; - tlsExtra = linux; - tls = linux; - transformersBase = linux; - transformersCompat = linux; - transformers = linux; - tuple = linux; - typeLlevelNaturalNumber = linux; - uniplate = linux; - uniqueid = linux; - unixCompat = linux; - unorderedContainers = linux; - url = linux; - utf8Light = linux; - utf8String = linux; - utilityHt = linux; - uuagc = linux; - uuid = linux; - uulib = linux; - vacuumCairo = linux; - vacuum = linux; - vcsRevision = linux; - Vec = linux; - vectorAlgorithms = linux; - vector = linux; - vectorSpace = linux; - vty = linux; - waiAppStatic = linux; - waiExtra = linux; - wai = linux; - waiLogger = linux; - warp = linux; - wlPprintExtras = linux; - wlPprint = linux; - wlPprintTerminfo = linux; - wxcore = linux; - wxdirect = linux; - wx = linux; - X11 = linux; - xhtml = linux; - xmlConduit = linux; - xmlHamlet = linux; - xml = linux; - xmlTypes = linux; - xmobar = linux; - xmonadContrib = linux; - xmonadExtras = linux; - xmonad = linux; - xssSanitize = linux; - yesodAuth = linux; - yesodCore = linux; - yesodDefault = linux; - yesodForm = linux; - yesodJson = linux; - yesod = linux; - yesodPersistent = linux; - yesodStatic = linux; - zeromq3Haskell = linux; - zeromqHaskell = linux; - zipArchive = linux; - zipper = linux; - zlibBindings = linux; - zlibEnum = linux; - zlib = linux; + abstractPar = supportedSystems; + ACVector = supportedSystems; + aeson = supportedSystems; + AgdaExecutable = supportedSystems; + alex = supportedSystems; + alexMeta = supportedSystems; + alternativeIo = supportedSystems; + ansiTerminal = supportedSystems; + ansiWlPprint = supportedSystems; + asn1Data = supportedSystems; + AspectAG = supportedSystems; + async = supportedSystems; + attempt = supportedSystems; + attoparsecEnumerator = supportedSystems; + attoparsec = supportedSystems; + authenticate = supportedSystems; + base64Bytestring = supportedSystems; + baseUnicodeSymbols = supportedSystems; + benchpress = supportedSystems; + bimap = supportedSystems; + binaryShared = supportedSystems; + bitmap = supportedSystems; + bktrees = supportedSystems; + blazeBuilderEnumerator = supportedSystems; + blazeBuilder = supportedSystems; + blazeHtml = supportedSystems; + blazeTextual = supportedSystems; + bloomfilter = supportedSystems; + bmp = supportedSystems; + BNFC = supportedSystems; + BNFCMeta = supportedSystems; + Boolean = supportedSystems; + bytestringMmap = supportedSystems; + bytestringNums = supportedSystems; + bytestringTrie = supportedSystems; + cabal2Ghci = supportedSystems; + cabal2nix = supportedSystems; + cabalDev = supportedSystems; + cabalGhci = supportedSystems; + cabalInstall = supportedSystems; + cairo = supportedSystems; + caseInsensitive = supportedSystems; + cautiousFile = supportedSystems; + cereal = supportedSystems; + certificate = supportedSystems; + cgi = supportedSystems; + Chart = supportedSystems; + citeprocHs = supportedSystems; + clientsession = supportedSystems; + cmdargs = supportedSystems; + cmdlib = supportedSystems; + colorizeHaskell = supportedSystems; + colour = supportedSystems; + comonadsFd = supportedSystems; + conduit = supportedSystems; + ConfigFile = supportedSystems; + continuedFractions = supportedSystems; + converge = supportedSystems; + convertible = supportedSystems; + cookie = supportedSystems; + cpphs = supportedSystems; + cprngAes = supportedSystems; + criterion = supportedSystems; + cryptoApi = supportedSystems; + cryptocipher = supportedSystems; + cryptohash = supportedSystems; + Crypto = supportedSystems; + cssText = supportedSystems; + csv = supportedSystems; + darcs = supportedSystems; + dataAccessor = supportedSystems; + dataAccessorTemplate = supportedSystems; + dataDefault = supportedSystems; + dataenc = supportedSystems; + dataReify = supportedSystems; + datetime = supportedSystems; + DAV = supportedSystems; + dbus = supportedSystems; + derive = supportedSystems; + diagrams = supportedSystems; + Diff = supportedSystems; + digestiveFunctorsHeist = supportedSystems; + digestiveFunctorsSnap = supportedSystems; + digest = supportedSystems; + dimensional = supportedSystems; + dimensionalTf = supportedSystems; + directoryTree = supportedSystems; + distributedProcess = supportedSystems; + dlist = supportedSystems; + dns = supportedSystems; + doctest = supportedSystems; + dotgen = supportedSystems; + doubleConversion = supportedSystems; + Ebnf2ps = supportedSystems; + editDistance = supportedSystems; + editline = supportedSystems; + emailValidate = supportedSystems; + entropy = supportedSystems; + enumerator = supportedSystems; + epic = supportedSystems; + erf = supportedSystems; + failure = supportedSystems; + fclabels = supportedSystems; + feed = supportedSystems; + fgl = supportedSystems; + fileEmbed = supportedSystems; + filestore = supportedSystems; + fingertree = supportedSystems; + flexibleDefaults = supportedSystems; + funcmp = supportedSystems; + gamma = supportedSystems; + gdiff = supportedSystems; + ghcEvents = supportedSystems; + ghc = supportedSystems; + ghcMtl = supportedSystems; + ghcPaths = supportedSystems; + ghcSybUtils = supportedSystems; + githubBackup = supportedSystems; + github = supportedSystems; + gitit = supportedSystems; + glade = supportedSystems; + glib = supportedSystems; + Glob = supportedSystems; + gloss = supportedSystems; + GLUT = supportedSystems; + gnutls = supportedSystems; + graphviz = supportedSystems; + gtk = supportedSystems; + gtksourceview2 = supportedSystems; + hackageDb = supportedSystems; + haddock = supportedSystems; + hakyll = supportedSystems; + hamlet = supportedSystems; + happstackHamlet = supportedSystems; + happstackServer = supportedSystems; + happstackUtil = supportedSystems; + happy = supportedSystems; + hashable = supportedSystems; + hashedStorage = supportedSystems; + haskeline = supportedSystems; + haskellLexer = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrcExts = supportedSystems; + haskellSrc = supportedSystems; + haskellSrcMeta = supportedSystems; + HaXml = supportedSystems; + haxr = supportedSystems; + HDBC = supportedSystems; + HDBCPostgresql = supportedSystems; + HDBCSqlite3 = supportedSystems; + HFuse = supportedSystems; + highlightingKate = supportedSystems; + hinotify = supportedSystems; + hint = supportedSystems; + Hipmunk = supportedSystems; + hledgerInterest = supportedSystems; + hledgerLib = supportedSystems; + hledger = supportedSystems; + hledgerWeb = supportedSystems; + hlint = supportedSystems; + HList = supportedSystems; + hmatrix = supportedSystems; + hoogle = supportedSystems; + hopenssl = supportedSystems; + hostname = supportedSystems; + hp2anyCore = supportedSystems; + hp2anyGraph = supportedSystems; + hS3 = supportedSystems; + hscolour = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hslogger = supportedSystems; + hsloggerTemplate = supportedSystems; + hspec = supportedSystems; + hspread = supportedSystems; + HsSyck = supportedSystems; + HStringTemplate = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + httpConduit = supportedSystems; + httpDate = supportedSystems; + httpdShed = supportedSystems; + HTTP = supportedSystems; + httpTypes = supportedSystems; + HUnit = supportedSystems; + hxt = supportedSystems; + IfElse = supportedSystems; + irc = supportedSystems; + iteratee = supportedSystems; + jailbreakCabal = supportedSystems; + json = supportedSystems; + jsonTypes = supportedSystems; + lambdabot = supportedSystems; + languageCQuote = supportedSystems; + languageJavascript = supportedSystems; + largeword = supportedSystems; + lens = supportedSystems; + libxmlSax = supportedSystems; + liftedBase = supportedSystems; + ListLike = supportedSystems; + logfloat = supportedSystems; + ltk = supportedSystems; + mainlandPretty = supportedSystems; + maude = supportedSystems; + MaybeT = supportedSystems; + MemoTrie = supportedSystems; + mersenneRandomPure64 = supportedSystems; + mimeMail = supportedSystems; + MissingH = supportedSystems; + mmap = supportedSystems; + MonadCatchIOMtl = supportedSystems; + MonadCatchIOTransformers = supportedSystems; + monadControl = supportedSystems; + monadLoops = supportedSystems; + monadPar = supportedSystems; + monadPeel = supportedSystems; + MonadPrompt = supportedSystems; + MonadRandom = supportedSystems; + mpppc = supportedSystems; + mtl = supportedSystems; + mtlparse = supportedSystems; + multiplate = supportedSystems; + multirec = supportedSystems; + multiset = supportedSystems; + murmurHash = supportedSystems; + mwcRandom = supportedSystems; + nat = supportedSystems; + nats = supportedSystems; + naturals = supportedSystems; + networkInfo = supportedSystems; + network = supportedSystems; + networkMulticast = supportedSystems; + networkProtocolXmpp = supportedSystems; + nonNegative = supportedSystems; + numericPrelude = supportedSystems; + numtype = supportedSystems; + numtypeTf = supportedSystems; + ObjectName = supportedSystems; + OneTuple = supportedSystems; + OpenAL = supportedSystems; + OpenGL = supportedSystems; + packunused = supportedSystems; + pandoc = supportedSystems; + pandocTypes = supportedSystems; + pango = supportedSystems; + parallel = supportedSystems; + parseargs = supportedSystems; + parsec3 = supportedSystems; + parsec = supportedSystems; + parsimony = supportedSystems; + pathPieces = supportedSystems; + pathtype = supportedSystems; + pcreLight = supportedSystems; + permutation = supportedSystems; + persistent = supportedSystems; + persistentPostgresql = supportedSystems; + persistentSqlite = supportedSystems; + persistentTemplate = supportedSystems; + polyparse = supportedSystems; + ppm = supportedSystems; + prettyShow = supportedSystems; + primitive = supportedSystems; + PSQueue = supportedSystems; + pureMD5 = supportedSystems; + pwstoreFast = supportedSystems; + QuickCheck2 = supportedSystems; + QuickCheck = supportedSystems; + randomFu = supportedSystems; + random = supportedSystems; + randomShuffle = supportedSystems; + randomSource = supportedSystems; + RangedSets = supportedSystems; + ranges = supportedSystems; + readline = supportedSystems; + recaptcha = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPCRE = supportedSystems; + regexPosix = supportedSystems; + regexpr = supportedSystems; + regexTDFA = supportedSystems; + regular = supportedSystems; + RSA = supportedSystems; + rvar = supportedSystems; + safe = supportedSystems; + SafeSemaphore = supportedSystems; + SDLImage = supportedSystems; + SDL = supportedSystems; + SDLMixer = supportedSystems; + SDLTtf = supportedSystems; + semigroups = supportedSystems; + sendfile = supportedSystems; + shake = supportedSystems; + SHA = supportedSystems; + Shellac = supportedSystems; + shelly = supportedSystems; + simpleSendfile = supportedSystems; + smallcheck = supportedSystems; + SMTPClient = supportedSystems; + snapCore = supportedSystems; + snap = supportedSystems; + snapLoaderStatic = supportedSystems; + snapServer = supportedSystems; + split = supportedSystems; + splot = supportedSystems; + srcloc = supportedSystems; + stateref = supportedSystems; + StateVar = supportedSystems; + statistics = supportedSystems; + stbImage = supportedSystems; + stm = supportedSystems; + storableComplex = supportedSystems; + storableRecord = supportedSystems; + streamproc = supportedSystems; + strictConcurrency = supportedSystems; + strict = supportedSystems; + strptime = supportedSystems; + svgcairo = supportedSystems; + syb = supportedSystems; + sybWithClassInstancesText = supportedSystems; + sybWithClass = supportedSystems; + tabular = supportedSystems; + tagged = supportedSystems; + tagsoup = supportedSystems; + tar = supportedSystems; + Tensor = supportedSystems; + terminfo = supportedSystems; + testFramework = supportedSystems; + testpack = supportedSystems; + texmath = supportedSystems; + text = supportedSystems; + thLift = supportedSystems; + timeplot = supportedSystems; + tlsExtra = supportedSystems; + tls = supportedSystems; + transformersBase = supportedSystems; + transformersCompat = supportedSystems; + transformers = supportedSystems; + tuple = supportedSystems; + typeLlevelNaturalNumber = supportedSystems; + uniplate = supportedSystems; + uniqueid = supportedSystems; + unixCompat = supportedSystems; + unorderedContainers = supportedSystems; + url = supportedSystems; + utf8Light = supportedSystems; + utf8String = supportedSystems; + utilityHt = supportedSystems; + uuagc = supportedSystems; + uuid = supportedSystems; + uulib = supportedSystems; + vacuumCairo = supportedSystems; + vacuum = supportedSystems; + vcsRevision = supportedSystems; + Vec = supportedSystems; + vectorAlgorithms = supportedSystems; + vector = supportedSystems; + vectorSpace = supportedSystems; + vty = supportedSystems; + waiAppStatic = supportedSystems; + waiExtra = supportedSystems; + wai = supportedSystems; + waiLogger = supportedSystems; + warp = supportedSystems; + wlPprintExtras = supportedSystems; + wlPprint = supportedSystems; + wlPprintTerminfo = supportedSystems; + wxcore = supportedSystems; + wxdirect = supportedSystems; + wx = supportedSystems; + X11 = supportedSystems; + xhtml = supportedSystems; + xmlConduit = supportedSystems; + xmlHamlet = supportedSystems; + xml = supportedSystems; + xmlTypes = supportedSystems; + xmobar = supportedSystems; + xmonadContrib = supportedSystems; + xmonadExtras = supportedSystems; + xmonad = supportedSystems; + xssSanitize = supportedSystems; + yesodAuth = supportedSystems; + yesodCore = supportedSystems; + yesodDefault = supportedSystems; + yesodForm = supportedSystems; + yesodJson = supportedSystems; + yesod = supportedSystems; + yesodPersistent = supportedSystems; + yesodStatic = supportedSystems; + zeromq3Haskell = supportedSystems; + zeromqHaskell = supportedSystems; + zipArchive = supportedSystems; + zipper = supportedSystems; + zlibBindings = supportedSystems; + zlibEnum = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc762 = { - alex = linux; - async = linux; - BNFC = linux; - cabal2nix = linux; - cabalDev = linux; - cabalGhci = linux; - cabalInstall = linux; - cgi = linux; - cmdlib = linux; - criterion = linux; - dimensional = linux; - dimensionalTf = linux; - doctest = linux; - fgl = linux; - funcmp = linux; - ghcMod = linux; - GLUT = linux; - graphviz = linux; - hackageDb = linux; - haddock = linux; - happy = linux; - haskellSrc = linux; - hledgerInterest = linux; - hledgerLib = linux; - hledger = linux; - hlint = linux; - HList = linux; - hoogle = linux; - hopenssl = linux; - hsdns = linux; - hsemail = linux; - hspec = linux; - HStringTemplate = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; - jailbreakCabal = linux; - monadPar = linux; - mtl = linux; - network = linux; - OpenGL = linux; - pandoc = linux; - parallel = linux; - parsec = linux; - permutation = linux; - primitive = linux; - QuickCheck = linux; - random = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - smallcheck = linux; - split = linux; - stm = linux; - streamproc = linux; - syb = linux; - tar = linux; - testFrameworkHunit = linux; - testFramework = linux; - text = linux; - transformers = linux; - uulib = linux; - vector = linux; - wlPprint = linux; - xhtml = linux; - xmobar = linux; - xmonadContrib = linux; - xmonadExtras = linux; - xmonad = linux; - zlib = linux; + alex = supportedSystems; + async = supportedSystems; + BNFC = supportedSystems; + cabal2nix = supportedSystems; + cabalDev = supportedSystems; + cabalGhci = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + cmdlib = supportedSystems; + criterion = supportedSystems; + dimensional = supportedSystems; + dimensionalTf = supportedSystems; + doctest = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + ghcMod = supportedSystems; + GLUT = supportedSystems; + graphviz = supportedSystems; + hackageDb = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellSrc = supportedSystems; + hledgerInterest = supportedSystems; + hledgerLib = supportedSystems; + hledger = supportedSystems; + hlint = supportedSystems; + HList = supportedSystems; + hoogle = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hspec = supportedSystems; + HStringTemplate = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; + jailbreakCabal = supportedSystems; + monadPar = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + pandoc = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + permutation = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + random = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + smallcheck = supportedSystems; + split = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + syb = supportedSystems; + tar = supportedSystems; + testFrameworkHunit = supportedSystems; + testFramework = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + uulib = supportedSystems; + vector = supportedSystems; + wlPprint = supportedSystems; + xhtml = supportedSystems; + xmobar = supportedSystems; + xmonadContrib = supportedSystems; + xmonadExtras = supportedSystems; + xmonad = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc704 = { - alex = linux; - cabal2nix = linux; - cabalInstall = linux; - cgi = linux; - fgl = linux; - funcmp = linux; - GLUT = linux; - haddock = linux; - happy = linux; - haskellPlatform = linux; - haskellSrc = linux; - hopenssl = linux; - hsdns = linux; - hsemail = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; + alex = supportedSystems; + cabal2nix = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + GLUT = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrc = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; # This attribute causes an infinite recursion in Hydra! - # jailbreakCabal = linux; - mtl = linux; - network = linux; - OpenGL = linux; - parallel = linux; - parsec = linux; - primitive = linux; - QuickCheck = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - stm = linux; - streamproc = linux; - syb = linux; - text = linux; - transformers = linux; - vector = linux; - xhtml = linux; - zlib = linux; + # jailbreakCabal = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + syb = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + vector = supportedSystems; + xhtml = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc6123 = { - alex = linux; - cabal2nix = linux; - cabalInstall = linux; - cgi = linux; - fgl = linux; - funcmp = linux; - GLUT = linux; - haddock = linux; - happy = linux; - haskellPlatform = linux; - haskellSrc = linux; - hopenssl = linux; - hsdns = linux; - hsemail = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; + alex = supportedSystems; + cabal2nix = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + GLUT = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrc = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; # This attribute causes an infinite recursion in Hydra! - # jailbreakCabal = linux; - mtl = linux; - network = linux; - OpenGL = linux; - parallel = linux; - parsec = linux; - primitive = linux; - QuickCheck = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - stm = linux; - streamproc = linux; - text = linux; - transformers = linux; - vector = linux; - xhtml = linux; - zlib = linux; + # jailbreakCabal = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + vector = supportedSystems; + xhtml = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc6104 = { - alex = linux; - cabalInstall = linux; - cgi = linux; - fgl = linux; - funcmp = linux; - GLUT = linux; - haddock = linux; - happy = linux; - haskellPlatform = linux; - haskellSrc = linux; - hopenssl = linux; - hsdns = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; + alex = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + GLUT = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrc = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; # This attribute causes an infinite recursion in Hydra! - # jailbreakCabal = linux; - mtl = linux; - network = linux; - OpenGL = linux; - parallel = linux; - parsec = linux; - primitive = linux; - QuickCheck = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - stm = linux; - streamproc = linux; - text = linux; - transformers = linux; - vector = linux; - xhtml = linux; - zlib = linux; + # jailbreakCabal = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + vector = supportedSystems; + xhtml = supportedSystems; + zlib = supportedSystems; }; -}) +} From a9c7252a3ed7848f5692f262566b98751365e8ae Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 29 Mar 2013 17:38:59 +0100 Subject: [PATCH 045/167] i3status and i3lock should have same platform as i3wm --- pkgs/applications/window-managers/i3/lock.nix | 2 +- pkgs/applications/window-managers/i3/status.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 12e4c91e24d0..2fa43d2730c1 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; - }; + platforms = stdenv.lib.plaforms.all; }; } diff --git a/pkgs/applications/window-managers/i3/status.nix b/pkgs/applications/window-managers/i3/status.nix index 76fc487ba4ab..752f90a1bfd2 100644 --- a/pkgs/applications/window-managers/i3/status.nix +++ b/pkgs/applications/window-managers/i3/status.nix @@ -19,6 +19,7 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.plaforms.all; }; } From 34e0c33d6fefef056509b564bd5317c06011569f Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 29 Mar 2013 12:41:38 -0400 Subject: [PATCH 046/167] Allow overriding perlPackages __overrides is the worst. Signed-off-by: Shea Levy --- pkgs/top-level/all-packages.nix | 1 + pkgs/top-level/perl-packages.nix | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 05e57e5cbeec..31251ccddeef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5252,6 +5252,7 @@ let perlPackages = recurseIntoAttrs (import ./perl-packages.nix { inherit pkgs; + __overrides = (config.perlPackageOverrides or (p: {})) pkgs; }); perl510Packages = import ./perl-packages.nix { diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 4291fde5908e..2856ae88e374 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5,12 +5,14 @@ for each package in a separate file: the call to the function would be almost as must code as the function itself. */ -{pkgs}: +{pkgs, __overrides}: rec { inherit (pkgs) buildPerlPackage fetchurl stdenv perl fetchsvn; + inherit __overrides; + # Helper functions for packages that use Module::Build to build. buildPerlModule = { buildInputs ? [], ... } @ args: buildPerlPackage (args // { From 2670f68f54789dcfd368602882aadc82ac33d412 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:08 +0100 Subject: [PATCH 047/167] haskell-conduit: update to version 1.0.4.2 --- pkgs/development/libraries/haskell/conduit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/conduit/default.nix b/pkgs/development/libraries/haskell/conduit/default.nix index 4d0650747d13..1a5ef7b4f702 100644 --- a/pkgs/development/libraries/haskell/conduit/default.nix +++ b/pkgs/development/libraries/haskell/conduit/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "conduit"; - version = "1.0.4.1"; - sha256 = "1fihn6ixs6cmim5y605w2mzjrcwplr58r835wq9k3arb25d5wnys"; + version = "1.0.4.2"; + sha256 = "11xrqn7jc4vccfwds6hy0d3jpm0d0ycwaszv18xk237zwl63w159"; buildDepends = [ liftedBase mmorph monadControl resourcet text transformers transformersBase void From 8c8b243570615c6eda6c9fba4b22d0ba7b6c2ad4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:08 +0100 Subject: [PATCH 048/167] haskell-fclabels: update to version 1.1.5 --- pkgs/development/libraries/haskell/fclabels/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/fclabels/default.nix b/pkgs/development/libraries/haskell/fclabels/default.nix index 9ab8c6a0a3ea..7c64e9a2511b 100644 --- a/pkgs/development/libraries/haskell/fclabels/default.nix +++ b/pkgs/development/libraries/haskell/fclabels/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "fclabels"; - version = "1.1.4.3"; - sha256 = "10qr0ncsqxg0dg2f73ip873gr342saxhidaf3c6g5vr03cvmmkap"; + version = "1.1.5"; + sha256 = "0g9h1mayzf8v9dg84b54cqjbz9m9hdmj9a2zh0lg2kbc1v7iwlx1"; buildDepends = [ mtl transformers ]; meta = { description = "First class accessor labels"; From 484b5c34d3f7362e8468455523ed6a5cdf17e1ba Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:08 +0100 Subject: [PATCH 049/167] haskell-generic-deriving: update to version 1.5.0 --- .../libraries/haskell/generic-deriving/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/generic-deriving/default.nix b/pkgs/development/libraries/haskell/generic-deriving/default.nix index 8082201e71ce..c5a62b967aa0 100644 --- a/pkgs/development/libraries/haskell/generic-deriving/default.nix +++ b/pkgs/development/libraries/haskell/generic-deriving/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "generic-deriving"; - version = "1.4.0"; - sha256 = "15av3l4m4qn5by41rkpdvp1kyp3fi9ixvy76wmyj20c46kjbmra7"; + version = "1.5.0"; + sha256 = "1m3hckwpzmarlvm2xq22za3386ady6p89kg7nd8cnjkifnnbz20r"; meta = { description = "Generic programming library for generalised deriving"; license = self.stdenv.lib.licenses.bsd3; From 9f260baa506058fed3dea3753b2fed2e4b36c612 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 050/167] haskell-lens: update to version 3.9.0.2 --- pkgs/development/libraries/haskell/lens/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/lens/default.nix b/pkgs/development/libraries/haskell/lens/default.nix index 1dfd50f69e14..ef0b46b236d9 100644 --- a/pkgs/development/libraries/haskell/lens/default.nix +++ b/pkgs/development/libraries/haskell/lens/default.nix @@ -10,8 +10,8 @@ cabal.mkDerivation (self: { pname = "lens"; - version = "3.8.7.3"; - sha256 = "0z28vv3k6zg2zsd3pb1vlhv75q0zjlh4zf1md77cviyyljwc0j09"; + version = "3.9.0.2"; + sha256 = "0ch38z33zgdyzjmc7jqwabwq68iidicpzhbwzpd4fvcqdp27apl2"; buildDepends = [ bifunctors comonad comonadsFd comonadTransformers contravariant distributive filepath genericDeriving hashable From 44cf7ed71c907af437a4fd526d43e51f293648af Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 051/167] haskell-liblastfm: update to version 0.1.1.1 --- .../libraries/haskell/liblastfm/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/liblastfm/default.nix b/pkgs/development/libraries/haskell/liblastfm/default.nix index 323f1797fef0..096a39b9a3b3 100644 --- a/pkgs/development/libraries/haskell/liblastfm/default.nix +++ b/pkgs/development/libraries/haskell/liblastfm/default.nix @@ -1,14 +1,18 @@ -{ cabal, aeson, cereal, cryptoApi, httpConduit, httpTypes, network -, pureMD5, text +{ cabal, aeson, attoparsec, cereal, cryptoApi, httpConduit +, httpTypes, HUnit, network, pureMD5, testFramework +, testFrameworkHunit, text }: cabal.mkDerivation (self: { pname = "liblastfm"; - version = "0.1.1.0"; - sha256 = "1yrgyb0m1gdhsrkv3b8a5a0qii67v9gx1kbv79ixlac60bsm4q95"; + version = "0.1.1.1"; + sha256 = "1svqxi85n18r9szmlcny51j71zzkki9pnfxnxim78y5vh0nf82qv"; buildDepends = [ aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text ]; + testDepends = [ + aeson attoparsec HUnit testFramework testFrameworkHunit text + ]; meta = { description = "Lastfm API interface"; license = self.stdenv.lib.licenses.mit; From 4ad1be1b3e4828c002bc57f56a8073387160d4fd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 052/167] haskell-multiarg: update to version 0.12.0.0 --- pkgs/development/libraries/haskell/multiarg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/multiarg/default.nix b/pkgs/development/libraries/haskell/multiarg/default.nix index 9af9210d74cb..c8a7b479c54f 100644 --- a/pkgs/development/libraries/haskell/multiarg/default.nix +++ b/pkgs/development/libraries/haskell/multiarg/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "multiarg"; - version = "0.10.0.0"; - sha256 = "09clgin66i2m0b3ws7di9p15cy9bd144as832xpx4li6cfbg16ip"; + version = "0.12.0.0"; + sha256 = "1v2bfqbjk4wxn5dzd7asqcfidlr9bmwc5yy7awp86ch669kjnbzd"; buildDepends = [ explicitException utf8String ]; meta = { homepage = "https://github.com/massysett/multiarg"; From 71b00ef300e62d8ab41d764ed7eed5d116bb0afe Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 053/167] haskell-unix-compat: update to version 0.4.1.1 --- pkgs/development/libraries/haskell/unix-compat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/unix-compat/default.nix b/pkgs/development/libraries/haskell/unix-compat/default.nix index d65a440bb22f..35097601783a 100644 --- a/pkgs/development/libraries/haskell/unix-compat/default.nix +++ b/pkgs/development/libraries/haskell/unix-compat/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "unix-compat"; - version = "0.4.1.0"; - sha256 = "155m3zg692zbfyck4njx1vzvb5vgs0dkzyzlqf2x78ds6j9bzjzi"; + version = "0.4.1.1"; + sha256 = "1cjny6zca5wdj7d56kjkaxlad85kknn91pisrizjy6wngszyaigf"; meta = { homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; From 7d64583919ccdb0eabc53f576b06f9821aeef65b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 01:44:30 +0100 Subject: [PATCH 054/167] haskell-persistent-postgresql: jailbreak to fix build with latest version of postgres-simple --- .../libraries/haskell/persistent-postgresql/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/persistent-postgresql/default.nix b/pkgs/development/libraries/haskell/persistent-postgresql/default.nix index 0ee5e625db4f..885ad70f63fa 100644 --- a/pkgs/development/libraries/haskell/persistent-postgresql/default.nix +++ b/pkgs/development/libraries/haskell/persistent-postgresql/default.nix @@ -10,6 +10,7 @@ cabal.mkDerivation (self: { aeson conduit monadControl persistent postgresqlLibpq postgresqlSimple text time transformers ]; + jailbreak = true; meta = { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using postgresql"; From 8f2c094801747344346172fa11aa35acd4729b44 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 14:40:12 +0100 Subject: [PATCH 055/167] haskell-dual-tree: update to version 0.1.0.2 --- pkgs/development/libraries/haskell/dual-tree/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/haskell/dual-tree/default.nix b/pkgs/development/libraries/haskell/dual-tree/default.nix index a37b86521502..54f1da653161 100644 --- a/pkgs/development/libraries/haskell/dual-tree/default.nix +++ b/pkgs/development/libraries/haskell/dual-tree/default.nix @@ -2,10 +2,9 @@ cabal.mkDerivation (self: { pname = "dual-tree"; - version = "0.1.0.1"; - sha256 = "09bdid65frccpbh1bs01f7vprq0vfgqsb5bfa4j8yi3q773mycb2"; + version = "0.1.0.2"; + sha256 = "0ys50m8yjksxi33qyk6ql4ldpdzb0fvxqvywi3y46xi16w5yrkb0"; buildDepends = [ monoidExtras newtype semigroups ]; - jailbreak = true; meta = { description = "Rose trees with cached and accumulating monoidal annotations"; license = self.stdenv.lib.licenses.bsd3; From b5bda573d5fd9fde2c657624d6ce5e9100a35af2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 14:40:12 +0100 Subject: [PATCH 056/167] haskell-monoid-extras: update to version 0.2.2.3 --- pkgs/development/libraries/haskell/monoid-extras/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/haskell/monoid-extras/default.nix b/pkgs/development/libraries/haskell/monoid-extras/default.nix index 1161fe817b5a..96f254d077e3 100644 --- a/pkgs/development/libraries/haskell/monoid-extras/default.nix +++ b/pkgs/development/libraries/haskell/monoid-extras/default.nix @@ -2,10 +2,9 @@ cabal.mkDerivation (self: { pname = "monoid-extras"; - version = "0.2.2.2"; - sha256 = "1fz93hm0sswisvwvbygxvbwmmnzqcxmz9h82i4361wzychf2si22"; + version = "0.2.2.3"; + sha256 = "00yj7wdyznsis82fb7i07s0vz8vsn2mpqk7jkgl9xxa57gk1rsax"; buildDepends = [ semigroups ]; - jailbreak = true; meta = { description = "Various extra monoid-related definitions and utilities"; license = self.stdenv.lib.licenses.bsd3; From 0e32b1462bf0806f00f315c30eb9a7edec2c5da9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 14:40:12 +0100 Subject: [PATCH 057/167] haskell-vector-space-points: update to version 0.1.2.1 --- .../libraries/haskell/vector-space-points/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/vector-space-points/default.nix b/pkgs/development/libraries/haskell/vector-space-points/default.nix index 264391de95f5..37a131a32443 100644 --- a/pkgs/development/libraries/haskell/vector-space-points/default.nix +++ b/pkgs/development/libraries/haskell/vector-space-points/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "vector-space-points"; - version = "0.1.2.0"; - sha256 = "19azl6g14rsxs0qbik6x637qw9jv4xl01w65xd0xh7833mypmj6d"; + version = "0.1.2.1"; + sha256 = "0prbmk48xdr2gbxqpv0g89xz5v3k9wps9v2gymkh32jag2lgzi66"; buildDepends = [ newtype vectorSpace ]; meta = { description = "A type for points, as distinct from vectors"; From 504d9563a4558d3b6de6999eb2de0da002ae96fe Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 058/167] haskell-case-insensitive: update to version 1.0.0.1 --- .../libraries/haskell/case-insensitive/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/case-insensitive/default.nix b/pkgs/development/libraries/haskell/case-insensitive/default.nix index c43ea95322d4..06a75132869d 100644 --- a/pkgs/development/libraries/haskell/case-insensitive/default.nix +++ b/pkgs/development/libraries/haskell/case-insensitive/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "case-insensitive"; - version = "1.0"; - sha256 = "1x437b5yyh930a5dr642lvfdgpx12w4ms70whiw1ffjjhssb88zk"; + version = "1.0.0.1"; + sha256 = "1yp8895qvxcmai0hvxdq77qss9cia2f9fyn6rm0hln3rcx8n53xm"; buildDepends = [ deepseq hashable text ]; testDepends = [ HUnit testFramework testFrameworkHunit text ]; meta = { From c24df87bfeb4a5c7f3467858dd0eb0acb1ba3002 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 059/167] haskell-certificate: update to version 1.3.6 --- pkgs/development/libraries/haskell/certificate/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/certificate/default.nix b/pkgs/development/libraries/haskell/certificate/default.nix index ac792514386a..0adaabb4753d 100644 --- a/pkgs/development/libraries/haskell/certificate/default.nix +++ b/pkgs/development/libraries/haskell/certificate/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "certificate"; - version = "1.3.5"; - sha256 = "17g2alyib89y2k8jjg4b6jskz0ndpr92yi8hzra7vw7ygfi5mi4j"; + version = "1.3.6"; + sha256 = "1w7xndslapy4ycgf2xshgx90i3v04nsck9l2mzc74nrnwm817b2m"; isLibrary = true; isExecutable = true; buildDepends = [ From deeb058dfbdf83299448af479fb8286f3d213363 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 060/167] haskell-diagrams-lib: update to version 0.6.0.2 --- pkgs/development/libraries/haskell/diagrams/lib.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/haskell/diagrams/lib.nix b/pkgs/development/libraries/haskell/diagrams/lib.nix index d83a43bbadbb..ae466ad26234 100644 --- a/pkgs/development/libraries/haskell/diagrams/lib.nix +++ b/pkgs/development/libraries/haskell/diagrams/lib.nix @@ -4,13 +4,12 @@ cabal.mkDerivation (self: { pname = "diagrams-lib"; - version = "0.6.0.1"; - sha256 = "00ysdppl2jv0kspj0pjy8qj8shc9gg6g10lkq62vlvr39wnxx6yj"; + version = "0.6.0.2"; + sha256 = "0jxpbggwgbjnl2yx7y0zcjs2fls7y1wm33wllq5j9snkiz1n81hb"; buildDepends = [ active colour dataDefault diagramsCore monoidExtras newtype NumInstances semigroups vectorSpace ]; - jailbreak = true; meta = { homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; From eb665f3b3dd9ccd370a5070c062c56d5c9f66556 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 061/167] haskell-lifted-base: update to version 0.2.0.3 --- pkgs/development/libraries/haskell/lifted-base/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/lifted-base/default.nix b/pkgs/development/libraries/haskell/lifted-base/default.nix index 2eaf950023a6..bd3dd5032453 100644 --- a/pkgs/development/libraries/haskell/lifted-base/default.nix +++ b/pkgs/development/libraries/haskell/lifted-base/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "lifted-base"; - version = "0.2.0.2"; - sha256 = "19xzparj0k5h4wx71gvbd7l653fak1p57za236sncmar8cps5pdx"; + version = "0.2.0.3"; + sha256 = "1sfrak4jf3mvns9y6iadyhj8zvy4wyrqiaxihrxv2qby14c45psx"; buildDepends = [ baseUnicodeSymbols monadControl transformersBase ]; From 717d894f8389742fffcf9abbddb36c5da5b2ff8b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 062/167] haskell-profunctors: update to version 3.3.0.1 --- pkgs/development/libraries/haskell/profunctors/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/profunctors/default.nix b/pkgs/development/libraries/haskell/profunctors/default.nix index 936230131e7e..f141959dcf1a 100644 --- a/pkgs/development/libraries/haskell/profunctors/default.nix +++ b/pkgs/development/libraries/haskell/profunctors/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "profunctors"; - version = "3.3"; - sha256 = "0cvar0qr2yf0lmqwhiy2ibajiq9cmqy2ikwn8l5mdxxh5q5rwgjj"; + version = "3.3.0.1"; + sha256 = "16d7xg929r4smmmcgi54bz7rsjxs6psksrdvzl4336sjpp3dw5h2"; buildDepends = [ comonad tagged ]; meta = { homepage = "http://github.com/ekmett/profunctors/"; From 78b8be47e2980d40b29955f394350c64d2fdcbcf Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 063/167] haskell-reflection: update to version 1.2.0.1 --- pkgs/development/libraries/haskell/reflection/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/reflection/default.nix b/pkgs/development/libraries/haskell/reflection/default.nix index 9d3acb72d6b9..d18f711cab32 100644 --- a/pkgs/development/libraries/haskell/reflection/default.nix +++ b/pkgs/development/libraries/haskell/reflection/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "reflection"; - version = "1.1.7"; - sha256 = "073v9y09fvh7nsfqp1jp2ncrq0xkcv5fvikl769ghv2ycgkfxl4z"; + version = "1.2.0.1"; + sha256 = "17pzw45yr13nq9y9nb3siypj5amkixy82xm8bpy0nzs1cdfyawx6"; buildDepends = [ tagged ]; meta = { homepage = "http://github.com/ekmett/reflection"; From a1d4a00dcdcbe8bae546f055b1c5fa21ea87bce4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:35:50 +0100 Subject: [PATCH 064/167] haskell-snap: jailbreak to support building with lens 3.9.0.2 --- pkgs/development/libraries/haskell/snap/snap.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/haskell/snap/snap.nix b/pkgs/development/libraries/haskell/snap/snap.nix index f5da92f6c8e3..8462b85caf99 100644 --- a/pkgs/development/libraries/haskell/snap/snap.nix +++ b/pkgs/development/libraries/haskell/snap/snap.nix @@ -20,6 +20,9 @@ cabal.mkDerivation (self: { unorderedContainers vector vectorAlgorithms xmlhtml ]; jailbreak = true; + patchPhase = '' + sed -i -e 's|lens .*>= 3.7.6.*$|lens|' snap.cabal + ''; meta = { homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; From 8a134745de8e81282c6aaedb33940244246df1b0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:41:26 +0100 Subject: [PATCH 065/167] haskell-hspec-expectations: add version 0.3.2 --- .../{default.nix => 0.3.0.3.nix} | 0 .../haskell/hspec-expectations/0.3.2.nix | 17 +++++++++++++++++ pkgs/top-level/haskell-packages.nix | 4 +++- 3 files changed, 20 insertions(+), 1 deletion(-) rename pkgs/development/libraries/haskell/hspec-expectations/{default.nix => 0.3.0.3.nix} (100%) create mode 100644 pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix diff --git a/pkgs/development/libraries/haskell/hspec-expectations/default.nix b/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix similarity index 100% rename from pkgs/development/libraries/haskell/hspec-expectations/default.nix rename to pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix diff --git a/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix b/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix new file mode 100644 index 000000000000..52defb43e4cb --- /dev/null +++ b/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix @@ -0,0 +1,17 @@ +{ cabal, hspec, HUnit, markdownUnlit, silently }: + +cabal.mkDerivation (self: { + pname = "hspec-expectations"; + version = "0.3.2"; + sha256 = "0962wlngqck0wc7mcby9bzci1s8d9a91vsm39rnab5wifhc2c6xi"; + buildDepends = [ HUnit ]; + testDepends = [ hspec HUnit markdownUnlit silently ]; + doCheck = false; + meta = { + homepage = "https://github.com/sol/hspec-expectations#readme"; + description = "Catchy combinators for HUnit"; + license = self.stdenv.lib.licenses.mit; + platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 37fe7cbe281c..70f6aac74301 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1109,7 +1109,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); hspec = callPackage ../development/libraries/haskell/hspec {}; - hspecExpectations = callPackage ../development/libraries/haskell/hspec-expectations {}; + hspecExpectations_0_3_0_3 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.0.3.nix {}; + hspecExpectations_0_3_2 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.2.nix {}; + hspecExpectations = self.hspecExpectations_0_3_0_3; hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {}; From 82030c4ba21d8c202372e78962f7340ef768fb11 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:43:26 +0100 Subject: [PATCH 066/167] haskell-split: add version 0.2.1.3 --- .../libraries/haskell/split/{0.2.1.2.nix => 0.2.1.3.nix} | 4 ++-- pkgs/top-level/haskell-packages.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) rename pkgs/development/libraries/haskell/split/{0.2.1.2.nix => 0.2.1.3.nix} (81%) diff --git a/pkgs/development/libraries/haskell/split/0.2.1.2.nix b/pkgs/development/libraries/haskell/split/0.2.1.3.nix similarity index 81% rename from pkgs/development/libraries/haskell/split/0.2.1.2.nix rename to pkgs/development/libraries/haskell/split/0.2.1.3.nix index 0482fb243a51..ebadd0f9ba30 100644 --- a/pkgs/development/libraries/haskell/split/0.2.1.2.nix +++ b/pkgs/development/libraries/haskell/split/0.2.1.3.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "split"; - version = "0.2.1.2"; - sha256 = "0wjw4j9wgk66h7filzfh0py9b0wwmaynvwqvd6kinxgms86fpvyi"; + version = "0.2.1.3"; + sha256 = "1s3aga7asxz495bx7i72a6fkdlz1zv20rrrqg1avj7b1sjn3gy9w"; testDepends = [ QuickCheck ]; meta = { description = "Combinator library for splitting lists"; diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 70f6aac74301..17a43606a4e8 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -150,7 +150,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); regexBase = self.regexBase_0_93_2; # 7.6 ok regexCompat = self.regexCompat_0_95_1; # 7.6 ok regexPosix = self.regexPosix_0_95_2; # 7.6 ok - split = self.split_0_2_1_2; # 7.6 ok + split = self.split_0_2_1_3; # 7.6 ok stm = self.stm_2_4_2; # 7.6 ok syb = self.syb_0_4_0; # 7.6 ok text = self.text_0_11_2_3; # 7.6 ok @@ -1697,8 +1697,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); SMTPClient = callPackage ../development/libraries/haskell/SMTPClient {}; split_0_2_1_1 = callPackage ../development/libraries/haskell/split/0.2.1.1.nix {}; - split_0_2_1_2 = callPackage ../development/libraries/haskell/split/0.2.1.2.nix {}; - split = self.split_0_2_1_2; + split_0_2_1_3 = callPackage ../development/libraries/haskell/split/0.2.1.3.nix {}; + split = self.split_0_2_1_3; stbImage = callPackage ../development/libraries/haskell/stb-image {}; From e83c6b27495fee55e83618e61883692be8ba83b0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 17:05:40 +0100 Subject: [PATCH 067/167] haskell-language-c-quote: add version 0.7.1 --- .../{default.nix => 0.4.4.nix} | 0 .../haskell/language-c-quote/0.7.1.nix | 28 +++++++++++++++++++ pkgs/top-level/haskell-packages.nix | 4 ++- 3 files changed, 31 insertions(+), 1 deletion(-) rename pkgs/development/libraries/haskell/language-c-quote/{default.nix => 0.4.4.nix} (100%) create mode 100644 pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix diff --git a/pkgs/development/libraries/haskell/language-c-quote/default.nix b/pkgs/development/libraries/haskell/language-c-quote/0.4.4.nix similarity index 100% rename from pkgs/development/libraries/haskell/language-c-quote/default.nix rename to pkgs/development/libraries/haskell/language-c-quote/0.4.4.nix diff --git a/pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix b/pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix new file mode 100644 index 000000000000..1ce3ceaac825 --- /dev/null +++ b/pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix @@ -0,0 +1,28 @@ +{ cabal, alex, exceptionMtl, exceptionTransformers, filepath, happy +, haskellSrcMeta, HUnit, mainlandPretty, mtl, srcloc, syb, symbol +, testFramework, testFrameworkHunit +}: + +cabal.mkDerivation (self: { + pname = "language-c-quote"; + version = "0.7.1"; + sha256 = "14gh944wpwg4csxwswr9jlll4p5wc3x1fhbqsfh9lqf98ys7ij3z"; + buildDepends = [ + exceptionMtl exceptionTransformers filepath haskellSrcMeta + mainlandPretty mtl srcloc syb symbol + ]; + testDepends = [ + HUnit srcloc symbol testFramework testFrameworkHunit + ]; + buildTools = [ alex happy ]; + meta = { + homepage = "http://www.eecs.harvard.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ + self.stdenv.lib.maintainers.andres + self.stdenv.lib.maintainers.simons + ]; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 17a43606a4e8..479c140900a4 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1191,7 +1191,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); languageC_0_3_2_1 = callPackage ../development/libraries/haskell/language-c/0.3.2.1.nix {}; languageC = self.languageC_0_4_2; - languageCQuote = callPackage ../development/libraries/haskell/language-c-quote/default.nix {}; + languageCQuote_0_4_4 = callPackage ../development/libraries/haskell/language-c-quote/0.4.4.nix {}; + languageCQuote_0_7_1 = callPackage ../development/libraries/haskell/language-c-quote/0.7.1.nix {}; + languageCQuote = self.languageCQuote_0_7_1; languageJavascript = callPackage ../development/libraries/haskell/language-javascript {}; From 905c058b6d20109bb91cde6da709bbbefdfa961c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 17:18:31 +0100 Subject: [PATCH 068/167] haskell-accelerate-cuda needs old version of language-c-quote. --- pkgs/top-level/haskell-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 479c140900a4..9b3c33c41981 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -444,7 +444,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); accelerate = callPackage ../development/libraries/haskell/accelerate {}; - accelerateCuda = callPackage ../development/libraries/haskell/accelerate-cuda {}; + accelerateCuda = callPackage ../development/libraries/haskell/accelerate-cuda { + languageCQuote = self.languageCQuote_0_4_4; + }; accelerateExamples = callPackage ../development/libraries/haskell/accelerate-examples {}; From eb2e3f648aa78f9fa8395eefcbb37974b4f14366 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 29 Mar 2013 13:07:26 -0400 Subject: [PATCH 069/167] Pass overrides for perl510Packages too Signed-off-by: Shea Levy --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 31251ccddeef..f94765a2cbcb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5260,6 +5260,7 @@ let perl = perl510; buildPerlPackage = import ../development/perl-modules/generic perl510; }; + __overrides = (config.perl510PackageOverrides or (p: {})) pkgs; }; perlXMLParser = perlPackages.XMLParser; From 6c890824bddecb77b7450e168d75fad963183451 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 29 Mar 2013 18:24:24 +0100 Subject: [PATCH 070/167] fixed typo from previous commit --- pkgs/applications/window-managers/i3/lock.nix | 3 ++- pkgs/applications/window-managers/i3/status.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 2fa43d2730c1..2331b1eaf815 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -20,6 +20,7 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.plaforms.all; }; + platforms = stdenv.lib.platforms.all; + }; } diff --git a/pkgs/applications/window-managers/i3/status.nix b/pkgs/applications/window-managers/i3/status.nix index 752f90a1bfd2..7317f17bb8b2 100644 --- a/pkgs/applications/window-managers/i3/status.nix +++ b/pkgs/applications/window-managers/i3/status.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.plaforms.all; + platforms = stdenv.lib.platforms.all; }; } From 92f72cb80fbcadbcf41797add1004cd344fc6d87 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 18:32:32 +0100 Subject: [PATCH 071/167] pwgen, wgetpaste: set platforms --- pkgs/tools/security/pwgen/default.nix | 1 + pkgs/tools/text/wgetpaste/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/tools/security/pwgen/default.nix b/pkgs/tools/security/pwgen/default.nix index 72ca4c987c59..ecbc95362e61 100644 --- a/pkgs/tools/security/pwgen/default.nix +++ b/pkgs/tools/security/pwgen/default.nix @@ -8,5 +8,6 @@ stdenv.mkDerivation { }; meta = { description = "Small, GPL'ed password generator which creates passwords which can be easily memorized by a human."; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/tools/text/wgetpaste/default.nix b/pkgs/tools/text/wgetpaste/default.nix index 63313872ede9..04102093aae4 100644 --- a/pkgs/tools/text/wgetpaste/default.nix +++ b/pkgs/tools/text/wgetpaste/default.nix @@ -23,5 +23,6 @@ homepage = http://wgetpaste.zlin.dk/; license = "publicDomain"; maintainers = with stdenv.lib.maintainers; [qknight]; + platforms = stdenv.lib.platforms.all; }; } From 7405ddee2f3f33a6ebc1a1055a4a1190193e5952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 18:33:28 +0100 Subject: [PATCH 072/167] gcc47: fixing the arm eabi hf build Picking an upstream gcc patch. --- .../compilers/gcc/4.7/arm-eabi.patch | 230 ++++++++++++++++++ .../development/compilers/gcc/4.7/default.nix | 2 +- 2 files changed, 231 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/compilers/gcc/4.7/arm-eabi.patch diff --git a/pkgs/development/compilers/gcc/4.7/arm-eabi.patch b/pkgs/development/compilers/gcc/4.7/arm-eabi.patch new file mode 100644 index 000000000000..63b017062b5b --- /dev/null +++ b/pkgs/development/compilers/gcc/4.7/arm-eabi.patch @@ -0,0 +1,230 @@ +Index: gcc-4_7-branch/libstdc++-v3/configure.host +=================================================================== +--- gcc-4_7-branch/libstdc++-v3/configure.host (revision 194579) ++++ gcc-4_7-branch/libstdc++-v3/configure.host (revision 194580) +@@ -340,7 +340,7 @@ + fi + esac + case "${host}" in +- arm*-*-linux-*eabi) ++ arm*-*-linux-*eabi*) + port_specific_symbol_files="\$(srcdir)/../config/os/gnu-linux/arm-eabi-extra.ver" + ;; + esac +Index: gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_signed/requirements/typedefs-2.cc +=================================================================== +--- gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_signed/requirements/typedefs-2.cc (revision 194579) ++++ gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_signed/requirements/typedefs-2.cc (revision 194580) +@@ -1,5 +1,5 @@ + // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" } +-// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + // 2007-05-03 Benjamin Kosnik + // +Index: gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs-2.cc +=================================================================== +--- gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs-2.cc (revision 194579) ++++ gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs-2.cc (revision 194580) +@@ -1,5 +1,5 @@ + // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" } +-// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + // 2007-05-03 Benjamin Kosnik + // +Index: gcc-4_7-branch/libjava/configure.ac +=================================================================== +--- gcc-4_7-branch/libjava/configure.ac (revision 194579) ++++ gcc-4_7-branch/libjava/configure.ac (revision 194580) +@@ -931,7 +931,7 @@ + # on Darwin -single_module speeds up loading of the dynamic libraries. + extra_ldflags_libjava=-Wl,-single_module + ;; +-arm*linux*eabi) ++arm*-*-linux*eabi*) + # Some of the ARM unwinder code is actually in libstdc++. We + # could in principle replicate it in libgcj, but it's better to + # have a dependency on libstdc++. +Index: gcc-4_7-branch/libjava/configure +=================================================================== +--- gcc-4_7-branch/libjava/configure (revision 194579) ++++ gcc-4_7-branch/libjava/configure (revision 194580) +@@ -20542,7 +20542,7 @@ + # on Darwin -single_module speeds up loading of the dynamic libraries. + extra_ldflags_libjava=-Wl,-single_module + ;; +-arm*linux*eabi) ++arm*-*-linux*eabi*) + # Some of the ARM unwinder code is actually in libstdc++. We + # could in principle replicate it in libgcj, but it's better to + # have a dependency on libstdc++. +Index: gcc-4_7-branch/libgcc/config.host +=================================================================== +--- gcc-4_7-branch/libgcc/config.host (revision 194579) ++++ gcc-4_7-branch/libgcc/config.host (revision 194580) +@@ -327,7 +327,7 @@ + arm*-*-linux*) # ARM GNU/Linux with ELF + tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix" + case ${host} in +- arm*-*-linux-*eabi) ++ arm*-*-linux-*eabi*) + tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc" + tm_file="$tm_file arm/bpabi-lib.h" + unwind_header=config/arm/unwind-arm.h +Index: gcc-4_7-branch/gcc/doc/install.texi +=================================================================== +--- gcc-4_7-branch/gcc/doc/install.texi (revision 194579) ++++ gcc-4_7-branch/gcc/doc/install.texi (revision 194580) +@@ -3222,7 +3222,7 @@ + @heading @anchor{arm-x-eabi}arm-*-eabi + ARM-family processors. Subtargets that use the ELF object format + require GNU binutils 2.13 or newer. Such subtargets include: +-@code{arm-*-netbsdelf}, @code{arm-*-*linux-gnueabi} ++@code{arm-*-netbsdelf}, @code{arm-*-*linux-gnueabi*} + and @code{arm-*-rtemseabi}. + + @html +Index: gcc-4_7-branch/gcc/testsuite/gcc.target/arm/synchronize.c +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/gcc.target/arm/synchronize.c (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/gcc.target/arm/synchronize.c (revision 194580) +@@ -1,4 +1,4 @@ +-/* { dg-final { scan-assembler "__sync_synchronize|dmb|mcr" { target arm*-*-linux-*eabi } } } */ ++/* { dg-final { scan-assembler "__sync_synchronize|dmb|mcr" { target arm*-*-linux-*eabi* } } } */ + + void *foo (void) + { +Index: gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.jason/enum6.C +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.jason/enum6.C (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.jason/enum6.C (revision 194580) +@@ -7,10 +7,10 @@ + // enum-size attributes should only be emitted if there are values of + // enum type that can escape the compilation unit, gcc cannot currently + // detect this; if this facility is added then this linker option should +-// not be needed. arm-*-linux*eabi should be a good approximation to ++// not be needed. arm-*-linux*eabi* should be a good approximation to + // those platforms where the EABI supplement defines enum values to be + // 32 bits wide. +-// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + #include + +Index: gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.other/enum4.C +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.other/enum4.C (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.other/enum4.C (revision 194580) +@@ -9,10 +9,10 @@ + // enum-size attributes should only be emitted if there are values of + // enum type that can escape the compilation unit, gcc cannot currently + // detect this; if this facility is added then this linker option should +-// not be needed. arm-*-linux*eabi should be a good approximation to ++// not be needed. arm-*-linux*eabi* should be a good approximation to + // those platforms where the EABI supplement defines enum values to be + // 32 bits wide. +-// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + enum E { + a = -312 +Index: gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.law/enum9.C +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.law/enum9.C (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.law/enum9.C (revision 194580) +@@ -7,10 +7,10 @@ + // enum-size attributes should only be emitted if there are values of + // enum type that can escape the compilation unit, gcc cannot currently + // detect this; if this facility is added then this linker option should +-// not be needed. arm-*-linux*eabi should be a good approximation to ++// not be needed. arm-*-linux*eabi* should be a good approximation to + // those platforms where the EABI supplement defines enum values to be + // 32 bits wide. +-// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + // GROUPS passed enums + extern "C" int printf (const char *, ...); +Index: gcc-4_7-branch/gcc/testsuite/lib/target-supports.exp +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/lib/target-supports.exp (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/lib/target-supports.exp (revision 194580) +@@ -3818,7 +3818,7 @@ + } + } "" + }] +- } elseif { [istarget arm*-*-linux-gnueabi] } { ++ } elseif { [istarget arm*-*-linux-gnueabi*] } { + return [check_runtime sync_longlong_runtime { + #include + int main () +@@ -3860,7 +3860,7 @@ + || [istarget i?86-*-*] + || [istarget x86_64-*-*] + || [istarget alpha*-*-*] +- || [istarget arm*-*-linux-gnueabi] ++ || [istarget arm*-*-linux-gnueabi*] + || [istarget bfin*-*linux*] + || [istarget hppa*-*linux*] + || [istarget s390*-*-*] +@@ -3890,7 +3890,7 @@ + || [istarget i?86-*-*] + || [istarget x86_64-*-*] + || [istarget alpha*-*-*] +- || [istarget arm*-*-linux-gnueabi] ++ || [istarget arm*-*-linux-gnueabi*] + || [istarget hppa*-*linux*] + || [istarget s390*-*-*] + || [istarget powerpc*-*-*] +Index: gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_9.f90 +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_9.f90 (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_9.f90 (revision 194580) +@@ -1,6 +1,6 @@ + ! { dg-do run } + ! { dg-options "-fshort-enums" } +-! { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++! { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + ! Program to test enumerations when option -fshort-enums is given + + program main +Index: gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_10.f90 +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_10.f90 (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_10.f90 (revision 194580) +@@ -1,7 +1,7 @@ + ! { dg-do run } + ! { dg-additional-sources enum_10.c } + ! { dg-options "-fshort-enums -w" } +-! { dg-options "-fshort-enums -w -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++! { dg-options "-fshort-enums -w -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + ! Make sure short enums are indeed interoperable with the + ! corresponding C type. + +Index: gcc-4_7-branch/gcc/ada/gcc-interface/Makefile.in +=================================================================== +--- gcc-4_7-branch/gcc/ada/gcc-interface/Makefile.in (revision 194579) ++++ gcc-4_7-branch/gcc/ada/gcc-interface/Makefile.in (revision 194580) +@@ -1866,7 +1866,7 @@ + LIBRARY_VERSION := $(LIB_VERSION) + endif + +-ifeq ($(strip $(filter-out arm% linux-gnueabi,$(arch) $(osys)-$(word 4,$(targ)))),) ++ifeq ($(strip $(filter-out arm%-linux,$(arch)-$(osys)) $(if $(findstring eabi,$(word 4,$(targ))),,$(word 4,$(targ)))),) + LIBGNAT_TARGET_PAIRS = \ + a-intnam.ads Date: Fri, 29 Mar 2013 18:35:50 +0100 Subject: [PATCH 073/167] ncmpcpp: set platforms --- pkgs/applications/audio/ncmpcpp/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/audio/ncmpcpp/default.nix b/pkgs/applications/audio/ncmpcpp/default.nix index a7fca8cabf1b..b6ac7f26d601 100644 --- a/pkgs/applications/audio/ncmpcpp/default.nix +++ b/pkgs/applications/audio/ncmpcpp/default.nix @@ -16,6 +16,7 @@ stdenv.mkDerivation rec { homepage = http://unkart.ovh.org/ncmpcpp/; license = "GPLv2+"; maintainers = [ stdenv.lib.maintainers.mornfall ]; + platforms = stdenv.lib.platforms.all; }; } From 9a31d2ef0d09291c71e12a23f2fe10dc85c950b6 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 19:02:51 +0100 Subject: [PATCH 074/167] aircrack-ng: bump --- pkgs/tools/networking/aircrack-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/aircrack-ng/default.nix b/pkgs/tools/networking/aircrack-ng/default.nix index c616ba9ee160..be4bfb20dfa0 100644 --- a/pkgs/tools/networking/aircrack-ng/default.nix +++ b/pkgs/tools/networking/aircrack-ng/default.nix @@ -1,7 +1,7 @@ {stdenv, fetchsvn, libpcap, openssl, zlib, wirelesstools}: let - rev = "2212"; + rev = "2268"; in stdenv.mkDerivation rec { name = "aircrack-ng-1.1-${rev}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchsvn { url = "http://trac.aircrack-ng.org/svn/trunk"; inherit rev; - sha256 = "80e567b4e4bc501721cd58f7efadcd13fc3b235a41486174826694a6e701ce09"; + sha256 = "0zjkk3s65v9w92fhzhyknhjcsx6whcm0an0qcawn2ggs0n0ss9ij"; }; buildInputs = [libpcap openssl zlib]; From 694ecd473742e15da227c3cd86c926855cf99f79 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 19:04:00 +0100 Subject: [PATCH 075/167] libtirpc: update to version 0.2.3 --- pkgs/development/libraries/ti-rpc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ti-rpc/default.nix b/pkgs/development/libraries/ti-rpc/default.nix index e3fd2bc34ff4..431b87739783 100644 --- a/pkgs/development/libraries/ti-rpc/default.nix +++ b/pkgs/development/libraries/ti-rpc/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv }: stdenv.mkDerivation rec { - name = "libtirpc-0.2.2"; + name = "libtirpc-0.2.3"; src = fetchurl { url = "mirror://sourceforge/libtirpc/${name}.tar.bz2"; - sha256 = "f05eb17c85d62423858b8f74512cfe66a9ae1cedf93f03c2a0a32e04f0a33705"; + sha256 = "0g4jd8da0kfxz5lv1x5v7f3mfxw53cck8g2zz4llrjmlj42flaag"; }; # http://www.sourcemage.org/projects/grimoire/repository/revisions/d6344b6a3a94b88ed67925a474de5930803acfbf From bd1c8a50489b72f7c55cacb50bed29e2de5be6c8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 29 Mar 2013 20:08:34 +0100 Subject: [PATCH 076/167] prettytable: Update to 0.7.1 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 11890bf0b3c4..993dbd3291ba 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2776,11 +2776,11 @@ pythonPackages = python.modules // rec { prettytable = buildPythonPackage rec { - name = "prettytable-0.5"; + name = "prettytable-0.7.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.gz"; - md5 = "13a6930d775395f393afd86948afa4fa"; + url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.bz2"; + sha1 = "ad346a18d92c1d95f2295397c7a8a4f489e48851"; }; meta = { From 4576896ef55e57e914f97a6599ed4b74e4bd4641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 21:34:53 +0100 Subject: [PATCH 077/167] pthread-win32: use `mingw_headers3', for consistency with `gccCrossStageFinal' --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f94765a2cbcb..c9037e91b18b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6329,7 +6329,7 @@ let }; pthreads = callPackage ../os-specific/windows/pthread-w32 { - mingw_headers = mingw_headers2; + mingw_headers = mingw_headers3; }; wxMSW = callPackage ../os-specific/windows/wxMSW-2.8 { }; From ea304762fee1f13ad220c784299261d048761929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 21:35:11 +0100 Subject: [PATCH 078/167] pthread-win32: don't propagate `mingw_headers' --- pkgs/os-specific/windows/pthread-w32/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/os-specific/windows/pthread-w32/default.nix b/pkgs/os-specific/windows/pthread-w32/default.nix index 39afd119643b..cd417eb9ad09 100644 --- a/pkgs/os-specific/windows/pthread-w32/default.nix +++ b/pkgs/os-specific/windows/pthread-w32/default.nix @@ -28,6 +28,14 @@ stdenv.mkDerivation { cp -v pthread.h semaphore.h sched.h "$out/include" ''; + postFixup = + # By default `mingw_headers' is propagated. Prevent that, because + # otherwise MinGW headers appear twice in `-I', and thus the + # "#include_next " in MinGW's picks up itself instead + # of picking up GCC's (hence, FLT_RADIX is left undefined, for instance.) + '' rm -f "$out/nix-support/propagated-build-inputs" + ''; + meta = { description = "POSIX threads for Woe32"; From e80ec28da17783cfe016f10f90ae53ca14907c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 21:46:00 +0100 Subject: [PATCH 079/167] libiconv: disable stripping when cross-compiling --- pkgs/development/libraries/libiconv/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/libiconv/default.nix b/pkgs/development/libraries/libiconv/default.nix index bffc72e005cb..c13af5354299 100644 --- a/pkgs/development/libraries/libiconv/default.nix +++ b/pkgs/development/libraries/libiconv/default.nix @@ -14,6 +14,12 @@ stdenv.mkDerivation rec { # will actually use. configureFlags = stdenv.lib.optional stdenv.isCygwin [ "--enable-static" ]; + crossAttrs = { + # Disable stripping to avoid "libiconv.a: Archive has no index" (MinGW). + dontStrip = true; + dontCrossStrip = true; + }; + meta = { description = "GNU libiconv, an iconv(3) implementation"; From 64e4027d91fa0b21ed08a338fd258d2d2858f677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 21:49:31 +0100 Subject: [PATCH 080/167] Making omxplayer build with gcc47 --- pkgs/top-level/all-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c9037e91b18b..01793ade525d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7547,6 +7547,10 @@ let ogmtools = callPackage ../applications/video/ogmtools { }; + omxplayer = callPackage ../applications/video/omxplayer { + stdenv = overrideGCC stdenv gcc47; + }; + oneteam = callPackage ../applications/networking/instant-messengers/oneteam {}; openbox = callPackage ../applications/window-managers/openbox { }; From a76a9f783e53591372698f5bd09cb4ca3dc18699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 21:53:44 +0100 Subject: [PATCH 081/167] Adding omxplayer, for the raspberrypi. --- pkgs/applications/video/omxplayer/default.nix | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 pkgs/applications/video/omxplayer/default.nix diff --git a/pkgs/applications/video/omxplayer/default.nix b/pkgs/applications/video/omxplayer/default.nix new file mode 100644 index 000000000000..b3880067cac4 --- /dev/null +++ b/pkgs/applications/video/omxplayer/default.nix @@ -0,0 +1,84 @@ +{ stdenv, fetchurl, raspberrypifw, pcre, boostHeaders, freetype, zlib }: + +let + ffmpeg = stdenv.mkDerivation rec { + name = "ffmpeg-1.1.3"; + + src = fetchurl { + url = "http://www.ffmpeg.org/releases/${name}.tar.bz2"; + sha256 = "03s1zsprz5p6gjgwwqcf7b6cvzwwid6l8k7bamx9i0f1iwkgdm0j"; + }; + + configureFlags = [ + "--arch=arm" + "--cpu=arm1176jzf-s" + "--disable-muxers" + "--enable-muxer=spdif" + "--enable-muxer=adts" + "--disable-encoders" + "--enable-encoder=ac3" + "--enable-encoder=aac" + "--disable-decoder=mpeg_xvmc" + "--disable-devices" + "--disable-ffprobe" + "--disable-ffplay" + "--disable-ffserver" + "--disable-ffmpeg" + "--enable-shared" + "--disable-doc" + "--enable-postproc" + "--enable-gpl" + "--enable-protocol=http" + "--enable-pthreads" + "--disable-runtime-cpudetect" + "--enable-pic" + "--disable-armv5te" + "--disable-neon" + "--enable-armv6t2" + "--enable-armv6" + "--enable-hardcoded-tables" + "--disable-runtime-cpudetect" + "--disable-debug" + ]; + + enableParallelBuilding = true; + + crossAttrs = { + dontSetConfigureCross = true; + configureFlags = configureFlags ++ [ + "--cross-prefix=${stdenv.cross.config}-" + "--enable-cross-compile" + "--target_os=linux" + "--arch=${stdenv.cross.arch}" + ]; + }; + + meta = { + homepage = http://www.ffmpeg.org/; + description = "A complete, cross-platform solution to record, convert and stream audio and video"; + }; + }; +in +stdenv.mkDerivation rec { + name = "omxplayer-20130328-fbee325dc2"; + src = fetchurl { + url = https://github.com/huceke/omxplayer/tarball/fbee325dc2; + name = "${name}.tar.gz"; + sha256 = "0fkvv8il7ffqxki2gp8cxa5shh6sz9jsy5vv3f4025g4gss6afkg"; + }; + patchPhase = '' + sed -i 1d Makefile + export INCLUDES="-I${raspberrypifw}/include/interface/vcos/pthreads -I${raspberrypifw}/include/interface/vmcs_host/linux/" + ''; + installPhase = '' + ensureDir $out/bin + cp omxplayer.bin $out/bin + ''; + buildInputs = [ raspberrypifw ffmpeg pcre boostHeaders freetype zlib ]; + + meta = { + homepage = https://github.com/huceke/omxplayer; + description = "Commandline OMX player for the Raspberry Pi"; + license = "GPLv2+"; + }; +} From c7307122bf76b6c69fe3249080b590d39245827c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 21:56:01 +0100 Subject: [PATCH 082/167] gcc47: Making the arm patch only for arm. I don't know how, but it seems to break mips (noticed by ludo): http://hydra.nixos.org/build/4530024 --- pkgs/development/compilers/gcc/4.7/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcc/4.7/default.nix b/pkgs/development/compilers/gcc/4.7/default.nix index 3925ce1f7fa5..92411e6687e2 100644 --- a/pkgs/development/compilers/gcc/4.7/default.nix +++ b/pkgs/development/compilers/gcc/4.7/default.nix @@ -54,7 +54,8 @@ let version = "4.7.2"; # Whether building a cross-compiler for GNU/Hurd. crossGNU = cross != null && cross.config == "i586-pc-gnu"; - patches = [ ./arm-eabi.patch ] + patches = [] + ++ optional stdenv.isArm [ ./arm-eabi.patch ] ++ optional (cross != null) ./libstdc++-target.patch # ++ optional noSysDirs ./no-sys-dirs.patch # The GNAT Makefiles did not pay attention to CFLAGS_FOR_TARGET for its From 4d8cd0aa241c0949edf3b574b6509732249ed76a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 22:04:25 +0100 Subject: [PATCH 083/167] glibc: hurd: Use the old `rpcgen-path.patch'. --- pkgs/development/libraries/glibc/2.17/common.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/glibc/2.17/common.nix b/pkgs/development/libraries/glibc/2.17/common.nix index fb4083066de5..9c1a43a97d7c 100644 --- a/pkgs/development/libraries/glibc/2.17/common.nix +++ b/pkgs/development/libraries/glibc/2.17/common.nix @@ -32,14 +32,17 @@ stdenv.mkDerivation ({ enableParallelBuilding = true; patches = - [ /* Have rpcgen(1) look for cpp(1) in $PATH. */ - ./rpcgen-path.patch + [ /* Have rpcgen(1) look for cpp(1) in $PATH. + On GNU/Hurd, use the old version of the patch since the new one + doesn't apply. */ + (if hurdHeaders != null + then ../2.13/rpcgen-path.patch + else ./rpcgen-path.patch) /* Allow NixOS and Nix to handle the locale-archive. */ ./nix-locale-archive.patch - /* Don't use /etc/ld.so.cache, for non-NixOS systems. Currently - disabled on GNU/Hurd, which uses a more recent libc snapshot. */ + /* Don't use /etc/ld.so.cache, for non-NixOS systems. */ ./dont-use-system-ld-so-cache.patch /* Without this patch many KDE binaries crash. */ From 9c92db9e52ee901ef9e15a9f687ba28b48867798 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 23:55:13 +0100 Subject: [PATCH 084/167] haskell-hackage-db: update to version 1.5 --- pkgs/development/libraries/haskell/hackage-db/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/hackage-db/default.nix b/pkgs/development/libraries/haskell/hackage-db/default.nix index 82175abb17e1..f3d029a5ea72 100644 --- a/pkgs/development/libraries/haskell/hackage-db/default.nix +++ b/pkgs/development/libraries/haskell/hackage-db/default.nix @@ -1,10 +1,10 @@ -{ cabal, Cabal, filepath, tar }: +{ cabal, Cabal, filepath, tar, utf8String }: cabal.mkDerivation (self: { pname = "hackage-db"; - version = "1.4"; - sha256 = "12z1ak21xc9v373j956gz8l4ryj0582lgbl9ykp8q46n9b8sxfph"; - buildDepends = [ Cabal filepath tar ]; + version = "1.5"; + sha256 = "1m7f6vwgjzibk8rd14y6m62xv5969ns94a57sansi9d83q6rj9iv"; + buildDepends = [ Cabal filepath tar utf8String ]; meta = { homepage = "http://github.com/peti/hackage-db"; description = "provide access to the Hackage database via Data.Map"; From 6692fbd0aea90f736f6cbe77d7bb636c7d73786c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 30 Mar 2013 00:12:36 +0100 Subject: [PATCH 085/167] haskell-defaults.nix: remove useless for cabal2nix on GHC 6.10.4 We cannot build 'tar' on that platform, which is a dependency of cabal2nix. --- pkgs/top-level/haskell-defaults.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/haskell-defaults.nix b/pkgs/top-level/haskell-defaults.nix index e7e206e22666..aa71d75f12e3 100644 --- a/pkgs/top-level/haskell-defaults.nix +++ b/pkgs/top-level/haskell-defaults.nix @@ -111,7 +111,6 @@ monadPar = self.monadPar_0_1_0_3; # deviating from Haskell platform here, to make some packages (notably statistics) compile jailbreakCabal = self.jailbreakCabal.override { Cabal = self.disableTest self.Cabal_1_14_0; }; - cabal2nix = self.cabal2nix.override { Cabal = self.Cabal_1_16_0_3; hackageDb = self.hackageDb.override { Cabal = self.Cabal_1_16_0_3; }; }; }; # Abstraction for Haskell packages collections From 83afbf45caa4f6f06556a867b3e48218fb9ea2e1 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sat, 30 Mar 2013 11:52:44 +0100 Subject: [PATCH 086/167] Add xf86videodummy and xf86inputvoid to xorg overrides (pixman fix) --- pkgs/servers/x11/xorg/overrides.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index cba6a6d0cf4b..e9c310b84f17 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -153,6 +153,11 @@ in installFlags = "sdkdir=\${out}/include/xorg configdir=\${out}/include/xorg"; }; + xf86inputvoid = attrs: attrs // { + NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1"; + buildInputs = attrs.buildInputs ++ [xorg.pixman]; + }; + xf86videointel = attrs: attrs // { buildInputs = attrs.buildInputs ++ [xorg.glproto args.mesa]; }; @@ -172,6 +177,11 @@ in buildInputs = attrs.buildInputs ++ [xorg.pixman]; }; + xf86videodummy = attrs: attrs // { + NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1"; + buildInputs = attrs.buildInputs ++ [xorg.pixman]; + }; + xf86videofbdev = attrs: attrs // { NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1"; buildInputs = attrs.buildInputs ++ [xorg.pixman]; From 06425fca373a4091ba1a93ce6513604a8dc3624a Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Fri, 29 Mar 2013 02:30:18 +0100 Subject: [PATCH 087/167] Upgrading xpra to 0.8.8 --- pkgs/tools/X11/xpra/default.nix | 60 +++++++++++++++------------------ pkgs/top-level/all-packages.nix | 4 +-- 2 files changed, 29 insertions(+), 35 deletions(-) diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index 929332275fc1..8427386fe860 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -1,44 +1,40 @@ -{ stdenv, fetchurl, pkgconfig, python, cython -, pygtk, pygobject, pycairo, notify, xlibs, gtk -, ffmpeg, x264, libvpx, makeWrapper}: +{ stdenv, fetchurl, buildPythonPackage +, python, cython, pkgconfig +, xorg, gtk, glib, pango, cairo, gdk_pixbuf, pygtk, atk, pygobject, pycairo +, ffmpeg_1_1, x264, libvpx, pil, libwebp }: -stdenv.mkDerivation rec { - name = "xpra-0.3.2"; +buildPythonPackage rec { + name = "xpra-0.8.8"; src = fetchurl { - url = http://xpra.org/src/xpra-0.3.2.tar.bz2; - sha256 = "1s1z6r0r78qvf59ci3vxammjz7lj5m64jyk0bfn7yxd5jl3sy41y"; + url = "http://xpra.org/src/${name}.tar.bz2"; + sha256 = "248bac50c78eccfbc7f728667f9d0ef26b101b288193fa286881cda452e63683"; }; - nativeBuildInputs = [ cython ]; + buildInputs = [ + python cython pkgconfig - buildInputs = [ - pkgconfig python pygtk gtk ffmpeg x264 libvpx makeWrapper - xlibs.inputproto xlibs.libXcomposite xlibs.libXdamage xlibs.libXtst + xorg.libX11 xorg.renderproto xorg.libXrender xorg.libXi xorg.inputproto xorg.kbproto + xorg.randrproto xorg.damageproto xorg.compositeproto xorg.xextproto xorg.recordproto + xorg.xproto xorg.fixesproto xorg.libXtst xorg.libXfixes xorg.libXcomposite xorg.libXdamage + xorg.libXrandr + + pango cairo gdk_pixbuf atk gtk glib + + ffmpeg_1_1 libvpx x264 libwebp ]; + propagatedBuildInputs = [ + pil pygtk pygobject + ]; + + # Even after i tried monkey patching, their tests just fail, looks like + # they don't have automated testing out of the box? http://xpra.org/trac/ticket/177 + doCheck = false; + buildPhase = '' - NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0)" - NIX_LDFLAGS="$NIX_LDFLAGS -lXcomposite -lXdamage" - ./do-build - ''; - - pythonPaths = [ - "$out/lib/python" - "$(toPythonPath ${pygtk})/gtk-2.0" - ] ++ map (i: "$(toPythonPath ${i})") [ - pygobject pycairo notify - ]; - - installPhase = '' - mkdir -p $out - cp -r install/* $out - - for i in $(cd $out/bin && ls); do - wrapProgram $out/bin/$i \ - --set PYTHONPATH "${stdenv.lib.concatStringsSep ":" pythonPaths}" \ - --prefix PATH : "${xlibs.xauth}/bin:${xlibs.xorgserver}/bin:${xlibs.xmodmap}/bin" - done + NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0) $(pkg-config --cflags xtst)" + python ./setup.py build --enable-Xdummy ''; meta = { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bfb1d8a4e827..7f0ffb9ebbcb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8066,9 +8066,7 @@ let libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix { }; - xpra = callPackage ../tools/X11/xpra { - inherit (pythonPackages) notify; - }; + xpra = callPackage ../tools/X11/xpra { }; xscreensaver = callPackage ../misc/screensavers/xscreensaver { inherit (gnome) libglade; From 55f14cc7f300bd9e72b903e8a70de0257d803fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 18:10:15 +0100 Subject: [PATCH 088/167] lame: update from 3.98.4 to 3.99.5 --- pkgs/applications/audio/lame/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/lame/default.nix b/pkgs/applications/audio/lame/default.nix index 46bbf10f357a..09b553a099c6 100644 --- a/pkgs/applications/audio/lame/default.nix +++ b/pkgs/applications/audio/lame/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl, nasm}: stdenv.mkDerivation rec { - name = "lame-3.98.4"; + name = "lame-3.99.5"; src = fetchurl { url = "mirror://sourceforge/lame/${name}.tar.gz"; - sha256 = "1j3jywv6ic2cy0x0q1a1h6rcl6xmcs5f58xawjdkl8hpcv3l8cdc"; + sha256 = "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14"; }; buildInputs = [ nasm ]; From 51229692ca23e4e94697ede1148483e9e6356ece Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sat, 30 Mar 2013 20:00:05 +0100 Subject: [PATCH 089/167] Add sha256 hash to winetricks. Signed-off-by: Moritz Ulrich --- pkgs/misc/emulators/wine/winetricks.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/misc/emulators/wine/winetricks.nix b/pkgs/misc/emulators/wine/winetricks.nix index 8a0901ddb803..71cc2767f698 100644 --- a/pkgs/misc/emulators/wine/winetricks.nix +++ b/pkgs/misc/emulators/wine/winetricks.nix @@ -7,6 +7,7 @@ stdenv.mkDerivation rec { src = fetchsvn { url = "http://winetricks.googlecode.com/svn/trunk"; inherit rev; + sha256 = "01v13qw4sxmfm09g9amqycnzy743gdrhvv23rjr9255dzlrj1s8f"; }; buildInputs = [ perl which ]; From c72ac21c55edbe4e7f8fb69a62dd747231e276e0 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Sat, 30 Mar 2013 20:04:31 +0100 Subject: [PATCH 090/167] springlobby: bump to 0.169 --- pkgs/games/spring/springlobby.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix index 4e06c31442a6..e6051a12a267 100644 --- a/pkgs/games/spring/springlobby.nix +++ b/pkgs/games/spring/springlobby.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar +{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar, libpng, libX11 , gettext, bash, gawk, boost}: stdenv.mkDerivation rec { name = "springlobby-${version}"; - version = "0.146"; + version = "0.169"; src = fetchurl { url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2"; - sha256 = "55899baf6732e48bfaa36d80974aa135c051d2cbb6fe92fbcffd80440639eedf"; + sha256 = "1wr8q2ha3wh718rr5rg7l6v404nf1rgkg4wkja77rfqy7r18zn7g"; }; - buildInputs = [ cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar boost]; + buildInputs = [ cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar boost libpng libX11 ]; prePatch = '' substituteInPlace tools/regen_config_header.sh --replace "#!/usr/bin/env bash" "#!${bash}/bin/bash" From d2cb352ad9888db896976569e5d7d5bc98c0d82d Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sat, 30 Mar 2013 20:09:39 +0100 Subject: [PATCH 091/167] leiningen: Update to 2.1.2 Signed-off-by: Moritz Ulrich --- .../tools/build-managers/leiningen/default.nix | 10 +++++----- .../leiningen/{lein_2.0.0.patch => lein_2.1.2.patch} | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename pkgs/development/tools/build-managers/leiningen/{lein_2.0.0.patch => lein_2.1.2.patch} (100%) diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix index 35c340ae0f95..f0b45ca680ba 100644 --- a/pkgs/development/tools/build-managers/leiningen/default.nix +++ b/pkgs/development/tools/build-managers/leiningen/default.nix @@ -2,20 +2,20 @@ stdenv.mkDerivation rec { pname = "leiningen"; - version = "2.0.0"; + version = "2.1.2"; name = "${pname}-${version}"; src = fetchurl { url = "https://raw.github.com/technomancy/leiningen/${version}/bin/lein-pkg"; - sha256 = "0malymlswxwgh8amkw37qjb8n34ylw3chgbdxgxkq34rkvhv60hb"; + sha256 = "10s4xpwrhd8wz3h2vj8ay4rf2hw8vzswfkr8ckckk3fhjcn130dy"; }; jarsrc = fetchurl { - url = "https://leiningen.s3.amazonaws.com/downloads/leiningen-2.0.0-standalone.jar"; - sha256 = "10jvk19mr5dcl5a9kzna9zslh77v3ixi8awhrhxi30dn1yj3r7ck"; + url = "https://leiningen.s3.amazonaws.com/downloads/${pname}-${version}-standalone.jar"; + sha256 = "08jq21zpsgwsmsz7lpfxidj2s3mv8i23fjwyl9qc6dngskkx45sa"; }; - patches = ./lein_2.0.0.patch; + patches = ./lein_2.1.2.patch; inherit rlwrap clojure; diff --git a/pkgs/development/tools/build-managers/leiningen/lein_2.0.0.patch b/pkgs/development/tools/build-managers/leiningen/lein_2.1.2.patch similarity index 100% rename from pkgs/development/tools/build-managers/leiningen/lein_2.0.0.patch rename to pkgs/development/tools/build-managers/leiningen/lein_2.1.2.patch From 05f2ea2d1253a5c1952805dfb8da94c04c3f6863 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sat, 30 Mar 2013 21:05:15 +0100 Subject: [PATCH 092/167] Add myself (the-kenny) to the maintainer list. Signed-off-by: Moritz Ulrich --- pkgs/development/tools/build-managers/leiningen/default.nix | 1 + pkgs/lib/maintainers.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix index f0b45ca680ba..bf1a275046ec 100644 --- a/pkgs/development/tools/build-managers/leiningen/default.nix +++ b/pkgs/development/tools/build-managers/leiningen/default.nix @@ -30,5 +30,6 @@ stdenv.mkDerivation rec { description = "Project automation for Clojure"; license = "EPL"; platforms = stdenv.lib.platforms.unix; + maintainer = with stdenv.lib.maintainers; [the-kenny]; }; } diff --git a/pkgs/lib/maintainers.nix b/pkgs/lib/maintainers.nix index a2e8b50c10ec..4c47ee85f474 100644 --- a/pkgs/lib/maintainers.nix +++ b/pkgs/lib/maintainers.nix @@ -26,6 +26,7 @@ ludo = "Ludovic Courtès "; marcweber = "Marc Weber "; mornfall = "Petr Ročkai "; + the-kenny = "Moritz Ulrich "; neznalek = "Vladimír Čunát "; orbitz = "Malcolm Matalka "; page = "Carles Pagès "; From c7cf2b16908778f7318297e051999d2a2ef79e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 20:01:05 +0100 Subject: [PATCH 093/167] Adding otpw (a one-time password system) --- pkgs/os-specific/linux/otpw/default.nix | 30 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/os-specific/linux/otpw/default.nix diff --git a/pkgs/os-specific/linux/otpw/default.nix b/pkgs/os-specific/linux/otpw/default.nix new file mode 100644 index 000000000000..97b601be24cf --- /dev/null +++ b/pkgs/os-specific/linux/otpw/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pam }: + +stdenv.mkDerivation { + name = "otpw-1.3"; + + src = fetchurl { + url = ttp://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; + sha256 = "1k3hc7xbxz6hkc55kvddi3cibafwf93ivn58sy1l888d3l5dwmrk"; + }; + + patchPhase = '' + sed -i 's/^CFLAGS.*/CFLAGS=-O2 -fPIC/' Makefile + ''; + + installPhase = '' + ensureDir $out/bin $out/lib/security $out/share/man/man{1,8} + cp pam_*.so $out/lib/security + cp otpw-gen $out/bin + cp *.1 $out/share/man/man1 + cp *.8 $out/share/man/man8 + ''; + + buildInputs = [ pam ]; + + meta = { + homepage = http://www.cl.cam.ac.uk/~mgk25/otpw.html; + description = "A one-time password login package"; + license = "GPLv2+"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 78e33bd5527f..d75c44d4827f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1317,6 +1317,8 @@ let ossec = callPackage ../tools/security/ossec {}; + otpw = callPackage ../os-specific/linux/otpw { }; + p7zip = callPackage ../tools/archivers/p7zip { }; pal = callPackage ../tools/misc/pal { }; From 690d5a346dea4b726a75092b0dd9f725c1c3ad1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 20:35:32 +0100 Subject: [PATCH 094/167] otpw: fixing typo in url --- pkgs/os-specific/linux/otpw/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/otpw/default.nix b/pkgs/os-specific/linux/otpw/default.nix index 97b601be24cf..423950be5392 100644 --- a/pkgs/os-specific/linux/otpw/default.nix +++ b/pkgs/os-specific/linux/otpw/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "otpw-1.3"; src = fetchurl { - url = ttp://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; + url = http://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; sha256 = "1k3hc7xbxz6hkc55kvddi3cibafwf93ivn58sy1l888d3l5dwmrk"; }; From c908d2130fe07c1b0a418513af1ed152a6934c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 20:45:38 +0100 Subject: [PATCH 095/167] Adding 'google-authenticator' --- .../linux/google-authenticator/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/os-specific/linux/google-authenticator/default.nix diff --git a/pkgs/os-specific/linux/google-authenticator/default.nix b/pkgs/os-specific/linux/google-authenticator/default.nix new file mode 100644 index 000000000000..d7acc6778b4d --- /dev/null +++ b/pkgs/os-specific/linux/google-authenticator/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pam }: + +stdenv.mkDerivation rec { + name = "google-authenticator-1.0"; + + src = fetchurl { + url = "https://google-authenticator.googlecode.com/files/libpam-${name}-source.tar.bz2"; + sha1 = "017b7d89989f1624e360abe02d6b27a6298d285d"; + }; + + buildInputs = [ pam ]; + + installPhase = '' + ensureDir $out/bin $out/lib/security + cp pam_google_authenticator.so $out/lib/security + cp google-authenticator $out/bin + ''; + + meta = { + homepage = https://code.google.com/p/google-authenticator/; + description = "Two-step verification, with pam module"; + license = "ASL2.0"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d75c44d4827f..14ab58f03bbe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -879,6 +879,8 @@ let gnuvd = callPackage ../tools/misc/gnuvd { }; + googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; + gource = callPackage ../applications/version-management/gource {}; gptfdisk = callPackage ../tools/system/gptfdisk { }; From 13d40ae54db8cf5f39c350d14e2a6a013a9ec34b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 21:05:29 +0100 Subject: [PATCH 096/167] otpw: fixing the entropy source (PATH variables) I don't know why it set some hardcoded PATH. --- pkgs/os-specific/linux/otpw/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/otpw/default.nix b/pkgs/os-specific/linux/otpw/default.nix index 423950be5392..fe5f938b75b3 100644 --- a/pkgs/os-specific/linux/otpw/default.nix +++ b/pkgs/os-specific/linux/otpw/default.nix @@ -1,15 +1,17 @@ { stdenv, fetchurl, pam }: -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "otpw-1.3"; src = fetchurl { - url = http://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; + url = "http://www.cl.cam.ac.uk/~mgk25/download/${name}.tar.gz"; sha256 = "1k3hc7xbxz6hkc55kvddi3cibafwf93ivn58sy1l888d3l5dwmrk"; }; patchPhase = '' sed -i 's/^CFLAGS.*/CFLAGS=-O2 -fPIC/' Makefile + sed -i -e 's,PATH=.*;,,' conf.h + sed -i -e '/ENTROPY_ENV/d' otpw-gen.c ''; installPhase = '' From fead3aed65a46e5d262d4303965eb2c27908f7dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 22:45:45 +0100 Subject: [PATCH 097/167] prayer: update to 1.3.5 --- pkgs/servers/prayer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/prayer/default.nix b/pkgs/servers/prayer/default.nix index f105920ab81e..8a23e480e1f7 100644 --- a/pkgs/servers/prayer/default.nix +++ b/pkgs/servers/prayer/default.nix @@ -5,11 +5,11 @@ let "-e 's/CCLIENT_SSL_ENABLE.*= false/CCLIENT_SSL_ENABLE=true/'"; in stdenv.mkDerivation rec { - name = "prayer-1.3.4"; + name = "prayer-1.3.5"; src = fetchurl { url = "ftp://ftp.csx.cam.ac.uk/pub/software/email/prayer/${name}.tar.gz"; - sha256 = "0a2nmrlwdq4n5019j3mw2xbbc61s7sssjih5ql6r5rvyrrr48szc"; + sha256 = "135fjbxjn385b6cjys6qhbwfw61mdcl2akkll4jfpdzfvhbxlyda"; }; buildInputs = [ openssl db4 zlib uwimap htmlTidy pam ]; From 2ba0d9d3ae9da72620a40d38935201ea3df949a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 18:12:06 +0100 Subject: [PATCH 098/167] fuloong linux: add CGROUPS and disable FTRACE FTRACE was making linux not load at all. And systemd wants cgroups. --- pkgs/top-level/platforms.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/platforms.nix b/pkgs/top-level/platforms.nix index b1406c615bd9..3c53be875e36 100644 --- a/pkgs/top-level/platforms.nix +++ b/pkgs/top-level/platforms.nix @@ -105,7 +105,7 @@ rec { FUSE_FS m - # nixos mounts some cgroup + # systemd uses cgroups CGROUPS y # Latencytop @@ -307,6 +307,12 @@ rec { kernelAutoModules = false; kernelExtraConfig = '' + MIGRATION n + COMPACTION n + + # nixos mounts some cgroup + CGROUPS y + BLK_DEV_RAM y BLK_DEV_INITRD y BLK_DEV_CRYPTOLOOP m @@ -360,6 +366,9 @@ rec { EXT3_FS y REISERFS_FS y MAGIC_SYSRQ y + + # The kernel doesn't boot at all, with FTRACE + FTRACE n ''; kernelTarget = "vmlinux"; uboot = null; From 6281042defb4a113f71e6a66dcce7ffc631a9e45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 31 Mar 2013 00:07:35 +0100 Subject: [PATCH 099/167] Adding oath-toolkit and xmlsec I added xmlsec to make it work with oath-toolkit (to build one extra tool there, that I don't need), but I couldn't make it work together. --- pkgs/development/libraries/xmlsec/default.nix | 24 +++++++++++++++++++ pkgs/tools/security/oath-toolkit/default.nix | 18 ++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 3 files changed, 46 insertions(+) create mode 100644 pkgs/development/libraries/xmlsec/default.nix create mode 100644 pkgs/tools/security/oath-toolkit/default.nix diff --git a/pkgs/development/libraries/xmlsec/default.nix b/pkgs/development/libraries/xmlsec/default.nix new file mode 100644 index 000000000000..afb23e4de354 --- /dev/null +++ b/pkgs/development/libraries/xmlsec/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool }: + +let + version = "1.2.19"; +in +stdenv.mkDerivation rec { + name = "xmlsec-${version}"; + + src = fetchurl { + url = "http://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz"; + sha256 = "1h5ar0h8n0l8isgic82w00cwfpw7i9wxw17kbdb6q3yvzb4zgj1g"; + }; + + buildInputs = [ libxml2 gnutls libxslt pkgconfig libgcrypt libtool ]; + + enableParallelBuilding = true; + + meta = { + homepage = http://www.aleksey.com/xmlsec; + description = "XML Security Library in C based on libxml2"; + license = "MIT"; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/security/oath-toolkit/default.nix b/pkgs/tools/security/oath-toolkit/default.nix new file mode 100644 index 000000000000..58786f1bd61e --- /dev/null +++ b/pkgs/tools/security/oath-toolkit/default.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchurl, pam }: + +stdenv.mkDerivation rec { + name = "oath-toolkit-2.0.2"; + + src = fetchurl { + url = "http://download.savannah.gnu.org/releases/oath-toolkit/${name}.tar.gz"; + sha256 = "0i2rf5j83kb8h3sd9lsm0a46zq805kzagvccc4rk7879lg1fnl99"; + }; + + buildInputs = [ pam ]; + + meta = { + homepage = http://www.nongnu.org/oath-toolkit/; + description = "Components for building one-time password authentication systems"; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 14ab58f03bbe..5e5b2fae1840 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1271,6 +1271,8 @@ let nzbget = callPackage ../tools/networking/nzbget { }; + oathToolkit = callPackage ../tools/security/oath-toolkit { }; + obex_data_server = callPackage ../tools/bluetooth/obex-data-server { }; obexd = callPackage ../tools/bluetooth/obexd { }; @@ -5242,6 +5244,8 @@ let jvm = gcj; xerces = xercesJava; }; + xmlsec = callPackage ../development/libraries/xmlsec { }; + zziplib = callPackage ../development/libraries/zziplib { }; From 86e5e52d993ad751d61243c2e8645f6f6950f3aa Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sun, 31 Mar 2013 08:52:20 +0200 Subject: [PATCH 100/167] plone: upgrading to 4.3rc1 --- pkgs/development/web/plone/default.nix | 14922 ++++++++--------------- pkgs/top-level/all-packages.nix | 5 +- 2 files changed, 5239 insertions(+), 9688 deletions(-) diff --git a/pkgs/development/web/plone/default.nix b/pkgs/development/web/plone/default.nix index b53254d29686..bd2b8063ea87 100644 --- a/pkgs/development/web/plone/default.nix +++ b/pkgs/development/web/plone/default.nix @@ -1,10151 +1,5701 @@ +# DO NOT EDIT THIS FILE! +# +# Nix expressions autogenerated with: +# bin/pypi2nix-nplone43rc1Packages-dPlone-dmailinglogger-dzc.recipe.egg-dplone.recipe.zope2instance-dPillow-isetuptools-eplone/43rc1.json-pplone/43rc1.txt-oplone/43rc1.nix -{ pkgs, python, buildPythonPackage }: +{ pkgs, python, pythonPackages }: -let plone42Packages = python.modules // rec { +let plone43rc1Packages = python.modules // rec { inherit python; + inherit (pythonPackages) setuptools buildPythonPackage; inherit (pkgs) fetchurl stdenv; - - - accesscontrol = buildPythonPackage rec { - name = "AccessControl-2.13.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/A/AccessControl/${name}.zip"; - md5 = "7e622d99fb17914b4708d26f245cb696"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - acquisition = buildPythonPackage rec { - name = "Acquisition-2.13.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/A/Acquisition/${name}.zip"; - md5 = "8c33160c157b50649e2b2b3224622579"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_kss = buildPythonPackage rec { - name = "archetypes.kss-1.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.kss/${name}.zip"; - md5 = "a8502140123b74f1b7ed4f36d3e56ff3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_querywidget = buildPythonPackage rec { - name = "archetypes.querywidget-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.querywidget/${name}.zip"; - md5 = "cbe134f2806191fd35066bbb7c85bfcc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_referencebrowserwidget = buildPythonPackage rec { - name = "archetypes.referencebrowserwidget-2.4.16"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.referencebrowserwidget/${name}.zip"; - md5 = "7dd3b0d4e188828701a291449c7495f4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_schemaextender = buildPythonPackage rec { - name = "archetypes.schemaextender-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.schemaextender/${name}.zip"; - md5 = "865aa5b4b6b26e3bb650d89ddfe77c87"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - argparse = buildPythonPackage rec { - name = "argparse-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/argparse/${name}.zip"; - md5 = "087399b73047fa5a6482037411ddc968"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - borg_localrole = buildPythonPackage rec { - name = "borg.localrole-3.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/b/borg.localrole/${name}.zip"; - md5 = "04082694dfda9ae5cda62747b8ac7ccf"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - buildout_dumppickedversions = buildPythonPackage rec { - name = "buildout.dumppickedversions-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/b/buildout.dumppickedversions/${name}.tar.gz"; - md5 = "e81cffff329aaaaf8dd0d1c6bd63c8b0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - clientform = buildPythonPackage rec { - name = "ClientForm-0.2.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/C/ClientForm/${name}.zip"; - md5 = "33826886848f89c67a5c8a30b931bd97"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_monkeypatcher = buildPythonPackage rec { - name = "collective.monkeypatcher-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.monkeypatcher/${name}.zip"; - md5 = "4d4f20f9b8bb84b24afadc4f56f6dc2c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_recipe_omelette = buildPythonPackage rec { - name = "collective.recipe.omelette-0.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.recipe.omelette/${name}.zip"; - md5 = "088bcf60754bead215573ce114207939"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_testcaselayer = buildPythonPackage rec { - name = "collective.testcaselayer-1.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.testcaselayer/${name}.zip"; - md5 = "fd8387d6b6ebd8645ec92f5f1e512450"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_xmltestreport = buildPythonPackage rec { - name = "collective.xmltestreport-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.xmltestreport/${name}.tar.gz"; - md5 = "f247d47a019b44694660d785f70c05b3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_z3cform_datagridfield = buildPythonPackage rec { - name = "collective.z3cform.datagridfield-0.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.z3cform.datagridfield/${name}.zip"; - md5 = "c9210337b91305314864da42c12d04c2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_z3cform_datagridfield_demo = buildPythonPackage rec { - name = "collective.z3cform.datagridfield-demo-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.z3cform.datagridfield/collective.z3cform.datagridfield-0.11.zip"; - md5 = "c9210337b91305314864da42c12d04c2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_z3cform_datetimewidget = buildPythonPackage rec { - name = "collective.z3cform.datetimewidget-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.z3cform.datetimewidget/${name}.zip"; - md5 = "89daf27c7f0f235f9c001f0ee50d76e5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - coverage = buildPythonPackage rec { - name = "coverage-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/coverage/${name}.tar.gz"; - md5 = "28c43d41b13f8987ea14d7b1d4a4e3ec"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - datetime = buildPythonPackage rec { - name = "DateTime-2.12.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/D/DateTime/${name}.zip"; - md5 = "72a8bcf80b52211ae7fdfe36c693d70c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - diazo = buildPythonPackage rec { - name = "diazo-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/d/diazo/${name}.zip"; - md5 = "d3c2b017af521db4c86fb360c86e0bc8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - documenttemplate = buildPythonPackage rec { - name = "DocumentTemplate-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/D/DocumentTemplate/${name}.zip"; - md5 = "07bb086c77c1dfe94125ad2efbba94b7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - docutils = buildPythonPackage rec { - name = "docutils-0.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/d/docutils/${name}.1.tar.gz"; - md5 = "b0d5cd5298fedf9c62f5fd364a274d56"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - elementtree = buildPythonPackage rec { - name = "elementtree-1.2.7-20070827-preview"; - - src = fetchurl { - url = "http://effbot.org/media/downloads/elementtree-1.2.7-20070827-preview.zip"; - md5 = "30e2fe5edd143f347e03a8baf5d60f8a"; - }; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - experimental_cssselect = buildPythonPackage rec { - name = "experimental.cssselect-0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/e/experimental.cssselect/${name}.zip"; - md5 = "3fecdcf1fbc3ea6025e115a56a262957"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - extensionclass = buildPythonPackage rec { - name = "ExtensionClass-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/E/ExtensionClass/${name}.zip"; - md5 = "0236e6d7da9e8b87b9ba45f1b8f930b8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - feedparser = buildPythonPackage rec { - name = "feedparser-5.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/feedparser/${name}.tar.bz2"; - md5 = "702835de74bd4a578524f311e62c2877"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_customerize = buildPythonPackage rec { - name = "five.customerize-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.customerize/${name}.zip"; - md5 = "32f597c2fa961f7dcc84b23e655d928e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_formlib = buildPythonPackage rec { - name = "five.formlib-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.formlib/${name}.zip"; - md5 = "09fcecbb7e0ed4a31a4f19787c1a78b4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_globalrequest = buildPythonPackage rec { - name = "five.globalrequest-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.globalrequest/${name}.tar.gz"; - md5 = "87f8996bd21d4aa156aa26e7d21b8744"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_grok = buildPythonPackage rec { - name = "five.grok-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.grok/${name}.zip"; - md5 = "b99c3017f3a487dc2a8b7b0b310ee8cf"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_intid = buildPythonPackage rec { - name = "five.intid-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.intid/${name}.zip"; - md5 = "60c6726c07a1c1bf557aeec0ddcee369"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_localsitemanager = buildPythonPackage rec { - name = "five.localsitemanager-2.0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.localsitemanager/${name}.zip"; - md5 = "5e3a658e6068832bd802018ebc83f2d4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_annotation = buildPythonPackage rec { - name = "grokcore.annotation-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.annotation/${name}.tar.gz"; - md5 = "a28ccb4b7c86198923d9cce40953314f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_component = buildPythonPackage rec { - name = "grokcore.component-1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.component/${name}.tar.gz"; - md5 = "24b05b6b132787dbca18acd244c23ffb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_formlib = buildPythonPackage rec { - name = "grokcore.formlib-1.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.formlib/${name}.tar.gz"; - md5 = "dced4aba77053ed78a358a1f5e85d9c4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_security = buildPythonPackage rec { - name = "grokcore.security-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.security/${name}.tar.gz"; - md5 = "1e668b7e423814fa069c69f2a4014876"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_site = buildPythonPackage rec { - name = "grokcore.site-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.site/${name}.tar.gz"; - md5 = "bd16753e6d4f1c0ff38266d2ae79633d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_view = buildPythonPackage rec { - name = "grokcore.view-1.13.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.view/${name}.tar.gz"; - md5 = "304363398aa752d5e1479bab39b93e4e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_viewlet = buildPythonPackage rec { - name = "grokcore.viewlet-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.viewlet/${name}.tar.gz"; - md5 = "5e53b3c77941f9ad0ff2aeb7c1b6dd7d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - initgroups = buildPythonPackage rec { - name = "initgroups-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/i/initgroups/${name}.zip"; - md5 = "38e842dcab8445f65e701fec75213acd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - jinja2 = buildPythonPackage rec { - name = "Jinja2-2.5.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/J/Jinja2/${name}.tar.gz"; - md5 = "83b20c1eeb31f49d8e6392efae91b7d5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - kss_core = buildPythonPackage rec { - name = "kss.core-1.6.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/k/kss.core/${name}.zip"; - md5 = "87e66e78c3bbd7af3ecce5b2fef935ae"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mailinglogger = buildPythonPackage rec { - name = "mailinglogger-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mailinglogger/${name}.tar.gz"; - md5 = "f865f0df6059ce23062b7457d01dbac5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - manuel = buildPythonPackage rec { - name = "manuel-1.1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/manuel/${name}.tar.gz"; - md5 = "8cd560cf6e8720ecb129c4e5be605fbb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - markdown = buildPythonPackage rec { - name = "Markdown-2.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/M/Markdown/${name}.zip"; - md5 = "122418893e21e91109edbf6e082f830d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - martian = buildPythonPackage rec { - name = "martian-0.11.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/martian/${name}.tar.gz"; - md5 = "865646fcd9dd31613204d5f4c2db943b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mechanize = buildPythonPackage rec { - name = "mechanize-0.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mechanize/${name}.zip"; - md5 = "a497ad4e875f7506ffcf8ad3ada4c2fc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - missing = buildPythonPackage rec { - name = "Missing-2.13.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/M/Missing/${name}.zip"; - md5 = "9823cff54444cbbcaef8fc45d8e42572"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mocker = buildPythonPackage rec { - name = "mocker-1.1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mocker/${name}.tar.bz2"; - md5 = "0bd9f83268e16aef2130fa89e2a4839f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mr_developer = buildPythonPackage rec { - name = "mr.developer-1.21"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mr.developer/${name}.zip"; - md5 = "5f832f1709714b09cd7490603afd2365"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - multimapping = buildPythonPackage rec { - name = "MultiMapping-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/M/MultiMapping/${name}.zip"; - md5 = "d69c5904c105b9f2f085d4103e0f0586"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - nose = buildPythonPackage rec { - name = "nose-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/n/nose/${name}.tar.gz"; - md5 = "144f237b615e23f21f6a50b2183aa817"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - nt_svcutils = buildPythonPackage rec { - name = "nt-svcutils-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/n/nose/nose-1.1.2.tar.gz"; - md5 = "144f237b615e23f21f6a50b2183aa817"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - ordereddict = buildPythonPackage rec { - name = "ordereddict-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/o/ordereddict/${name}.tar.gz"; - md5 = "a0ed854ee442051b249bfad0f638bbec"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - paste = buildPythonPackage rec { - name = "Paste-1.7.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Paste/${name}.tar.gz"; - md5 = "7ea5fabed7dca48eb46dc613c4b6c4ed"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pastedeploy = buildPythonPackage rec { - name = "PasteDeploy-1.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/PasteDeploy/${name}.tar.gz"; - md5 = "eb4b3e2543d54401249c2cbd9f2d014f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pastescript = buildPythonPackage rec { - name = "PasteScript-1.7.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/PasteScript/${name}.tar.gz"; - md5 = "4c72d78dcb6bb993f30536842c16af4d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ paste pastedeploy ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - persistence = buildPythonPackage rec { - name = "Persistence-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Persistence/${name}.zip"; - md5 = "92693648ccdc59c8fc71f7f06b1d228c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pil = buildPythonPackage rec { - name = "PIL-1.1.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Persistence/Persistence-2.13.2.zip"; - md5 = "92693648ccdc59c8fc71f7f06b1d228c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone = buildPythonPackage rec { - name = "Plone-4.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Plone/${name}.zip"; - md5 = "688438bd541e7cb2ab650c8c59282b85"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_alterego = buildPythonPackage rec { - name = "plone.alterego-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.alterego/${name}.zip"; - md5 = "b7b6dbcbba00505d98d5aba83e016408"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_blob = buildPythonPackage rec { - name = "plone.app.blob-1.5.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.blob/${name}.zip"; - md5 = "8d6ba6f360b6bfd40f87914132339660"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_caching = buildPythonPackage rec { - name = "plone.app.caching-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.caching/${name}.zip"; - md5 = "83a52efeb7604d4c5b4afbc6c1365c6f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_collection = buildPythonPackage rec { - name = "plone.app.collection-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.collection/${name}.zip"; - md5 = "40c9035472e386fc9d0ec1b9a9a3d4f6"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_content = buildPythonPackage rec { - name = "plone.app.content-2.0.12"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.content/${name}.zip"; - md5 = "2f14a85fb66d73e0b699b839caaaad26"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_contentlisting = buildPythonPackage rec { - name = "plone.app.contentlisting-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.contentlisting/${name}.zip"; - md5 = "fa6eb45c4ffd0eb3817ad4813ca24916"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_contentmenu = buildPythonPackage rec { - name = "plone.app.contentmenu-2.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.contentmenu/${name}.zip"; - md5 = "b1c7e5a37c659ba30b3a077e149b1752"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_contentrules = buildPythonPackage rec { - name = "plone.app.contentrules-2.1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.contentrules/${name}.zip"; - md5 = "74d2fed9095a7c5f890b6f27de78dafc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_controlpanel = buildPythonPackage rec { - name = "plone.app.controlpanel-2.2.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.controlpanel/${name}.zip"; - md5 = "401c8880865f398c281953f5837108b9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_customerize = buildPythonPackage rec { - name = "plone.app.customerize-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.customerize/${name}.zip"; - md5 = "6a3802c4e8fbd955597adc6a8298febf"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_dexterity = buildPythonPackage rec { - name = "plone.app.dexterity-1.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.dexterity/${name}.zip"; - md5 = "25ccd382f9e08cfdfe4a9b7e455030bc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_discussion = buildPythonPackage rec { - name = "plone.app.discussion-2.1.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.discussion/${name}.zip"; - md5 = "b0cb1fbdf8a7a238cf5a58fb10c24731"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_folder = buildPythonPackage rec { - name = "plone.app.folder-1.0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.folder/${name}.zip"; - md5 = "8ea860daddb4c93c0b7f2b5f7106fef0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_form = buildPythonPackage rec { - name = "plone.app.form-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.form/${name}.zip"; - md5 = "8017f8f782d992825ed71d16b126c4e7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_i18n = buildPythonPackage rec { - name = "plone.app.i18n-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.i18n/${name}.zip"; - md5 = "a10026573463dfc1899bf4062cebdbf2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_imaging = buildPythonPackage rec { - name = "plone.app.imaging-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.imaging/${name}.zip"; - md5 = "8d494cd69b3f6be7fcb9e21c20277765"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_intid = buildPythonPackage rec { - name = "plone.app.intid-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.intid/${name}.tar.gz"; - md5 = "863077002bd272ff11c47de0f7f9db1a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_iterate = buildPythonPackage rec { - name = "plone.app.iterate-2.1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.iterate/${name}.zip"; - md5 = "db598cfc0986737145ddc7e6b70a1794"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_jquery = buildPythonPackage rec { - name = "plone.app.jquery-1.4.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.jquery/${name}.zip"; - md5 = "a12d56f3dfd2ba6840bf21a6bd860b90"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_jquerytools = buildPythonPackage rec { - name = "plone.app.jquerytools-1.3.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.jquerytools/${name}.zip"; - md5 = "326470a34e07aa98c40d75ec22484572"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_kss = buildPythonPackage rec { - name = "plone.app.kss-1.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.kss/${name}.zip"; - md5 = "97a35086fecfe25e55b65042eb35e796"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_layout = buildPythonPackage rec { - name = "plone.app.layout-2.2.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.layout/${name}.zip"; - md5 = "90ea408f5e01aeb01517d55eb6b6063a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_linkintegrity = buildPythonPackage rec { - name = "plone.app.linkintegrity-1.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.linkintegrity/${name}.zip"; - md5 = "41810cc85ca05921a329aac5bc4cf403"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_locales = buildPythonPackage rec { - name = "plone.app.locales-4.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.locales/${name}.zip"; - md5 = "baf48a0a5278a18fa1c2848d3470464f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_lockingbehavior = buildPythonPackage rec { - name = "plone.app.lockingbehavior-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.lockingbehavior/${name}.tar.gz"; - md5 = "a25745f1f40c6298da1b228ccd95ee27"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_openid = buildPythonPackage rec { - name = "plone.app.openid-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.openid/${name}.tar.gz"; - md5 = "ae0748f91cab0612a498926d405d8edd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - plone_app_portlets = buildPythonPackage rec { - name = "plone.app.portlets-2.3.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.portlets/${name}.zip"; - md5 = "534be67a7a17a71ca1e76f6f149ff2ac"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_querystring = buildPythonPackage rec { - name = "plone.app.querystring-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.querystring/${name}.zip"; - md5 = "b501910b23def9b58e8309d1e469eb6f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_redirector = buildPythonPackage rec { - name = "plone.app.redirector-1.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.redirector/${name}.zip"; - md5 = "7d441340a83b8ed72a03bc16148a5f21"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_referenceablebehavior = buildPythonPackage rec { - name = "plone.app.referenceablebehavior-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.referenceablebehavior/${name}.zip"; - md5 = "2359140966f753204d5091bb49fce85c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_registry = buildPythonPackage rec { - name = "plone.app.registry-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.registry/${name}.zip"; - md5 = "0fdbb01e9ff71108f1be262c39b41b81"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_relationfield = buildPythonPackage rec { - name = "plone.app.relationfield-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.relationfield/${name}.zip"; - md5 = "d19888741677cd457ac7f22dde97ded0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_search = buildPythonPackage rec { - name = "plone.app.search-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.search/${name}.zip"; - md5 = "bd5a1f4b5016a6d0a8697e7a9cc04833"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_stagingbehavior = buildPythonPackage rec { - name = "plone.app.stagingbehavior-0.1b4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.stagingbehavior/${name}.zip"; - md5 = "0f9589ec056c303ea0c81a804dd411eb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_testing = buildPythonPackage rec { - name = "plone.app.testing-4.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.testing/${name}.zip"; - md5 = "1a40df72c8beda9520b83dc449a97a3c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_textfield = buildPythonPackage rec { - name = "plone.app.textfield-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.textfield/${name}.zip"; - md5 = "f832887a40826d6f68c48b48f071fb9c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_theming = buildPythonPackage rec { - name = "plone.app.theming-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.theming/${name}.zip"; - md5 = "2da6d810e0d5f295dd0daa2b60731a1b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_upgrade = buildPythonPackage rec { - name = "plone.app.upgrade-1.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.upgrade/${name}.zip"; - md5 = "2798dd50863d8c25624400b988a0acdd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_users = buildPythonPackage rec { - name = "plone.app.users-1.1.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.users/${name}.zip"; - md5 = "97895d8dbdf885784be1afbf5b8b364c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_uuid = buildPythonPackage rec { - name = "plone.app.uuid-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.uuid/${name}.zip"; - md5 = "9ca8dcfb09a8a0d6bbee0f28073c3d3f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_versioningbehavior = buildPythonPackage rec { - name = "plone.app.versioningbehavior-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.versioningbehavior/${name}.zip"; - md5 = "6c153e3fa10b9ffea9742d0dad7b3b85"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_viewletmanager = buildPythonPackage rec { - name = "plone.app.viewletmanager-2.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.viewletmanager/${name}.zip"; - md5 = "1dbc51c7664ce3e6ca4dcca1b7b86082"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_vocabularies = buildPythonPackage rec { - name = "plone.app.vocabularies-2.1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.vocabularies/${name}.zip"; - md5 = "34d4eb9c95879811fec0875aa3235ed3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_workflow = buildPythonPackage rec { - name = "plone.app.workflow-2.0.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.workflow/${name}.zip"; - md5 = "350ea680ccf7eb9b1598927cafad4f38"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_z3cform = buildPythonPackage rec { - name = "plone.app.z3cform-0.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.z3cform/${name}.zip"; - md5 = "2e77f5e03d48a6fb2eb9994edb871917"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_autoform = buildPythonPackage rec { - name = "plone.autoform-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.autoform/${name}.zip"; - md5 = "4cb2935ba9cda3eb3ee801ad8cda7c60"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_behavior = buildPythonPackage rec { - name = "plone.behavior-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.behavior/${name}.zip"; - md5 = "a18feb9ec744b2a64028c366a8835d59"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_browserlayer = buildPythonPackage rec { - name = "plone.browserlayer-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.browserlayer/${name}.zip"; - md5 = "bce02f4907a4f29314090c525e5fc28e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_cachepurging = buildPythonPackage rec { - name = "plone.cachepurging-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.cachepurging/${name}.zip"; - md5 = "886814ac4deef0f1ed99a2eb60864264"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_caching = buildPythonPackage rec { - name = "plone.caching-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.caching/${name}.zip"; - md5 = "2c2e3b27d13b9101c92dfed222fde36c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_contentrules = buildPythonPackage rec { - name = "plone.contentrules-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.contentrules/${name}.zip"; - md5 = "a32370656c4fd58652fcd8a234db69c5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_dexterity = buildPythonPackage rec { - name = "plone.dexterity-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.dexterity/${name}.zip"; - md5 = "c8f495e368ada3a4566d99995d09e64c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_directives_dexterity = buildPythonPackage rec { - name = "plone.directives.dexterity-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.directives.dexterity/${name}.zip"; - md5 = "713b87644e3591b60b4a8ebd52987477"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_directives_form = buildPythonPackage rec { - name = "plone.directives.form-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.directives.form/${name}.zip"; - md5 = "e40a4b3fdde3768a137a450374934565"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_fieldsets = buildPythonPackage rec { - name = "plone.fieldsets-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.fieldsets/${name}.zip"; - md5 = "4158c8a1f784fcb5cecbd63deda7222f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_folder = buildPythonPackage rec { - name = "plone.folder-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.folder/${name}.zip"; - md5 = "1674ff18b7a9452d0c2063cf11c679b7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_formwidget_autocomplete = buildPythonPackage rec { - name = "plone.formwidget.autocomplete-1.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.formwidget.autocomplete/${name}.zip"; - md5 = "06b3bfed9ea51fe2e93827f539fc7f07"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_formwidget_contenttree = buildPythonPackage rec { - name = "plone.formwidget.contenttree-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.formwidget.contenttree/${name}.zip"; - md5 = "2ea222d53ca856de7c6df831707f4ac1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_formwidget_namedfile = buildPythonPackage rec { - name = "plone.formwidget.namedfile-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.formwidget.namedfile/${name}.zip"; - md5 = "9274db2f5d7b4d07748fabfd125e49d0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_i18n = buildPythonPackage rec { - name = "plone.i18n-2.0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.i18n/${name}.zip"; - md5 = "ef36aa9a294d507abb37787f9f7700bd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_indexer = buildPythonPackage rec { - name = "plone.indexer-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.indexer/${name}.zip"; - md5 = "538aeee1f9db78bc8c85ae1bcb0153ed"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_intelligenttext = buildPythonPackage rec { - name = "plone.intelligenttext-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.intelligenttext/${name}.zip"; - md5 = "51688fa0815b49e00334e3ef948328ba"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_keyring = buildPythonPackage rec { - name = "plone.keyring-2.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.keyring/${name}.zip"; - md5 = "f3970e9bddb2cc65e461a2c62879233f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_locking = buildPythonPackage rec { - name = "plone.locking-2.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.locking/${name}.zip"; - md5 = "a7f8b8db78f57272d351d7fe0d067eb2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_memoize = buildPythonPackage rec { - name = "plone.memoize-1.1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.memoize/${name}.zip"; - md5 = "d07cd14b976160e1f26a859e3370147e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_mocktestcase = buildPythonPackage rec { - name = "plone.mocktestcase-1.0b3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.mocktestcase/${name}.tar.gz"; - md5 = "6de66da6d610537d1f5c31e2ab0f36ee"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_namedfile = buildPythonPackage rec { - name = "plone.namedfile-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.namedfile/${name}.zip"; - md5 = "06f5bfa7079f889307ac5760e4cb4a7b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_openid = buildPythonPackage rec { - name = "plone.openid-2.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.openid/${name}.zip"; - md5 = "d4c36926a6dbefed035ed92c29329ce1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_outputfilters = buildPythonPackage rec { - name = "plone.outputfilters-1.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.outputfilters/${name}.zip"; - md5 = "a5ef28580f7fa7f2dc1768893995b0f7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_portlet_collection = buildPythonPackage rec { - name = "plone.portlet.collection-2.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.portlet.collection/${name}.zip"; - md5 = "5f0006dbb3e0b56870383dfdedc49228"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_portlet_static = buildPythonPackage rec { - name = "plone.portlet.static-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.portlet.static/${name}.zip"; - md5 = "ec0dc691b4191a41ff97779b117f9985"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_portlets = buildPythonPackage rec { - name = "plone.portlets-2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.portlets/${name}.zip"; - md5 = "12b9a33f787756a48617c2d2dd63c538"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_protect = buildPythonPackage rec { - name = "plone.protect-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.protect/${name}.zip"; - md5 = "74925ffb08782e72f9b1e850fa78fffa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_recipe_alltests = buildPythonPackage rec { - name = "plone.recipe.alltests-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.recipe.alltests/${name}.zip"; - md5 = "c4ba0f67a2fdd259bd0e7d946bd35674"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_recipe_zeoserver = buildPythonPackage rec { - name = "plone.recipe.zeoserver-1.2.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.recipe.zeoserver/${name}.zip"; - md5 = "cd58899a7d534fe2d0ef42990a07c499"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_registry = buildPythonPackage rec { - name = "plone.registry-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.registry/${name}.zip"; - md5 = "6be3d2ec7e2d170e29b8c0bc65049aff"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_reload = buildPythonPackage rec { - name = "plone.reload-2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.reload/${name}.zip"; - md5 = "49eab593c81b78a9b80d54786aa4ad72"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_resource = buildPythonPackage rec { - name = "plone.resource-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.resource/${name}.zip"; - md5 = "594d41e3acd913ae92f2e9ef96503b9f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_rfc822 = buildPythonPackage rec { - name = "plone.rfc822-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.rfc822/${name}.zip"; - md5 = "b5b79bb5a9181da624a7e88940a45424"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_scale = buildPythonPackage rec { - name = "plone.scale-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.scale/${name}.zip"; - md5 = "7c59522b4806ee24f5e0a5fa69c523a5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_schemaeditor = buildPythonPackage rec { - name = "plone.schemaeditor-1.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.schemaeditor/${name}.zip"; - md5 = "0b0fb4b20d9463b3fef82c2079a897d7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_session = buildPythonPackage rec { - name = "plone.session-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.session/${name}.zip"; - md5 = "2f9d3b88e813a47135af56a4da8bbde1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_stringinterp = buildPythonPackage rec { - name = "plone.stringinterp-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.stringinterp/${name}.zip"; - md5 = "81909716210c6ac3fd0ee87f45ea523d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_subrequest = buildPythonPackage rec { - name = "plone.subrequest-1.6.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.subrequest/${name}.zip"; - md5 = "cc12f68a22565415b10dbeef0020baa4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_supermodel = buildPythonPackage rec { - name = "plone.supermodel-1.1.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.supermodel/${name}.zip"; - md5 = "00b3d723bb1a48116fe3bf8754f17085"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_synchronize = buildPythonPackage rec { - name = "plone.synchronize-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.synchronize/${name}.zip"; - md5 = "d25e86ace8daa0816861296c3288c4fb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_testing = buildPythonPackage rec { - name = "plone.testing-4.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.testing/${name}.zip"; - md5 = "fa40f6d3e3e254409c486c1c2c3e8804"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_theme = buildPythonPackage rec { - name = "plone.theme-2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.theme/${name}.zip"; - md5 = "c592d0d095e9fc76cc81597cdf6d0c37"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_transformchain = buildPythonPackage rec { - name = "plone.transformchain-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.transformchain/${name}.zip"; - md5 = "f5fb7ca894249e3e666501c4fae52a6c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_uuid = buildPythonPackage rec { - name = "plone.uuid-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.uuid/${name}.zip"; - md5 = "183fe2911a7d6c9f6b3103855e98ad8a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_z3cform = buildPythonPackage rec { - name = "plone.z3cform-0.7.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.z3cform/${name}.zip"; - md5 = "da891365156a5d5824d4e504465886a2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plonetheme_classic = buildPythonPackage rec { - name = "plonetheme.classic-1.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plonetheme.classic/${name}.zip"; - md5 = "9dc15871937f9cdf94cdfdb9be77a221"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plonetheme_sunburst = buildPythonPackage rec { - name = "plonetheme.sunburst-1.2.8"; - + name = "plone.app.portlets-2.4.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plonetheme.sunburst/${name}.zip"; - md5 = "be02660c869e04ac8cf6ade3559f2516"; + url = "http://pypi.python.org/packages/source/p/plone.app.portlets/plone.app.portlets-2.4.2.zip"; + md5 = "712f14bb916d63e53fc06c76c02986dc"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_interface zope_traversing plone_app_form datetime zope_container zope_lifecycleevent zope_annotation five_customerize zope_i18nmessageid zope_publisher products_genericsetup plone_i18n feedparser zope_event zope_browser zope_contentprovider plone_memoize zope2 zope_schema acquisition transaction products_pluggableauthservice zope_site zope_component plone_app_vocabularies plone_portlets plone_app_i18n zope_configuration zope_formlib zodb3 five_formlib setuptools products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_archetypes = buildPythonPackage rec { - name = "Products.Archetypes-1.8.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.Archetypes/${name}.zip"; - md5 = "74be68879b27228c084a9be869132a98"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - products_atcontenttypes = buildPythonPackage rec { - name = "Products.ATContentTypes-2.1.11"; - + zope2 = buildPythonPackage rec { + name = "Zope2-2.13.19"; src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ATContentTypes/${name}.zip"; - md5 = "abfb5209ffa11dc2c1a15c488e75d89c"; + url = "http://pypi.python.org/packages/source/Z/Zope2/Zope2-2.13.19.zip"; + md5 = "26fee311aace7c12e406543ea91eb42a"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_testing zope_interface zope_traversing multimapping zope_size zope_contenttype zope_browserpage datetime zope_component zope_sendmail zope_lifecycleevent products_zctextindex products_standardcachemanagers persistence products_mimetools zope_i18nmessageid zope_publisher missing zope_viewlet zope_sequencesort zope_testbrowser docutils zope_event products_pythonscripts zope_browser zope_structuredtext zope_contentprovider zope_browsermenu zope_tal zope_exceptions products_mailhost products_btreefolder2 zopeundo zconfig record accesscontrol pytz products_ofsp zope_schema zexceptions zope_processlifetime acquisition extensionclass zope_proxy zope_site zope_container zope_pagetemplate zdaemon zope_browserresource zope_deferredimport initgroups zope_security zope_configuration zope_i18n products_zcatalog restrictedpython zodb3 documenttemplate setuptools zope_ptresource zlog tempstorage transaction zope_tales zope_location products_externalmethod ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_atreferencebrowserwidget = buildPythonPackage rec { - name = "Products.ATReferenceBrowserWidget-3.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ATReferenceBrowserWidget/${name}.zip"; - md5 = "157bdd32155c8353450c17c649aad042"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - products_btreefolder2 = buildPythonPackage rec { name = "Products.BTreeFolder2-2.13.3"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.BTreeFolder2/${name}.tar.gz"; + url = "http://pypi.python.org/packages/source/P/Products.BTreeFolder2/Products.BTreeFolder2-2.13.3.tar.gz"; md5 = "f57c85673036af7ccd34c3fa251f6bb2"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ accesscontrol zope_container zodb3 zope_event persistence setuptools zope_lifecycleevent acquisition ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - products_cmfactionicons = buildPythonPackage rec { - name = "Products.CMFActionIcons-2.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFActionIcons/${name}.tar.gz"; - md5 = "ab1dc62404ed11aea84dc0d782b2235e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfcalendar = buildPythonPackage rec { - name = "Products.CMFCalendar-2.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFCalendar/${name}.tar.gz"; - md5 = "49458e68dc3b6826ea9a3576ac014419"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfcore = buildPythonPackage rec { - name = "Products.CMFCore-2.2.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFCore/${name}.tar.gz"; - md5 = "9320a4023b8575097feacfd4a400e930"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfdefault = buildPythonPackage rec { - name = "Products.CMFDefault-2.2.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFDefault/${name}.tar.gz"; - md5 = "fe7d2d3906ee0e3b484e4a02401576ab"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfdifftool = buildPythonPackage rec { - name = "Products.CMFDiffTool-2.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFDiffTool/${name}.zip"; - md5 = "7b7ed9b8f7b4f438e92e299823f92c86"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfdynamicviewfti = buildPythonPackage rec { - name = "Products.CMFDynamicViewFTI-4.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFDynamicViewFTI/${name}.zip"; - md5 = "7d39d416b41b2d93954bc73d9d0e077f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfeditions = buildPythonPackage rec { - name = "Products.CMFEditions-2.2.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFEditions/${name}.zip"; - md5 = "7dc744b3b896c1b212d9ba37b1752b65"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfformcontroller = buildPythonPackage rec { - name = "Products.CMFFormController-3.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFFormController/${name}.zip"; - md5 = "6573df7dcb39e3b63ba22abe2acd639e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfplacefulworkflow = buildPythonPackage rec { - name = "Products.CMFPlacefulWorkflow-1.5.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFPlacefulWorkflow/${name}.zip"; - md5 = "9041e1f52eab5b348c0dfa85be438722"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfplone = buildPythonPackage rec { - name = "Products.CMFPlone-4.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFPlone/${name}.zip"; - md5 = "9c9663cb2b68c07e3d9a2fceaa97eaa1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfquickinstallertool = buildPythonPackage rec { - name = "Products.CMFQuickInstallerTool-3.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFQuickInstallerTool/${name}.tar.gz"; - md5 = "af34adb87ddf2b6da48eff8b70ca2989"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmftestcase = buildPythonPackage rec { - name = "Products.CMFTestCase-0.9.12"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFTestCase/${name}.zip"; - md5 = "fbfdfe7bdb2158419d9899b4ab8c43eb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmftopic = buildPythonPackage rec { - name = "Products.CMFTopic-2.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFTopic/${name}.tar.gz"; - md5 = "4abeeaafe6b6b1d2f2936bf5431cccba"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfuid = buildPythonPackage rec { - name = "Products.CMFUid-2.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFUid/${name}.tar.gz"; - md5 = "e20727959351dffbf0bac80613eee110"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_contentmigration = buildPythonPackage rec { - name = "Products.contentmigration-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.contentmigration/${name}.zip"; - md5 = "1cef33faec03e655b7c52c317db50ed2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_dcworkflow = buildPythonPackage rec { - name = "Products.DCWorkflow-2.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.DCWorkflow/${name}.tar.gz"; - md5 = "c90a16c4f3611015592ba8173a5f1863"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_extendedpathindex = buildPythonPackage rec { - name = "Products.ExtendedPathIndex-3.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ExtendedPathIndex/${name}.zip"; - md5 = "00c048a4b103200bdcbda61fa22c66df"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_externaleditor = buildPythonPackage rec { - name = "Products.ExternalEditor-1.1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ExternalEditor/${name}.zip"; - md5 = "475fea6e0b958c0c51cfdbfef2f4e623"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_externalmethod = buildPythonPackage rec { - name = "Products.ExternalMethod-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ExternalMethod/${name}.zip"; - md5 = "15ba953ef6cb632eb571977651252ea6"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_genericsetup = buildPythonPackage rec { - name = "Products.GenericSetup-1.7.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.GenericSetup/${name}.tar.gz"; - md5 = "c48967c81c880ed33ee16a14caab3b11"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_i18ntestcase = buildPythonPackage rec { - name = "Products.i18ntestcase-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.i18ntestcase/${name}.zip"; - md5 = "f72f72e573975f15adfabfeef34fd721"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_kupu = buildPythonPackage rec { - name = "Products.kupu-1.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.kupu/${name}.zip"; - md5 = "b884fcc7f510426974d8d3c4333da4f4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_mailhost = buildPythonPackage rec { - name = "Products.MailHost-2.13.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.MailHost/${name}.zip"; - md5 = "1102e523435d8bf78a15b9ddb57478e1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_marshall = buildPythonPackage rec { - name = "Products.Marshall-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.Marshall/${name}.zip"; - md5 = "bde4d7f75195c1ded8371554b04d2541"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_mimetools = buildPythonPackage rec { - name = "Products.MIMETools-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.MIMETools/${name}.zip"; - md5 = "ad5372fc1190599a19493db0864448ec"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_mimetypesregistry = buildPythonPackage rec { - name = "Products.MimetypesRegistry-2.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.MimetypesRegistry/${name}.zip"; - md5 = "898166bb2aaececc8238ad4ee4826793"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_ofsp = buildPythonPackage rec { - name = "Products.OFSP-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.OFSP/${name}.zip"; - md5 = "c76d40928753c2ee56db873304e65bd5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_passwordresettool = buildPythonPackage rec { - name = "Products.PasswordResetTool-2.0.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PasswordResetTool/${name}.zip"; - md5 = "8dfd65f06c3f4a4b0742d1b44b65f014"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_placelesstranslationservice = buildPythonPackage rec { - name = "Products.PlacelessTranslationService-2.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PlacelessTranslationService/${name}.zip"; - md5 = "a94635eb712563c5a002520713f5d6dc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_plonelanguagetool = buildPythonPackage rec { - name = "Products.PloneLanguageTool-3.2.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PloneLanguageTool/${name}.zip"; - md5 = "bd9eb6278bf76e8cbce99437ca362164"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_plonepas = buildPythonPackage rec { - name = "Products.PlonePAS-4.0.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PlonePAS/${name}.zip"; - md5 = "c19241b558c994ff280a2e1f50aa1f19"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_plonetestcase = buildPythonPackage rec { - name = "Products.PloneTestCase-0.9.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PloneTestCase/${name}.zip"; - md5 = "ddd5810937919ab5233ebd64893c8bae"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_pluggableauthservice = buildPythonPackage rec { - name = "Products.PluggableAuthService-1.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PluggableAuthService/${name}.tar.gz"; - md5 = "f78f16e46d016c2848bc84254fa66596"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_pluginregistry = buildPythonPackage rec { - name = "Products.PluginRegistry-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PluginRegistry/${name}.tar.gz"; - md5 = "5b166193ca1eb84dfb402051f779ebab"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_portaltransforms = buildPythonPackage rec { - name = "Products.PortalTransforms-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PortalTransforms/${name}.zip"; - md5 = "9f429f3c3b9e0019d0f6c9b7a8a9376e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - products_pythonscripts = buildPythonPackage rec { name = "Products.PythonScripts-2.13.2"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PythonScripts/${name}.zip"; + url = "http://pypi.python.org/packages/source/P/Products.PythonScripts/Products.PythonScripts-2.13.2.zip"; md5 = "04c86f2c45a29a162297a80dac61d14f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ accesscontrol datetime restrictedpython documenttemplate setuptools zexceptions acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_resourceregistries = buildPythonPackage rec { - name = "Products.ResourceRegistries-2.2.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ResourceRegistries/${name}.zip"; - md5 = "9cf6efbcf2a6510033c06e1d3af94080"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zopeundo = buildPythonPackage rec { + name = "ZopeUndo-2.12.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZopeUndo/ZopeUndo-2.12.0.zip"; + md5 = "2b8da09d1b98d5558f62e12f6e52c401"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_securemailhost = buildPythonPackage rec { - name = "Products.SecureMailHost-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.SecureMailHost/${name}.zip"; - md5 = "7db0f1fa867bd0df972082f502a7a707"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + datetime = buildPythonPackage rec { + name = "DateTime-3.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/D/DateTime/DateTime-3.0.2.zip"; + md5 = "d2dce6ce3b8d93bc65713e40b5d89ae0"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_interface pytz ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_standardcachemanagers = buildPythonPackage rec { - name = "Products.StandardCacheManagers-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.StandardCacheManagers/${name}.zip"; - md5 = "c5088b2b62bd26d63d9579a04369cb73"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_session = buildPythonPackage rec { + name = "plone.session-3.5.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.session/plone.session-3.5.3.zip"; + md5 = "f95872454735abc8f27c3dcbc9434c11"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 products_pluggableauthservice plone_keyring zope_interface setuptools zope_component plone_protect ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_statusmessages = buildPythonPackage rec { - name = "Products.statusmessages-4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.statusmessages/${name}.zip"; - md5 = "265324b0a58a032dd0ed038103ed0473"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zope_container = buildPythonPackage rec { + name = "zope.container-3.11.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.container/zope.container-3.11.2.tar.gz"; + md5 = "fc66d85a17b8ffb701091c9328983dcc"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_filerepresentation zope_i18nmessageid zope_publisher zope_broken zope_interface zope_size zope_dottedname zope_security zope_location zope_lifecycleevent zope_component zodb3 zope_event setuptools zope_schema zope_traversing ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_folder = buildPythonPackage rec { + name = "plone.folder-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.folder/plone.folder-1.0.4.zip"; + md5 = "1674ff18b7a9452d0c2063cf11c679b7"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_component zope_interface plone_memoize zope_container setuptools zope_annotation ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_tinymce = buildPythonPackage rec { - name = "Products.TinyMCE-1.2.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.TinyMCE/${name}.zip"; - md5 = "108b919bfcff711d2116e41eccbede58"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + products_plonepas = buildPythonPackage rec { + name = "Products.PlonePAS-4.1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PlonePAS/Products.PlonePAS-4.1.1.zip"; + md5 = "32db1808c3ad42e82542b65eb95c3c71"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_genericsetup plone_memoize plone_i18n plone_session zope2 setuptools products_cmfcore products_pluggableauthservice ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_validation = buildPythonPackage rec { - name = "Products.validation-2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.validation/${name}.zip"; - md5 = "afa217e2306637d1dccbebf337caa8bf"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_app_locales = buildPythonPackage rec { + name = "plone.app.locales-4.2.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.locales/plone.app.locales-4.2.5.zip"; + md5 = "baf48a0a5278a18fa1c2848d3470464f"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zcatalog = buildPythonPackage rec { - name = "Products.ZCatalog-2.13.23"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZCatalog/${name}.zip"; - md5 = "d425171516dfc70e543a4e2b852301cb"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zope_sequencesort = buildPythonPackage rec { + name = "zope.sequencesort-3.4.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.sequencesort/zope.sequencesort-3.4.0.tar.gz"; + md5 = "cfc35fc426a47f5c0ee43c416224b864"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_genericsetup = buildPythonPackage rec { + name = "Products.GenericSetup-1.7.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.GenericSetup/Products.GenericSetup-1.7.3.tar.gz"; + md5 = "c48967c81c880ed33ee16a14caab3b11"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_formlib five_localsitemanager zope2 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_theme = buildPythonPackage rec { + name = "plone.theme-2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.theme/plone.theme-2.1.zip"; + md5 = "c592d0d095e9fc76cc81597cdf6d0c37"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 zope_publisher zope_interface zope_traversing zope_component products_cmfdefault setuptools products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zctextindex = buildPythonPackage rec { - name = "Products.ZCTextIndex-2.13.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZCTextIndex/${name}.zip"; - md5 = "8bbfa5fcd3609246990a9314d6f826b4"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zope_tal = buildPythonPackage rec { + name = "zope.tal-3.5.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.tal/zope.tal-3.5.2.zip"; + md5 = "13869f292ba36b294736b7330b1396fd"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_interface zope_i18nmessageid setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zopeversioncontrol = buildPythonPackage rec { - name = "Products.ZopeVersionControl-1.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZopeVersionControl/${name}.zip"; - md5 = "238239102f3ac798ee4f4c53343a561f"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_cachepurging = buildPythonPackage rec { + name = "plone.cachepurging-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.cachepurging/plone.cachepurging-1.0.4.zip"; + md5 = "886814ac4deef0f1ed99a2eb60864264"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope2 five_globalrequest zope_interface zope_component zope_event setuptools zope_lifecycleevent zope_annotation plone_registry ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zsqlmethods = buildPythonPackage rec { - name = "Products.ZSQLMethods-2.13.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZSQLMethods/${name}.zip"; - md5 = "bd1ad8fd4a9d4f8b4681401dd5b71dc1"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_protect = buildPythonPackage rec { + name = "plone.protect-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.protect/plone.protect-2.0.2.zip"; + md5 = "74925ffb08782e72f9b1e850fa78fffa"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_component plone_keyring zope2 setuptools zope_interface ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - py = buildPythonPackage rec { - name = "py-1.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/py/${name}.tar.gz"; - md5 = "b64d73a04121c1c4e27c7ec335ef87c8"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - pygments = buildPythonPackage rec { - name = "Pygments-1.3.1"; - + products_portaltransforms = buildPythonPackage rec { + name = "Products.PortalTransforms-2.1.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz"; - md5 = "54be67c04834f13d7e255e1797d629a5"; + url = "http://pypi.python.org/packages/source/P/Products.PortalTransforms/Products.PortalTransforms-2.1.2.zip"; + md5 = "9f429f3c3b9e0019d0f6c9b7a8a9376e"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - python_dateutil = buildPythonPackage rec { - name = "python-dateutil-1.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/python-dateutil/${name}.tar.gz"; - md5 = "0dcb1de5e5cad69490a3b6ab63f0cfa5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - python_gettext = buildPythonPackage rec { - name = "python-gettext-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/python-gettext/${name}.zip"; - md5 = "cd4201d440126d1296d1d2bc2b4795f3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 zope_interface zope_structuredtext products_mimetypesregistry zodb3 products_cmfdefault plone_intelligenttext setuptools markdown products_cmfcore acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - python_openid = buildPythonPackage rec { - name = "python-openid-2.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/python-openid/${name}.zip"; - md5 = "f89d9d4f4dccfd33b5ce34eb4725f751"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_memoize = buildPythonPackage rec { + name = "plone.memoize-1.1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.memoize/plone.memoize-1.1.1.zip"; + md5 = "d07cd14b976160e1f26a859e3370147e"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_component zope_annotation zope_ramcache setuptools zope_interface ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pytz = buildPythonPackage rec { - name = "pytz-2012c"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/pytz/pytz-2012c.tar.gz"; - md5 = "1aa85f072e3d34ae310665967a0ce053"; - }; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - record = buildPythonPackage rec { - name = "Record-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/R/Record/${name}.zip"; - md5 = "cfed6a89d4fb2c9cb995e9084c3071b7"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + docutils = buildPythonPackage rec { + name = "docutils-0.9.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/d/docutils/docutils-0.9.1.tar.gz"; + md5 = "b0d5cd5298fedf9c62f5fd364a274d56"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + five_formlib = buildPythonPackage rec { + name = "five.formlib-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/f/five.formlib/five.formlib-1.0.4.zip"; + md5 = "09fcecbb7e0ed4a31a4f19787c1a78b4"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid transaction zope_app_form zope_formlib zope_interface zope_location zope_publisher zope_component extensionclass zope_event setuptools zope_schema zope_lifecycleevent zope_browser zope2 ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - repoze_retry = buildPythonPackage rec { - name = "repoze.retry-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.retry/${name}.tar.gz"; - md5 = "55f9dbde5d7f939d93c352fef0f2ce8b"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - repoze_tm2 = buildPythonPackage rec { - name = "repoze.tm2-1.0"; - + zexceptions = buildPythonPackage rec { + name = "zExceptions-2.13.0"; src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.tm2/${name}.tar.gz"; - md5 = "c645a878874c8876c9c6b3467246afbc"; + url = "http://pypi.python.org/packages/source/z/zExceptions/zExceptions-2.13.0.zip"; + md5 = "4c679696c959040d8e656ef85ae40136"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - repoze_who = buildPythonPackage rec { - name = "repoze.who-2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.who/${name}.tar.gz"; - md5 = "eab01991b6a2979678ce6015815262e2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - repoze_xmliter = buildPythonPackage rec { - name = "repoze.xmliter-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.xmliter/${name}.zip"; - md5 = "99da76bcbad6fbaced4a273bde29b10e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_interface zope_publisher zope_security setuptools ]; doCheck = false; - + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + products_cmfuid = buildPythonPackage rec { + name = "Products.CMFUid-2.2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFUid/Products.CMFUid-2.2.1.tar.gz"; + md5 = "e20727959351dffbf0bac80613eee110"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ zope2 products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; restrictedpython = buildPythonPackage rec { name = "RestrictedPython-3.6.0"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/R/RestrictedPython/${name}.zip"; + url = "http://pypi.python.org/packages/source/R/RestrictedPython/RestrictedPython-3.6.0.zip"; md5 = "aa75a7dcc7fbc966357837cc66cacec6"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - roman = buildPythonPackage rec { - name = "roman-1.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/roman/${name}.tar.gz"; - md5 = "4f8832ed4108174b159c2afb4bd1d1dd"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - rwproperty = buildPythonPackage rec { - name = "rwproperty-1.0"; - + plone_app_theming = buildPythonPackage rec { + name = "plone.app.theming-1.1b2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/r/rwproperty/${name}.tar.gz"; - md5 = "050bdf066492b3cd82a3399f8efea6b1"; + url = "http://pypi.python.org/packages/source/p/plone.app.theming/plone.app.theming-1.1b2.zip"; + md5 = "0cefd88b1c810833c03762cba7bd194d"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - simplejson = buildPythonPackage rec { - name = "simplejson-2.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/s/simplejson/${name}.tar.gz"; - md5 = "d7a7acf0bd7681bd116b5c981d2f7959"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - sphinx = buildPythonPackage rec { - name = "Sphinx-1.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/S/Sphinx/${name}.tar.gz"; - md5 = "8f55a6d4f87fc6d528120c5d1f983e98"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - tempstorage = buildPythonPackage rec { - name = "tempstorage-2.12.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/t/tempstorage/${name}.zip"; - md5 = "7a2b76b39839e229249b1bb175604480"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfplone plone_subrequest repoze_xmliter plone_app_registry plone_transformchain zope_traversing lxml docutils roman plone_resource setuptools five_globalrequest diazo plone_resourceeditor ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - tl_eggdeps = buildPythonPackage rec { - name = "tl.eggdeps-0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/t/tl.eggdeps/${name}.tar.gz"; - md5 = "2472204a2abd0d8cd4d11ff0fbf36ae7"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - transaction = buildPythonPackage rec { - name = "transaction-1.1.1"; - + feedparser = buildPythonPackage rec { + name = "feedparser-5.0.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/t/transaction/${name}.tar.gz"; - md5 = "30b062baa34fe1521ad979fb088c8c55"; + url = "http://pypi.python.org/packages/source/f/feedparser/feedparser-5.0.1.zip"; + md5 = "cefffeba66b658d3cc7c1d66b92c6a1a"; }; - - # ignore dependencies + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + zope_browser = buildPythonPackage rec { + name = "zope.browser-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.browser/zope.browser-1.3.zip"; + md5 = "4ff0ddbf64c45bfcc3189e35f4214ded"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfdefault = buildPythonPackage rec { + name = "Products.CMFDefault-2.2.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFDefault/Products.CMFDefault-2.2.3.tar.gz"; + md5 = "fe7d2d3906ee0e3b484e4a02401576ab"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ products_genericsetup products_cmfcore five_formlib setuptools zope2 eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + python_dateutil = buildPythonPackage rec { + name = "python-dateutil-1.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-1.5.tar.gz"; + md5 = "0dcb1de5e5cad69490a3b6ab63f0cfa5"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_error = buildPythonPackage rec { + name = "zope.error-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.error/zope.error-3.7.4.tar.gz"; + md5 = "281445a906458ff5f18f56923699a127"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_location zope_exceptions setuptools zodb3 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_mimetools = buildPythonPackage rec { + name = "Products.MIMETools-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.MIMETools/Products.MIMETools-2.13.0.zip"; + md5 = "ad5372fc1190599a19493db0864448ec"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ documenttemplate setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_deprecation = buildPythonPackage rec { + name = "zope.deprecation-3.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.deprecation/zope.deprecation-3.4.1.tar.gz"; + md5 = "8a47b0f8e1fa4e833007e5b8351bb1d4"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfplacefulworkflow = buildPythonPackage rec { + name = "Products.CMFPlacefulWorkflow-1.5.9"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFPlacefulWorkflow/Products.CMFPlacefulWorkflow-1.5.9.zip"; + md5 = "9041e1f52eab5b348c0dfa85be438722"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfplone zope_i18nmessageid products_plonetestcase products_genericsetup zope_interface zope_testing zope_component setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; unidecode = buildPythonPackage rec { name = "Unidecode-0.04.1"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/U/Unidecode/${name}2.tar.gz"; - md5 = "351dc98f4512bdd2e93f7a6c498730eb"; + url = "http://pypi.python.org/packages/source/U/Unidecode/Unidecode-0.04.1.tar.gz"; + md5 = "c4c9ed8d40cff25c390ff5d5112b9308"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - unittest2 = buildPythonPackage rec { - name = "unittest2-0.5.1"; - + products_cmfcore = buildPythonPackage rec { + name = "Products.CMFCore-2.2.7"; src = fetchurl { - url = "http://pypi.python.org/packages/source/u/unittest2/${name}.tar.gz"; - md5 = "a0af5cac92bbbfa0c3b0e99571390e0f"; + url = "http://pypi.python.org/packages/source/P/Products.CMFCore/Products.CMFCore-2.2.7.tar.gz"; + md5 = "9320a4023b8575097feacfd4a400e930"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ products_genericsetup zope_app_publication products_zsqlmethods zope2 setuptools five_localsitemanager ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - webob = buildPythonPackage rec { - name = "WebOb-1.0.8"; - + five_localsitemanager = buildPythonPackage rec { + name = "five.localsitemanager-2.0.5"; src = fetchurl { - url = "http://pypi.python.org/packages/source/W/WebOb/${name}.zip"; - md5 = "9809f9fb64fca8690a7da533fa29a272"; + url = "http://pypi.python.org/packages/source/f/five.localsitemanager/five.localsitemanager-2.0.5.zip"; + md5 = "5e3a658e6068832bd802018ebc83f2d4"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_testing zope_site zope_interface zope_location zope_component zodb3 zope_event setuptools zope_lifecycleevent zope2 acquisition ]; doCheck = false; - + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + zope_configuration = buildPythonPackage rec { + name = "zope.configuration-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.configuration/zope.configuration-3.7.4.zip"; + md5 = "5b0271908ef26c05059eda76928896ea"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_interface zope_i18nmessageid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfcalendar = buildPythonPackage rec { + name = "Products.CMFCalendar-2.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFCalendar/Products.CMFCalendar-2.2.2.tar.gz"; + md5 = "49458e68dc3b6826ea9a3576ac014419"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ products_cmfdefault zope2 products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_extendedpathindex = buildPythonPackage rec { + name = "Products.ExtendedPathIndex-3.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ExtendedPathIndex/Products.ExtendedPathIndex-3.1.zip"; + md5 = "00c048a4b103200bdcbda61fa22c66df"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol transaction zope2 setuptools zodb3 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + archetypes_schemaextender = buildPythonPackage rec { + name = "archetypes.schemaextender-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/a/archetypes.schemaextender/archetypes.schemaextender-2.1.2.zip"; + md5 = "865aa5b4b6b26e3bb650d89ddfe77c87"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_uuid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zconfig = buildPythonPackage rec { + name = "ZConfig-2.9.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZConfig/ZConfig-2.9.0.zip"; + md5 = "5c932690a70c8907efd240cdd76a7bc4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_contentmenu = buildPythonPackage rec { + name = "plone.app.contentmenu-2.0.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.contentmenu/plone.app.contentmenu-2.0.8.zip"; + md5 = "8ba463f1a164c454c70d26507e5bd22a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_publisher products_cmfdynamicviewfti zope_browsermenu zope_interface plone_memoize plone_app_content zope_component acquisition setuptools zope_i18n plone_locking products_cmfcore zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_pluginregistry = buildPythonPackage rec { + name = "Products.PluginRegistry-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PluginRegistry/Products.PluginRegistry-1.3.tar.gz"; + md5 = "5b166193ca1eb84dfb402051f779ebab"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope2 products_genericsetup setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_alterego = buildPythonPackage rec { + name = "plone.alterego-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.alterego/plone.alterego-1.0.zip"; + md5 = "b7b6dbcbba00505d98d5aba83e016408"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_outputfilters = buildPythonPackage rec { + name = "plone.outputfilters-1.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.outputfilters/plone.outputfilters-1.8.zip"; + md5 = "a5ef28580f7fa7f2dc1768893995b0f7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_portaltransforms products_mimetypesregistry products_cmfcore setuptools products_genericsetup ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_publisher = buildPythonPackage rec { + name = "zope.publisher-3.12.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.publisher/zope.publisher-3.12.6.tar.gz"; + md5 = "495131970cc7cb14de8e517fb3857ade"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_contenttype zope_proxy zope_interface zope_location zope_exceptions zope_security zope_configuration zope_component zope_event setuptools zope_browser zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_security = buildPythonPackage rec { + name = "zope.security-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.security/zope.security-3.7.4.tar.gz"; + md5 = "072ab8d11adc083eace11262da08630c"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_schema zope_interface zope_location zope_configuration zope_component setuptools zope_proxy ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zdaemon = buildPythonPackage rec { + name = "zdaemon-2.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zdaemon/zdaemon-2.0.7.tar.gz"; + md5 = "291a875f82e812110557eb6704af8afe"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zconfig ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_annotation = buildPythonPackage rec { + name = "zope.annotation-3.5.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.annotation/zope.annotation-3.5.0.tar.gz"; + md5 = "4238153279d3f30ab5613438c8e76380"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_proxy zope_interface zope_location zope_component zodb3 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + repoze_xmliter = buildPythonPackage rec { + name = "repoze.xmliter-0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/r/repoze.xmliter/repoze.xmliter-0.5.zip"; + md5 = "99da76bcbad6fbaced4a273bde29b10e"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_form = buildPythonPackage rec { + name = "plone.app.form-2.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.form/plone.app.form-2.2.2.zip"; + md5 = "6101e6a5bd4de6cc8cdef09ced2743eb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_schema zope_site plone_app_vocabularies zope2 datetime zope_component zope_event five_formlib setuptools zope_interface zope_lifecycleevent zope_formlib zope_browser zope_i18n plone_locking products_cmfcore acquisition products_cmfdefault ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_structuredtext = buildPythonPackage rec { + name = "zope.structuredtext-3.5.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.structuredtext/zope.structuredtext-3.5.1.tar.gz"; + md5 = "eabbfb983485d0879322bc878d2478a0"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zodb3 = buildPythonPackage rec { + name = "ZODB3-3.10.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-3.10.5.tar.gz"; + md5 = "6f180c6897a1820948fee2a6290503cd"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface transaction zconfig zope_event zdaemon zc_lockfile ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_batching = buildPythonPackage rec { + name = "plone.batching-1.0b1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.batching/plone.batching-1.0b1.zip"; + md5 = "813a7d2d89fedf4f8e90e0c8da949c48"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + documenttemplate = buildPythonPackage rec { + name = "DocumentTemplate-2.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/D/DocumentTemplate/DocumentTemplate-2.13.2.zip"; + md5 = "07bb086c77c1dfe94125ad2efbba94b7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol extensionclass zope_sequencesort zexceptions restrictedpython zope_structuredtext acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_search = buildPythonPackage rec { + name = "plone.app.search-1.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.search/plone.app.search-1.1.3.zip"; + md5 = "396677c3fba762077360ed97b14071e6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_contentlisting setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + diazo = buildPythonPackage rec { + name = "diazo-1.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/d/diazo/diazo-1.0.3.zip"; + md5 = "d3c2b017af521db4c86fb360c86e0bc8"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml experimental_cssselect setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_globalrequest = buildPythonPackage rec { + name = "zope.globalrequest-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.globalrequest/zope.globalrequest-1.0.zip"; + md5 = "ae6ff02db5ba89c1fb96ed7a73ca1cfa"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_customerize = buildPythonPackage rec { + name = "plone.app.customerize-1.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.customerize/plone.app.customerize-1.2.2.zip"; + md5 = "6a3802c4e8fbd955597adc6a8298febf"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_viewlet zope2 zope_publisher zope_interface plone_browserlayer plone_portlets zope_component setuptools five_customerize products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfdifftool = buildPythonPackage rec { + name = "Products.CMFDiffTool-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFDiffTool/Products.CMFDiffTool-2.0.2.zip"; + md5 = "c12ba4fb9912a9a5a046b07b5b1cf69d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_interface setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_testbrowser = buildPythonPackage rec { + name = "zope.testbrowser-3.11.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.testbrowser/zope.testbrowser-3.11.1.tar.gz"; + md5 = "64abbee892121e7f1a91aed12cfc155a"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_interface mechanize pytz setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_contentmigration = buildPythonPackage rec { + name = "Products.contentmigration-2.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.contentmigration/Products.contentmigration-2.1.3.zip"; + md5 = "e15b9777593157f060b50638b0253be1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_intelligenttext = buildPythonPackage rec { + name = "plone.intelligenttext-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.intelligenttext/plone.intelligenttext-2.0.2.zip"; + md5 = "51688fa0815b49e00334e3ef948328ba"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plonetheme_classic = buildPythonPackage rec { + name = "plonetheme.classic-1.3.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plonetheme.classic/plonetheme.classic-1.3.1.zip"; + md5 = "8f78a3e79dce692a568c5fbc58ba742a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_authentication = buildPythonPackage rec { + name = "zope.authentication-3.7.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.authentication/zope.authentication-3.7.1.zip"; + md5 = "7d6bb340610518f2fc71213cfeccda68"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_interface zope_security zope_component setuptools zope_schema zope_browser ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_i18n = buildPythonPackage rec { + name = "zope.i18n-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.i18n/zope.i18n-3.7.4.tar.gz"; + md5 = "a6fe9d9ad53dd7e94e87cd58fb67d3b7"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_component zope_i18nmessageid pytz setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_componentvocabulary = buildPythonPackage rec { + name = "zope.componentvocabulary-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.componentvocabulary/zope.componentvocabulary-1.0.1.tar.gz"; + md5 = "1c8fa82ca1ab1f4b0bd2455a31fde22b"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_interface zope_security zope_component setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_ofsp = buildPythonPackage rec { + name = "Products.OFSP-2.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.OFSP/Products.OFSP-2.13.2.zip"; + md5 = "c76d40928753c2ee56db873304e65bd5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol persistence setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_datetime = buildPythonPackage rec { + name = "zope.datetime-3.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.datetime/zope.datetime-3.4.1.tar.gz"; + md5 = "4dde22d34f41a0a4f0c5a345e6d11ee9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + experimental_cssselect = buildPythonPackage rec { + name = "experimental.cssselect-0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/e/experimental.cssselect/experimental.cssselect-0.3.zip"; + md5 = "3fecdcf1fbc3ea6025e115a56a262957"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_passwordresettool = buildPythonPackage rec { + name = "Products.PasswordResetTool-2.0.12"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PasswordResetTool/Products.PasswordResetTool-2.0.12.zip"; + md5 = "db87c166732a5800f25e33f27a23b7b4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_interface plone_memoize datetime zope_component setuptools zope_i18n products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_jquerytools = buildPythonPackage rec { + name = "plone.app.jquerytools-1.5.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.jquerytools/plone.app.jquerytools-1.5.4.zip"; + md5 = "fcc0c48d49deb211d5aadf4e12d3c1a0"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_component zope2 products_cmfcore setuptools products_genericsetup ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_validation = buildPythonPackage rec { + name = "Products.validation-2.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.validation/Products.validation-2.0.zip"; + md5 = "afa217e2306637d1dccbebf337caa8bf"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_interface datetime setuptools zope_i18n acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_registry = buildPythonPackage rec { + name = "plone.registry-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.registry/plone.registry-1.0.1.zip"; + md5 = "6be3d2ec7e2d170e29b8c0bc65049aff"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing zope_interface zope_dottedname zope_component zodb3 zope_event setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_portlet_static = buildPythonPackage rec { + name = "plone.portlet.static-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.portlet.static/plone.portlet.static-2.0.2.zip"; + md5 = "ec0dc691b4191a41ff97779b117f9985"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 plone_app_portlets zope_formlib zope_interface setuptools plone_i18n plone_portlets zope_component plone_app_form zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_viewlet = buildPythonPackage rec { + name = "zope.viewlet-3.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.viewlet/zope.viewlet-3.7.2.tar.gz"; + md5 = "367e03096df57e2f9b74fff43f7901f9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_browserpage zope_i18nmessageid zope_publisher zope_interface zope_location zope_security zope_configuration zope_component zope_event setuptools zope_schema zope_traversing zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_portlet_collection = buildPythonPackage rec { + name = "plone.portlet.collection-2.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.portlet.collection/plone.portlet.collection-2.1.3.zip"; + md5 = "5f0006dbb3e0b56870383dfdedc49228"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_memoize setuptools plone_app_vocabularies plone_app_form plone_portlets plone_app_portlets ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_users = buildPythonPackage rec { + name = "plone.app.users-1.2a2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.users/plone.app.users-1.2a2.zip"; + md5 = "a96e42e34d97162363cb3bbc8483d2ba"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid setuptools zope_site zope_formlib zope_interface plone_app_controlpanel plone_app_layout zope2 zope_component products_statusmessages products_cmfdefault five_formlib plone_protect zodb3 zope_schema products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_querystring = buildPythonPackage rec { + name = "plone.app.querystring-1.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.querystring/plone.app.querystring-1.0.7.zip"; + md5 = "b501910b23def9b58e8309d1e469eb6f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_i18n zope_publisher setuptools zope_globalrequest plone_app_vocabularies zope_dottedname plone_app_layout datetime plone_registry zope_component plone_app_contentlisting zope_interface zope_schema plone_app_registry products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_i18nmessageid = buildPythonPackage rec { + name = "zope.i18nmessageid-3.5.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.i18nmessageid/zope.i18nmessageid-3.5.3.tar.gz"; + md5 = "cb84bf61c2b7353e3b7578057fbaa264"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_folder = buildPythonPackage rec { + name = "plone.app.folder-1.0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.folder/plone.app.folder-1.0.5.zip"; + md5 = "8ea860daddb4c93c0b7f2b5f7106fef0"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_folder setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_zcatalog = buildPythonPackage rec { + name = "Products.ZCatalog-2.13.23"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ZCatalog/Products.ZCatalog-2.13.23.zip"; + md5 = "d425171516dfc70e543a4e2b852301cb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol zope_testing extensionclass missing zope_dottedname restrictedpython datetime record persistence zodb3 documenttemplate setuptools zope_interface zope_schema products_zctextindex zexceptions acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + python_openid = buildPythonPackage rec { + name = "python-openid-2.2.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/python-openid/python-openid-2.2.5.zip"; + md5 = "f89d9d4f4dccfd33b5ce34eb4725f751"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_autoinclude = buildPythonPackage rec { + name = "z3c.autoinclude-0.3.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.autoinclude/z3c.autoinclude-0.3.4.zip"; + md5 = "6a615ae18c12b459bceb3ae28e8e7709"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_dottedname zope_configuration zc_buildout setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_processlifetime = buildPythonPackage rec { + name = "zope.processlifetime-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.processlifetime/zope.processlifetime-1.0.tar.gz"; + md5 = "69604bfd668a01ebebdd616a8f26ccfe"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_uuid = buildPythonPackage rec { + name = "plone.uuid-1.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.uuid/plone.uuid-1.0.3.zip"; + md5 = "183fe2911a7d6c9f6b3103855e98ad8a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_browserpage zope_publisher setuptools zope_lifecycleevent ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_dexterity = buildPythonPackage rec { + name = "plone.dexterity-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.dexterity/plone.dexterity-2.1.2.zip"; + md5 = "3404947376be89f18e54bbfb5c0d3595"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_interface plone_memoize zope_dottedname zope_container zope_lifecycleevent plone_synchronize zope_annotation plone_autoform plone_behavior plone_folder zope_publisher products_cmfdefault zope_filerepresentation zope_browser plone_rfc822 zope_size plone_alterego products_statusmessages zope_schema zope2 zope_component zope_location zope_security plone_z3cform zodb3 plone_supermodel plone_uuid setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_synchronize = buildPythonPackage rec { + name = "plone.synchronize-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.synchronize/plone.synchronize-1.0.1.zip"; + md5 = "d25e86ace8daa0816861296c3288c4fb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_traversing = buildPythonPackage rec { + name = "zope.traversing-3.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.traversing/zope.traversing-3.13.2.zip"; + md5 = "eaad8fc7bbef126f9f8616b074ec00aa"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_proxy zope_location zope_interface zope_security zope_component setuptools zope_publisher zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + python_gettext = buildPythonPackage rec { + name = "python-gettext-1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/python-gettext/python-gettext-1.2.zip"; + md5 = "cd4201d440126d1296d1d2bc2b4795f3"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ unittest2 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_securemailhost = buildPythonPackage rec { + name = "Products.SecureMailHost-1.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.SecureMailHost/Products.SecureMailHost-1.1.2.zip"; + md5 = "7db0f1fa867bd0df972082f502a7a707"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_plonelanguagetool = buildPythonPackage rec { + name = "Products.PloneLanguageTool-3.2.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PloneLanguageTool/Products.PloneLanguageTool-3.2.7.zip"; + md5 = "bd9eb6278bf76e8cbce99437ca362164"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + eggtestinfo = buildPythonPackage rec { + name = "eggtestinfo-0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/e/eggtestinfo/eggtestinfo-0.3.tar.gz"; + md5 = "6f0507aee05f00c640c0d64b5073f840"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + mailinglogger = buildPythonPackage rec { + name = "mailinglogger-3.7.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/m/mailinglogger/mailinglogger-3.7.0.tar.gz"; + md5 = "f865f0df6059ce23062b7457d01dbac5"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + missing = buildPythonPackage rec { + name = "Missing-2.13.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/M/Missing/Missing-2.13.1.zip"; + md5 = "9823cff54444cbbcaef8fc45d8e42572"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_deferredimport = buildPythonPackage rec { + name = "zope.deferredimport-3.5.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.deferredimport/zope.deferredimport-3.5.3.tar.gz"; + md5 = "68fce3bf4f011d4a840902fd763884ee"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_proxy setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_tales = buildPythonPackage rec { + name = "zope.tales-3.5.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.tales/zope.tales-3.5.2.tar.gz"; + md5 = "1c5060bd766a0a18632b7879fc9e4e1e"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools zope_tal ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_zsqlmethods = buildPythonPackage rec { + name = "Products.ZSQLMethods-2.13.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ZSQLMethods/Products.ZSQLMethods-2.13.4.zip"; + md5 = "bd1ad8fd4a9d4f8b4681401dd5b71dc1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass missing zope_interface datetime zope2 record transaction acquisition setuptools zodb3 persistence ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_statusmessages = buildPythonPackage rec { + name = "Products.statusmessages-4.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.statusmessages/Products.statusmessages-4.0.zip"; + md5 = "265324b0a58a032dd0ed038103ed0473"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_annotation zope_i18n setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_i18n = buildPythonPackage rec { + name = "plone.i18n-2.0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.i18n/plone.i18n-2.0.5.zip"; + md5 = "ef36aa9a294d507abb37787f9f7700bd"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ unidecode zope_publisher zope_interface zope_component setuptools zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + archetypes_querywidget = buildPythonPackage rec { + name = "archetypes.querywidget-1.0.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/a/archetypes.querywidget/archetypes.querywidget-1.0.8.zip"; + md5 = "3416b6b4948c624e1b5b8dd8d7e33f59"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_jquerytools plone_app_querystring setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_transformchain = buildPythonPackage rec { + name = "plone.transformchain-1.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.transformchain/plone.transformchain-1.0.3.zip"; + md5 = "f5fb7ca894249e3e666501c4fae52a6c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_interface setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_pluggableauthservice = buildPythonPackage rec { + name = "Products.PluggableAuthService-1.10.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PluggableAuthService/Products.PluggableAuthService-1.10.0.tar.gz"; + md5 = "1a1db6b1d9dd34f8b93a8a3104385a37"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ products_pluginregistry zope2 products_genericsetup setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + borg_localrole = buildPythonPackage rec { + name = "borg.localrole-3.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/b/borg.localrole/borg.localrole-3.0.2.zip"; + md5 = "04082694dfda9ae5cda62747b8ac7ccf"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_deferredimport zope_interface plone_memoize zope_component setuptools products_pluggableauthservice zope_annotation products_cmfcore acquisition products_plonepas ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + archetypes_referencebrowserwidget = buildPythonPackage rec { + name = "archetypes.referencebrowserwidget-2.4.17"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/a/archetypes.referencebrowserwidget/archetypes.referencebrowserwidget-2.4.17.zip"; + md5 = "bb7552f5ccfddcd068649d7b8162020c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_jquerytools zope_component zope_interface plone_app_form zope_formlib setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + five_globalrequest = buildPythonPackage rec { + name = "five.globalrequest-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/f/five.globalrequest/five.globalrequest-1.0.tar.gz"; + md5 = "87f8996bd21d4aa156aa26e7d21b8744"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_globalrequest zope2 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_rfc822 = buildPythonPackage rec { + name = "plone.rfc822-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.rfc822/plone.rfc822-1.0.1.zip"; + md5 = "b5b79bb5a9181da624a7e88940a45424"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_component python_dateutil setuptools zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plonetheme_sunburst = buildPythonPackage rec { + name = "plonetheme.sunburst-1.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plonetheme.sunburst/plonetheme.sunburst-1.4.1.zip"; + md5 = "e2008dae3dad458dd7bf3be10e95160b"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_portlets = buildPythonPackage rec { + name = "plone.portlets-2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.portlets/plone.portlets-2.2.zip"; + md5 = "5b7e06bee6e40af83694b82e1fee8c2d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_publisher zope_site zope_container zope_interface plone_memoize zope_component zodb3 setuptools zope_schema zope_annotation zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_proxy = buildPythonPackage rec { + name = "zope.proxy-3.6.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.proxy/zope.proxy-3.6.1.zip"; + md5 = "a400b0a26624b17fa889dbcaa989d440"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_archetypes = buildPythonPackage rec { + name = "Products.Archetypes-1.8.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.Archetypes/Products.Archetypes-1.8.6.zip"; + md5 = "74be68879b27228c084a9be869132a98"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfformcontroller zope_interface zope_contenttype datetime zope_component products_mimetypesregistry plone_app_folder zope2 zope_lifecycleevent zope_i18nmessageid zope_publisher products_genericsetup products_validation products_portaltransforms products_cmfquickinstallertool products_placelesstranslationservice zope_event acquisition products_dcworkflow products_cmfdefault zope_tal plone_folder products_zsqlmethods products_statusmessages zope_schema zope_viewlet products_cmfcalendar extensionclass zope_datetime products_marshall zope_site zope_deferredimport zodb3 plone_uuid setuptools transaction zope_i18n products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + initgroups = buildPythonPackage rec { + name = "initgroups-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/i/initgroups/initgroups-2.13.0.zip"; + md5 = "38e842dcab8445f65e701fec75213acd"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_schema = buildPythonPackage rec { + name = "zope.schema-4.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.schema/zope.schema-4.2.2.tar.gz"; + md5 = "e7e581af8193551831560a736a53cf58"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_event setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_scale = buildPythonPackage rec { + name = "plone.scale-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.scale/plone.scale-1.3.zip"; + md5 = "2de525b3f436c851bce6e03f639d2d35"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_copy = buildPythonPackage rec { + name = "zope.copy-3.5.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.copy/zope.copy-3.5.0.tar.gz"; + md5 = "a9836a5d36cd548be45210eb00407337"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + roman = buildPythonPackage rec { + name = "roman-1.4.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/r/roman/roman-1.4.0.tar.gz"; + md5 = "4f8832ed4108174b159c2afb4bd1d1dd"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_event = buildPythonPackage rec { + name = "zope.event-3.5.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.event/zope.event-3.5.2.tar.gz"; + md5 = "6e8af2a16157a74885d4f0d88137cefb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + acquisition = buildPythonPackage rec { + name = "Acquisition-2.13.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/A/Acquisition/Acquisition-2.13.8.zip"; + md5 = "8c33160c157b50649e2b2b3224622579"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_resource = buildPythonPackage rec { + name = "plone.resource-1.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.resource/plone.resource-1.0.2.zip"; + md5 = "594d41e3acd913ae92f2e9ef96503b9f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ python_dateutil zope_filerepresentation zope2 zope_publisher z3c_caching zope_interface zope_traversing zope_configuration zope_component plone_caching setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_linkintegrity = buildPythonPackage rec { + name = "plone.app.linkintegrity-1.5.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.linkintegrity/plone.app.linkintegrity-1.5.1.zip"; + md5 = "89701634d59c3b1a6fc61e5a21c4de52"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_resourceregistries = buildPythonPackage rec { + name = "Products.ResourceRegistries-2.2.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ResourceRegistries/Products.ResourceRegistries-2.2.7.zip"; + md5 = "954e31a168a1eb3153e2fd4e590bb9ba"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_interface datetime plone_app_registry zope_component zodb3 setuptools zope_viewlet products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_browserlayer = buildPythonPackage rec { + name = "plone.browserlayer-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.browserlayer/plone.browserlayer-2.1.2.zip"; + md5 = "bce02f4907a4f29314090c525e5fc28e"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 zope_interface zope_traversing zope_component setuptools products_genericsetup products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + markdown = buildPythonPackage rec { + name = "Markdown-2.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.3.zip"; + md5 = "122418893e21e91109edbf6e082f830d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_formwidget_query = buildPythonPackage rec { + name = "z3c.formwidget.query-0.9"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.formwidget.query/z3c.formwidget.query-0.9.zip"; + md5 = "d9f7960b1a5a81d8ba5241530f496522"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid z3c_form zope_interface zope_component setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_z3cform = buildPythonPackage rec { + name = "plone.app.z3cform-0.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.z3cform/plone.app.z3cform-0.7.2.zip"; + md5 = "aa8d1d45f8072ccfbfe0a608cd7144b6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 setuptools plone_z3cform zope_interface z3c_formwidget_query collective_z3cform_datetimewidget zope_component zope_browserpage plone_protect zope_traversing ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_viewletmanager = buildPythonPackage rec { + name = "plone.app.viewletmanager-2.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.viewletmanager/plone.app.viewletmanager-2.0.3.zip"; + md5 = "1dbc51c7664ce3e6ca4dcca1b7b86082"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_site zope_interface zope_component zodb3 acquisition setuptools plone_app_vocabularies zope_viewlet zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_contentlisting = buildPythonPackage rec { + name = "plone.app.contentlisting-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.contentlisting/plone.app.contentlisting-1.0.4.zip"; + md5 = "fa6eb45c4ffd0eb3817ad4813ca24916"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_uuid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_ramcache = buildPythonPackage rec { + name = "zope.ramcache-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.ramcache/zope.ramcache-1.0.zip"; + md5 = "87289e15f0e51f50704adda1557c02a7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_location zodb3 zope_testing setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_vocabularies = buildPythonPackage rec { + name = "plone.app.vocabularies-2.1.10"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.vocabularies/plone.app.vocabularies-2.1.10.tar.gz"; + md5 = "166a0d6f9a3e3cd753efa56aaef585be"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_site zope_formlib zope_interface zope_component setuptools zope_schema zope_browser zope_i18n products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_discussion = buildPythonPackage rec { + name = "plone.app.discussion-2.2.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.discussion/plone.app.discussion-2.2.4.zip"; + md5 = "e40ef3d26f024fc1555b30b52489b445"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_uuid zope_site plone_indexer collective_monkeypatcher zope_interface plone_app_z3cform zope_container plone_app_layout plone_z3cform plone_app_registry zope_component zodb3 zope_event setuptools z3c_form zope_lifecycleevent zope_annotation plone_registry ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zlog = buildPythonPackage rec { + name = "zLOG-2.11.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zLOG/zLOG-2.11.1.tar.gz"; + md5 = "68073679aaa79ac5a7b6a5c025467147"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zconfig ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zc_recipe_egg = buildPythonPackage rec { + name = "zc.recipe.egg-1.3.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zc.recipe.egg/zc.recipe.egg-1.3.2.tar.gz"; + md5 = "1cb6af73f527490dde461d3614a36475"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zc_buildout setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone = buildPythonPackage rec { + name = "Plone-4.3rc1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Plone/Plone-4.3rc1.zip"; + md5 = "21e4fafe5d608f44e759a1a0544aed72"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfplone plone_app_caching plone_app_dexterity plone_app_theming setuptools products_cmfplacefulworkflow plone_app_openid plone_app_iterate wicked ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_standardcachemanagers = buildPythonPackage rec { + name = "Products.StandardCacheManagers-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.StandardCacheManagers/Products.StandardCacheManagers-2.13.0.zip"; + md5 = "c5088b2b62bd26d63d9579a04369cb73"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol zope_component transaction setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_fieldsets = buildPythonPackage rec { + name = "plone.fieldsets-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.fieldsets/plone.fieldsets-2.0.2.zip"; + md5 = "4158c8a1f784fcb5cecbd63deda7222f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_formlib zope_interface zope_component five_formlib setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + collective_monkeypatcher = buildPythonPackage rec { + name = "collective.monkeypatcher-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/c/collective.monkeypatcher/collective.monkeypatcher-1.0.1.zip"; + md5 = "4d4f20f9b8bb84b24afadc4f56f6dc2c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_zcmlhook = buildPythonPackage rec { + name = "z3c.zcmlhook-1.0b1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.zcmlhook/z3c.zcmlhook-1.0b1.tar.gz"; + md5 = "7b6c80146f5930409eb0b355ddf3daeb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_component zope_configuration setuptools zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_recipe_zope2instance = buildPythonPackage rec { + name = "plone.recipe.zope2instance-4.2.10"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.recipe.zope2instance/plone.recipe.zope2instance-4.2.10.zip"; + md5 = "787fad7fa44757de74a50a91e9bcfcb5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zodb3 mailinglogger zc_buildout setuptools zope2 zc_recipe_egg ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_supermodel = buildPythonPackage rec { + name = "plone.supermodel-1.2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.supermodel/plone.supermodel-1.2.1.zip"; + md5 = "b60d1553b297d41d9e2181afe15da4f4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml zope_deferredimport zope_interface zope_dottedname zope_component z3c_zcmlhook setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_registry = buildPythonPackage rec { + name = "plone.app.registry-1.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.registry/plone.app.registry-1.2.2.zip"; + md5 = "d4659a2c4cfb3a66cd6c7ff1ca17be7f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid lxml plone_registry products_genericsetup plone_supermodel plone_app_z3cform zope_dottedname zope_component zope2 setuptools zope_interface products_statusmessages plone_autoform products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_pagetemplate = buildPythonPackage rec { + name = "zope.pagetemplate-3.6.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.pagetemplate/zope.pagetemplate-3.6.3.zip"; + md5 = "834a4bf702c05fba1e669677b4dc871f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_interface zope_traversing zope_tales zope_security zope_component setuptools zope_tal zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfformcontroller = buildPythonPackage rec { + name = "Products.CMFFormController-3.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFFormController/Products.CMFFormController-3.0.3.zip"; + md5 = "6573df7dcb39e3b63ba22abe2acd639e"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ transaction products_genericsetup zope_interface zope_tales products_cmfcore zope2 setuptools zope_structuredtext acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_openid = buildPythonPackage rec { + name = "plone.openid-2.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.openid/plone.openid-2.0.1.zip"; + md5 = "d4c36926a6dbefed035ed92c29329ce1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ transaction products_pluggableauthservice python_openid zodb3 setuptools zope2 acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_content = buildPythonPackage rec { + name = "zope.app.content-3.5.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.content/zope.app.content-3.5.1.tar.gz"; + md5 = "0ac6a6fcb5dd6f845759f998d8e8cbb3"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_interface zope_componentvocabulary zope_security setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_size = buildPythonPackage rec { + name = "zope.size-3.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.size/zope.size-3.4.1.tar.gz"; + md5 = "55d9084dfd9dcbdb5ad2191ceb5ed03d"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_i18nmessageid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_mimetypesregistry = buildPythonPackage rec { + name = "Products.MimetypesRegistry-2.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.MimetypesRegistry/Products.MimetypesRegistry-2.0.4.zip"; + md5 = "898166bb2aaececc8238ad4ee4826793"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 zope_interface zope_contenttype zodb3 setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_imaging = buildPythonPackage rec { + name = "plone.app.imaging-1.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.imaging/plone.app.imaging-1.0.7.zip"; + md5 = "27c24477bdcbcebeba6cd83419a57aa6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_scale setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_marshall = buildPythonPackage rec { + name = "Products.Marshall-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.Marshall/Products.Marshall-2.1.2.zip"; + md5 = "bde4d7f75195c1ded8371554b04d2541"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ transaction products_genericsetup zope_interface zope_contenttype datetime extensionclass plone_uuid setuptools zope2 products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_ptresource = buildPythonPackage rec { + name = "zope.ptresource-3.9.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.ptresource/zope.ptresource-3.9.0.tar.gz"; + md5 = "f4645e51c15289d3fdfb4139039e18e9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_publisher zope_pagetemplate zope_interface zope_browserresource zope_security setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + pillow = buildPythonPackage rec { + name = "Pillow-1.7.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Pillow/Pillow-1.7.7.zip"; + md5 = "0617fae88d62422b878906a3c394c687"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + configurePhase = '' sed -i "setup.py" -e 's|^FREETYPE_ROOT =.*$|FREETYPE_ROOT = _lib_include("${pkgs.freetype}")|g ; s|^JPEG_ROOT =.*$|JPEG_ROOT = _lib_include("${pkgs.libjpeg}")|g ;s|^ZLIB_ROOT =.*$|ZLIB_ROOT = _lib_include("${pkgs.zlib}")|g ;' ''; + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + multimapping = buildPythonPackage rec { + name = "MultiMapping-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/M/MultiMapping/MultiMapping-2.13.0.zip"; + md5 = "d69c5904c105b9f2f085d4103e0f0586"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_mailhost = buildPythonPackage rec { + name = "Products.MailHost-2.13.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.MailHost/Products.MailHost-2.13.1.zip"; + md5 = "1102e523435d8bf78a15b9ddb57478e1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + pytz = buildPythonPackage rec { + name = "pytz-2012g"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/pytz/pytz-2012g.zip"; + md5 = "1a9b24da1ab6328074b48fc3d4525078"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_i18n = buildPythonPackage rec { + name = "plone.app.i18n-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.i18n/plone.app.i18n-2.0.2.zip"; + md5 = "a10026573463dfc1899bf4062cebdbf2"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_indexer = buildPythonPackage rec { + name = "plone.indexer-1.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.indexer/plone.indexer-1.0.2.zip"; + md5 = "538aeee1f9db78bc8c85ae1bcb0153ed"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface products_cmfcore setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_externalmethod = buildPythonPackage rec { + name = "Products.ExternalMethod-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ExternalMethod/Products.ExternalMethod-2.13.0.zip"; + md5 = "15ba953ef6cb632eb571977651252ea6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol extensionclass zodb3 persistence setuptools acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_upgrade = buildPythonPackage rec { + name = "plone.app.upgrade-1.3rc1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.upgrade/plone.app.upgrade-1.3rc1.zip"; + md5 = "5132e3a77cc0288068106430136f2a49"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfformcontroller zope_interface products_cmfactionicons products_cmfeditions products_archetypes products_mimetypesregistry plone_app_folder products_cmfuid products_securemailhost zope_ramcache products_genericsetup products_cmfdifftool five_localsitemanager products_cmfquickinstallertool products_portaltransforms products_cmfdefault acquisition products_dcworkflow products_zcatalog borg_localrole products_contentmigration products_resourceregistries plone_portlets zope2 plone_app_portlets products_cmfcalendar products_plonepas transaction products_pluggableauthservice zope_site zope_component zope_location products_plonelanguagetool plone_session setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_browserpage = buildPythonPackage rec { + name = "zope.browserpage-3.12.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.browserpage/zope.browserpage-3.12.2.tar.gz"; + md5 = "a543ef3cb1b42f7233b3fca23dc9ea60"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_pagetemplate zope_interface zope_traversing zope_component zope_security zope_configuration zope_publisher setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_resourceeditor = buildPythonPackage rec { + name = "plone.resourceeditor-1.0b4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.resourceeditor/plone.resourceeditor-1.0b4.zip"; + md5 = "6e419868c2ea94a322dd631a1b0b753c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_resource zope2 zope_publisher zope_interface zope_component setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_atcontenttypes = buildPythonPackage rec { + name = "Products.ATContentTypes-2.1.12"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ATContentTypes/Products.ATContentTypes-2.1.12.zip"; + md5 = "ef38ce0769a5f44e272623f8f118a669"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_interface plone_memoize datetime products_archetypes products_mimetypesregistry plone_app_folder zope2 zope_i18nmessageid zope_publisher products_genericsetup plone_i18n products_portaltransforms products_cmfdefault products_atreferencebrowserwidget zope_tal zconfig archetypes_referencebrowserwidget transaction products_validation acquisition extensionclass zope_component plone_app_layout zodb3 setuptools zope_i18n products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfeditions = buildPythonPackage rec { + name = "Products.CMFEditions-2.2.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFEditions/Products.CMFEditions-2.2.8.zip"; + md5 = "1806f2e17e2527fad9364670b343bd11"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid transaction products_cmfdifftool zope_copy zope_interface products_genericsetup zope_dottedname products_zopeversioncontrol datetime products_cmfuid zodb3 products_cmfcore setuptools zope2 acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_interface = buildPythonPackage rec { + name = "zope.interface-3.6.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.interface/zope.interface-3.6.7.zip"; + md5 = "9df962180fbbb54eb1875cff9fe436e5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_content = buildPythonPackage rec { + name = "plone.app.content-2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.content/plone.app.content-2.1.zip"; + md5 = "8c8f0d5cc235fe7cb5ef9fe02b7e1c09"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_publisher zope_container plone_batching zope_interface plone_memoize plone_i18n zope_component zope_event products_cmfcore setuptools zope_schema zope_lifecycleevent zope_i18n zope_viewlet acquisition products_cmfdefault ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfquickinstallertool = buildPythonPackage rec { + name = "Products.CMFQuickInstallerTool-3.0.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFQuickInstallerTool/Products.CMFQuickInstallerTool-3.0.6.tar.gz"; + md5 = "af34adb87ddf2b6da48eff8b70ca2989"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 products_genericsetup zope_interface datetime zope_component setuptools zope_annotation products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_autoform = buildPythonPackage rec { + name = "plone.autoform-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.autoform/plone.autoform-1.3.zip"; + md5 = "4cb2935ba9cda3eb3ee801ad8cda7c60"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ z3c_form zope_interface zope_dottedname zope_security setuptools plone_supermodel zope_schema plone_z3cform ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_contentrules = buildPythonPackage rec { + name = "plone.app.contentrules-3.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.contentrules/plone.app.contentrules-3.0.zip"; + md5 = "bd60122bf527ed90e9d6fbc6a7fb3625"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_traversing plone_app_form zope_component zope_lifecycleevent zope_annotation zope_i18nmessageid products_genericsetup zope_event products_cmfdefault zope_browser plone_uuid plone_memoize zope2 plone_stringinterp products_statusmessages plone_contentrules zope_schema acquisition transaction zope_site zope_container plone_app_vocabularies zope_publisher zope_formlib zodb3 five_formlib setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + record = buildPythonPackage rec { + name = "Record-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/R/Record/Record-2.13.0.zip"; + md5 = "cfed6a89d4fb2c9cb995e9084c3071b7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_behavior = buildPythonPackage rec { + name = "plone.behavior-1.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.behavior/plone.behavior-1.0.2.zip"; + md5 = "4459b91287ebc2f2cf4fa38728b2a739"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_configuration zope_component setuptools zope_schema zope_annotation ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_plonetestcase = buildPythonPackage rec { + name = "Products.PloneTestCase-0.9.15"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PloneTestCase/Products.PloneTestCase-0.9.15.zip"; + md5 = "ddd5810937919ab5233ebd64893c8bae"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfplone zope_testing zope2 products_genericsetup zope_site zope_interface products_atcontenttypes zope_component zodb3 setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_stringinterp = buildPythonPackage rec { + name = "plone.stringinterp-1.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.stringinterp/plone.stringinterp-1.0.7.zip"; + md5 = "81909716210c6ac3fd0ee87f45ea523d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18n products_cmfcore setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_formwidget_namedfile = buildPythonPackage rec { + name = "plone.formwidget.namedfile-1.0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.formwidget.namedfile/plone.formwidget.namedfile-1.0.5.zip"; + md5 = "7d39a5760d679c89d8e41abbc295240f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ z3c_form plone_z3cform plone_namedfile setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_blob = buildPythonPackage rec { + name = "plone.app.blob-1.5.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.blob/plone.app.blob-1.5.7.zip"; + md5 = "135bc404212981c445d5bbb6a749b155"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_scale plone_app_imaging zodb3 setuptools archetypes_schemaextender zope_proxy ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfdynamicviewfti = buildPythonPackage rec { + name = "Products.CMFDynamicViewFTI-4.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFDynamicViewFTI/Products.CMFDynamicViewFTI-4.0.3.zip"; + md5 = "7d39d416b41b2d93954bc73d9d0e077f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass products_genericsetup zope_browsermenu zope_interface zope_component zope2 setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_keyring = buildPythonPackage rec { + name = "plone.keyring-2.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.keyring/plone.keyring-2.0.1.zip"; + md5 = "f3970e9bddb2cc65e461a2c62879233f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_container zope_location zodb3 setuptools zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_contentprovider = buildPythonPackage rec { + name = "zope.contentprovider-3.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.contentprovider/zope.contentprovider-3.7.2.tar.gz"; + md5 = "1bb2132551175c0123f17939a793f812"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_publisher zope_interface zope_location zope_tales zope_component zope_event setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_jquery = buildPythonPackage rec { + name = "plone.app.jquery-1.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.jquery/plone.app.jquery-1.7.2.tar.gz"; + md5 = "e204cf45456d26217263531832b5bdac"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ products_cmfcore setuptools products_genericsetup ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_atreferencebrowserwidget = buildPythonPackage rec { + name = "Products.ATReferenceBrowserWidget-3.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ATReferenceBrowserWidget/Products.ATReferenceBrowserWidget-3.0.zip"; + md5 = "157bdd32155c8353450c17c649aad042"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_deprecation archetypes_referencebrowserwidget setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_browserresource = buildPythonPackage rec { + name = "zope.browserresource-3.10.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.browserresource/zope.browserresource-3.10.3.zip"; + md5 = "dbfde30e82dbfa1a74c5da0cb5a4772d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_location zope_traversing zope_contenttype zope_configuration zope_publisher setuptools zope_schema zope_i18n zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_caching = buildPythonPackage rec { + name = "plone.caching-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.caching/plone.caching-1.0.zip"; + md5 = "2c2e3b27d13b9101c92dfed222fde36c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid five_globalrequest z3c_caching zope_interface zope2 zope_component setuptools plone_transformchain zope_schema plone_registry ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_locales = buildPythonPackage rec { + name = "zope.app.locales-3.6.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.locales/zope.app.locales-3.6.2.tar.gz"; + md5 = "bd2b4c6040e768f33004b1210d3207fa"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_i18nmessageid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_placelesstranslationservice = buildPythonPackage rec { + name = "Products.PlacelessTranslationService-2.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PlacelessTranslationService/Products.PlacelessTranslationService-2.0.3.zip"; + md5 = "a94635eb712563c5a002520713f5d6dc"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass zope_publisher zope_deferredimport zope_deprecation zope_interface python_gettext datetime zope_component zodb3 setuptools zope_annotation zope_i18n zope2 acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_z3cform = buildPythonPackage rec { + name = "plone.z3cform-0.8.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.z3cform/plone.z3cform-0.8.0.zip"; + md5 = "bdb23dd162544964d2f8f8f5f002e874"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 zope_component plone_batching zope_i18n z3c_form zope_browserpage setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_lifecycleevent = buildPythonPackage rec { + name = "zope.lifecycleevent-3.6.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.lifecycleevent/zope.lifecycleevent-3.6.2.tar.gz"; + md5 = "3ba978f3ba7c0805c81c2c79ea3edb33"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_event setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_form = buildPythonPackage rec { + name = "zope.app.form-4.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.form/zope.app.form-4.0.2.tar.gz"; + md5 = "3d2b164d9d37a71490a024aaeb412e91"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_browserpage zope_schema transaction zope_datetime zope_browsermenu zope_interface zope_exceptions zope_security zope_configuration zope_publisher zope_component zope_formlib zope_browser setuptools zope_proxy zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_tinymce = buildPythonPackage rec { + name = "Products.TinyMCE-1.3-1.3.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.TinyMCE/Products.TinyMCE-1.3.zip"; + md5 = "02bec5bac10a3fe5fff3d04beb46ac53"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_archetypes plone_app_imaging plone_namedfile plone_app_layout zope_schema products_resourceregistries zope_app_content plone_caching setuptools plone_outputfilters ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + collective_z3cform_datetimewidget = buildPythonPackage rec { + name = "collective.z3cform.datetimewidget-1.2.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/c/collective.z3cform.datetimewidget/collective.z3cform.datetimewidget-1.2.3.zip"; + md5 = "439117021c93f26c677510504ee245d3"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ z3c_form zope_deprecation zope_i18n setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_form = buildPythonPackage rec { + name = "z3c.form-3.0.0a2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.form/z3c.form-3.0.0a2.zip"; + md5 = "c4468ed0273901fb887cca9cfd1bb2cb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_publisher zope_site zope_pagetemplate zope_interface zope_browserresource six zope_security zope_configuration zope_component zope_event zope_traversing setuptools zope_schema zope_lifecycleevent zope_browser zope_i18n zope_location zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_dcworkflow = buildPythonPackage rec { + name = "Products.DCWorkflow-2.2.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.DCWorkflow/Products.DCWorkflow-2.2.4.tar.gz"; + md5 = "c90a16c4f3611015592ba8173a5f1863"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ zope2 products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + mechanize = buildPythonPackage rec { + name = "mechanize-0.2.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/m/mechanize/mechanize-0.2.5.zip"; + md5 = "a497ad4e875f7506ffcf8ad3ada4c2fc"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_iterate = buildPythonPackage rec { + name = "plone.app.iterate-2.1.10"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.iterate/plone.app.iterate-2.1.10.zip"; + md5 = "8bd270d8a3c9509e524a06e092a9b4c4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_viewlet zope_i18nmessageid zodb3 products_archetypes zope_interface plone_memoize products_cmfeditions datetime zope_component products_dcworkflow products_statusmessages zope_event setuptools products_cmfplacefulworkflow zope_schema zope_lifecycleevent zope_annotation zope2 plone_locking products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + accesscontrol = buildPythonPackage rec { + name = "AccessControl-3.0.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/A/AccessControl/AccessControl-3.0.6.zip"; + md5 = "a8ce472482adabf9ec969f3971a39a19"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_security zope_testing extensionclass zope_publisher restrictedpython zope_interface zope_deferredimport zope_schema zope_configuration datetime record transaction acquisition zodb3 zope_component zexceptions persistence ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_testing = buildPythonPackage rec { + name = "zope.testing-3.9.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.testing/zope.testing-3.9.7.tar.gz"; + md5 = "8999f3d143d416dc3c8b2a5bd6f33e28"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_exceptions setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_externaleditor = buildPythonPackage rec { + name = "Products.ExternalEditor-1.1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ExternalEditor/Products.ExternalEditor-1.1.0.zip"; + md5 = "475fea6e0b958c0c51cfdbfef2f4e623"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_publication = buildPythonPackage rec { + name = "zope.app.publication-3.12.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.publication/zope.app.publication-3.12.0.zip"; + md5 = "d8c521287f52fb9f40fa9b8c2acb4675"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_authentication zope_publisher zope_interface zope_location zope_traversing zope_component zope_error zodb3 setuptools zope_browser ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_filerepresentation = buildPythonPackage rec { + name = "zope.filerepresentation-3.6.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.filerepresentation/zope.filerepresentation-3.6.1.tar.gz"; + md5 = "4a7a434094f4bfa99a7f22e75966c359"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + six = buildPythonPackage rec { + name = "six-1.2.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/s/six/six-1.2.0.tar.gz"; + md5 = "2a5d1afc79912832ac78fd38e3d75d7e"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_dexterity = buildPythonPackage rec { + name = "plone.app.dexterity-2.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.dexterity/plone.app.dexterity-2.0.4.zip"; + md5 = "3fabdb2ec9fa0cfee0ffd4b7e9f05f5b"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ collective_z3cform_datetimewidget zope_interface zope_component plone_dexterity plone_autoform plone_behavior lxml zope_publisher products_genericsetup plone_supermodel plone_namedfile plone_app_content plone_app_textfield plone_app_z3cform plone_rfc822 plone_formwidget_namedfile z3c_form plone_portlets plone_app_uuid zope_browserpage plone_contentrules products_cmfplone zope_schema zope2 plone_app_layout plone_schemaeditor plone_z3cform setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_exceptions = buildPythonPackage rec { + name = "zope.exceptions-3.6.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.exceptions/zope.exceptions-3.6.2.tar.gz"; + md5 = "d7234d99d728abe3d9275346e8d24fd9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_layout = buildPythonPackage rec { + name = "plone.app.layout-2.3.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.layout/plone.app.layout-2.3.4.zip"; + md5 = "817819f27ad46fcb8a9d66e988fa08f2"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_deprecation zope_interface plone_memoize zope_dottedname datetime zope_component zope_annotation zope_publisher plone_i18n products_cmfdefault plone_app_viewletmanager plone_portlets plone_app_portlets zope_schema zope_viewlet acquisition zope2 setuptools zope_i18n plone_locking products_cmfcore products_cmfeditions ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_contenttype = buildPythonPackage rec { + name = "zope.contenttype-3.5.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.contenttype/zope.contenttype-3.5.5.zip"; + md5 = "c6ac80e6887de4108a383f349fbdf332"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + five_customerize = buildPythonPackage rec { + name = "five.customerize-1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/f/five.customerize/five.customerize-1.1.zip"; + md5 = "80772212a2d55150a6c070fc4638b0c7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing transaction zope_publisher zope_site zope_pagetemplate zope_interface zope_traversing zope_dottedname plone_portlets zope_component zope_componentvocabulary setuptools zope_schema zope_lifecycleevent zope2 zope_viewlet acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_subrequest = buildPythonPackage rec { + name = "plone.subrequest-1.6.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.subrequest/plone.subrequest-1.6.7.zip"; + md5 = "cc12f68a22565415b10dbeef0020baa4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_globalrequest five_globalrequest setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_site = buildPythonPackage rec { + name = "zope.site-3.9.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.site/zope.site-3.9.2.tar.gz"; + md5 = "36a0b8dfbd713ed452ce6973ab0a3ddb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_location zope_interface zope_security zope_container zope_event setuptools zope_lifecycleevent zope_annotation zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; wicked = buildPythonPackage rec { name = "wicked-1.1.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/w/wicked/${name}.zip"; - md5 = "f65611f11d547d7dc8e623bf87d3929d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - wsgi_intercept = buildPythonPackage rec { - name = "wsgi-intercept-0.4"; - src = fetchurl { url = "http://pypi.python.org/packages/source/w/wicked/wicked-1.1.10.zip"; md5 = "f65611f11d547d7dc8e623bf87d3929d"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_schema zope_container zope_traversing setuptools zope_lifecycleevent ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_autoinclude = buildPythonPackage rec { - name = "z3c.autoinclude-0.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.autoinclude/${name}.zip"; - md5 = "6a615ae18c12b459bceb3ae28e8e7709"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_schemaeditor = buildPythonPackage rec { + name = "plone.schemaeditor-1.3.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.schemaeditor/plone.schemaeditor-1.3.1.zip"; + md5 = "81a5a66cc07b20c554c68ad2ae831b2f"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 zope_publisher zope_container z3c_form zope_interface zope_component setuptools zope_schema zope_lifecycleevent plone_autoform plone_z3cform ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_batching = buildPythonPackage rec { - name = "z3c.batching-1.1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.batching/${name}.tar.gz"; - md5 = "d1dc834781d228127ca6d15301757863"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_blobfile = buildPythonPackage rec { - name = "z3c.blobfile-0.1.5"; - + plone_app_uuid = buildPythonPackage rec { + name = "plone.app.uuid-1.0"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.blobfile/${name}.zip"; - md5 = "2e806640aa2f3b51e4578f35c44f567a"; + url = "http://pypi.python.org/packages/source/p/plone.app.uuid/plone.app.uuid-1.0.zip"; + md5 = "9ca8dcfb09a8a0d6bbee0f28073c3d3f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ plone_indexer zope_interface zope_publisher plone_uuid setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_caching = buildPythonPackage rec { - name = "z3c.caching-2.0a1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.caching/${name}.tar.gz"; - md5 = "17f250b5084c2324a7d15c6810ee628e"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_checkversions = buildPythonPackage rec { - name = "z3c.checkversions-0.4.1"; - + unittest2 = buildPythonPackage rec { + name = "unittest2-0.5.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.checkversions/${name}.tar.gz"; - md5 = "907f3a28aac04ad98fb3c4c5879a1eaf"; + url = "http://pypi.python.org/packages/source/u/unittest2/unittest2-0.5.1.zip"; + md5 = "1527fb89e38343945af1166342d851ee"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_coverage = buildPythonPackage rec { - name = "z3c.coverage-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.coverage/${name}.tar.gz"; - md5 = "d7f323a6c89f848fab38209f2162294d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_form = buildPythonPackage rec { - name = "z3c.form-2.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.form/${name}.tar.gz"; - md5 = "f029f83dd226f695f55049ed1ecee95e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_formwidget_query = buildPythonPackage rec { - name = "z3c.formwidget.query-0.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.formwidget.query/${name}.zip"; - md5 = "d9f7960b1a5a81d8ba5241530f496522"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_objpath = buildPythonPackage rec { - name = "z3c.objpath-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.objpath/${name}.tar.gz"; - md5 = "63641934441b255ebeeaeabc618f01ed"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_ptcompat = buildPythonPackage rec { - name = "z3c.ptcompat-1.0.1"; - + persistence = buildPythonPackage rec { + name = "Persistence-2.13.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.ptcompat/${name}.tar.gz"; - md5 = "bfe1ba6f9a38679705bd3eb5a5a2d7c4"; + url = "http://pypi.python.org/packages/source/P/Persistence/Persistence-2.13.2.zip"; + md5 = "92693648ccdc59c8fc71f7f06b1d228c"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_recipe_compattest = buildPythonPackage rec { - name = "z3c.recipe.compattest-0.12.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.recipe.compattest/${name}.tar.gz"; - md5 = "ed5a1bde7ce384154721913846c736c7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_recipe_depgraph = buildPythonPackage rec { - name = "z3c.recipe.depgraph-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.recipe.depgraph/${name}.zip"; - md5 = "eb734419815146eb5b7080b5e17346dc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ extensionclass zodb3 ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_recipe_sphinxdoc = buildPythonPackage rec { - name = "z3c.recipe.sphinxdoc-0.0.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.recipe.sphinxdoc/${name}.tar.gz"; - md5 = "86e6965c919b43fa1de07588580f8790"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_relationfield = buildPythonPackage rec { - name = "z3c.relationfield-0.6.2"; - + products_zopeversioncontrol = buildPythonPackage rec { + name = "Products.ZopeVersionControl-1.1.3"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.relationfield/${name}.zip"; - md5 = "e34a6230cdfbd4a0bc1c90a77600e0e7"; + url = "http://pypi.python.org/packages/source/P/Products.ZopeVersionControl/Products.ZopeVersionControl-1.1.3.zip"; + md5 = "238239102f3ac798ee4f4c53343a561f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ transaction zope_interface datetime zodb3 setuptools zope2 acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_template = buildPythonPackage rec { - name = "z3c.template-1.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.template/${name}.tar.gz"; - md5 = "330e2dba8cd064d5790392afd9f460dd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_zcmlhook = buildPythonPackage rec { - name = "z3c.zcmlhook-1.0b1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.zcmlhook/${name}.tar.gz"; - md5 = "7b6c80146f5930409eb0b355ddf3daeb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_lockfile = buildPythonPackage rec { - name = "zc.lockfile-1.0.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.lockfile/${name}.tar.gz"; - md5 = "6cf83766ef9935c33e240b0904c7a45e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_recipe_egg = buildPythonPackage rec { - name = "zc.recipe.egg-1.3.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.recipe.egg/${name}.tar.gz"; - md5 = "1cb6af73f527490dde461d3614a36475"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_recipe_testrunner = buildPythonPackage rec { - name = "zc.recipe.testrunner-1.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.recipe.testrunner/${name}.tar.gz"; - md5 = "1be4a1518e5b94890634468118242850"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_relation = buildPythonPackage rec { - name = "zc.relation-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.relation/${name}.tar.gz"; - md5 = "7e479095954fc6d8f648951434695837"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_resourcelibrary = buildPythonPackage rec { - name = "zc.resourcelibrary-1.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.resourcelibrary/${name}.tar.gz"; - md5 = "bebe49f3e930f896a8ea75531bf3fae8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_sourcefactory = buildPythonPackage rec { - name = "zc.sourcefactory-0.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.sourcefactory/${name}.tar.gz"; - md5 = "532dfd0a72489023268c19e3788b105d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zconfig = buildPythonPackage rec { - name = "ZConfig-2.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZConfig/${name}.zip"; - md5 = "5c932690a70c8907efd240cdd76a7bc4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zdaemon = buildPythonPackage rec { - name = "zdaemon-2.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zdaemon/${name}.tar.gz"; - md5 = "291a875f82e812110557eb6704af8afe"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zexceptions = buildPythonPackage rec { - name = "zExceptions-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zExceptions/${name}.zip"; - md5 = "4c679696c959040d8e656ef85ae40136"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zlog = buildPythonPackage rec { - name = "zLOG-2.11.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zLOG/${name}.tar.gz"; - md5 = "68073679aaa79ac5a7b6a5c025467147"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zodb3 = buildPythonPackage rec { - name = "ZODB3-3.10.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZODB3/${name}.tar.gz"; - md5 = "6f180c6897a1820948fee2a6290503cd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zodbcode = buildPythonPackage rec { - name = "zodbcode-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zodbcode/${name}.tar.gz"; - md5 = "9b128f89aa2a2117fae4f74757eefeff"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope2 = buildPythonPackage rec { - name = "Zope2-2.13.19"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/Zope2/${name}.zip"; - md5 = "26fee311aace7c12e406543ea91eb42a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_annotation = buildPythonPackage rec { - name = "zope.annotation-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.annotation/${name}.tar.gz"; - md5 = "4238153279d3f30ab5613438c8e76380"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_apidoc = buildPythonPackage rec { - name = "zope.app.apidoc-3.7.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.apidoc/${name}.zip"; - md5 = "91e969b2d1089bb0a6a303990d269f0a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_applicationcontrol = buildPythonPackage rec { - name = "zope.app.applicationcontrol-3.5.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.applicationcontrol/${name}.tar.gz"; - md5 = "f785c13698192c83024fda75f1f3d822"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_appsetup = buildPythonPackage rec { - name = "zope.app.appsetup-3.14.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.appsetup/${name}.tar.gz"; - md5 = "2c3da1f514e6793e2bf612cb06ad9076"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_authentication = buildPythonPackage rec { - name = "zope.app.authentication-3.8.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.authentication/${name}.tar.gz"; - md5 = "f8eb74fbdeebfd32c5e15c0f03aa3623"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_basicskin = buildPythonPackage rec { - name = "zope.app.basicskin-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.basicskin/${name}.tar.gz"; - md5 = "75915a315f336a5b614db67df1093eb3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_broken = buildPythonPackage rec { - name = "zope.app.broken-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.broken/${name}.tar.gz"; - md5 = "e6a7efdd1ea1facfd8c5ba4b25d395cb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_cache = buildPythonPackage rec { - name = "zope.app.cache-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.cache/${name}.zip"; - md5 = "8dd74574e869ce236ced0de7e349bb5c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_catalog = buildPythonPackage rec { - name = "zope.app.catalog-3.8.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.catalog/${name}.tar.gz"; - md5 = "1ce21dee4e8256cfe254f8ee24c6ecef"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_component = buildPythonPackage rec { - name = "zope.app.component-3.9.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.component/${name}.tar.gz"; - md5 = "bc2dce245d2afe462529c350956711e0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_container = buildPythonPackage rec { - name = "zope.app.container-3.9.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.container/${name}.tar.gz"; - md5 = "1e286c59f0166e517d67ddd723641c84"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_content = buildPythonPackage rec { - name = "zope.app.content-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.content/${name}.tar.gz"; - md5 = "0ac6a6fcb5dd6f845759f998d8e8cbb3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_dav = buildPythonPackage rec { - name = "zope.app.dav-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.dav/${name}.tar.gz"; - md5 = "19ec8dc5f7ad21468dea1c46e86d95dd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_debug = buildPythonPackage rec { - name = "zope.app.debug-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.debug/${name}.tar.gz"; - md5 = "1a9d349b14d91137b57da52a2b9d185f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_debugskin = buildPythonPackage rec { - name = "zope.app.debugskin-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.debugskin/${name}.tar.gz"; - md5 = "bd95d2848aa3108e53717d13b3c0924d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_dependable = buildPythonPackage rec { - name = "zope.app.dependable-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.dependable/${name}.zip"; - md5 = "5f180620a880e6ec754e3a34bd110891"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_error = buildPythonPackage rec { - name = "zope.app.error-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.error/${name}.tar.gz"; - md5 = "bab82dd06233e9b5e34e9709e8993ace"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_exception = buildPythonPackage rec { - name = "zope.app.exception-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.exception/${name}.tar.gz"; - md5 = "af161d3e7c17db7f56f7816a6f2d980c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_file = buildPythonPackage rec { - name = "zope.app.file-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.file/${name}.tar.gz"; - md5 = "fff140c36a2872c85b55433835ac3b98"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_folder = buildPythonPackage rec { - name = "zope.app.folder-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.folder/${name}.tar.gz"; - md5 = "5ba3a2a7ec527a7eb0cc3c2eb7bb75e9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_form = buildPythonPackage rec { - name = "zope.app.form-4.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.form/${name}.tar.gz"; - md5 = "3d2b164d9d37a71490a024aaeb412e91"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_ftp = buildPythonPackage rec { - name = "zope.app.ftp-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.ftp/${name}.tar.gz"; - md5 = "b0769f90023156a86cb3f46040e6b5b0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_generations = buildPythonPackage rec { - name = "zope.app.generations-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.generations/${name}.tar.gz"; - md5 = "ca74e0f4a01ad8767e1bba6332c39aa2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_http = buildPythonPackage rec { - name = "zope.app.http-3.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.http/${name}.tar.gz"; - md5 = "26f73a3affecefc3aff960cd8b088681"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_i18n = buildPythonPackage rec { - name = "zope.app.i18n-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.i18n/${name}.tar.gz"; - md5 = "c8573307ba08926214b7944a05e43632"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_interface = buildPythonPackage rec { - name = "zope.app.interface-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.interface/${name}.tar.gz"; - md5 = "b15522275a435c609bd44f2f019bd13c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_interpreter = buildPythonPackage rec { - name = "zope.app.interpreter-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.interpreter/${name}.tar.gz"; - md5 = "fb8a2aa57dcfa3af2f30801dfafc78c4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_intid = buildPythonPackage rec { - name = "zope.app.intid-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.intid/${name}.tar.gz"; - md5 = "0d2c1daf5d1d6fd09351b652042a2dac"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_keyreference = buildPythonPackage rec { - name = "zope.app.keyreference-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.keyreference/${name}.tar.gz"; - md5 = "78539e472016a8ca57b34b6ea0ab7d9d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_locales = buildPythonPackage rec { - name = "zope.app.locales-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.locales/${name}.tar.gz"; - md5 = "bd2b4c6040e768f33004b1210d3207fa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_localpermission = buildPythonPackage rec { - name = "zope.app.localpermission-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.localpermission/${name}.tar.gz"; - md5 = "121509781b19ce55ebe890fa408702fc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_locking = buildPythonPackage rec { - name = "zope.app.locking-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.locking/${name}.tar.gz"; - md5 = "4edce1ba26f6c56b0eb79f703d8a80fe"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_onlinehelp = buildPythonPackage rec { - name = "zope.app.onlinehelp-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.onlinehelp/${name}.tar.gz"; - md5 = "67d0be66965e34b24ef18c269da62e4c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_pagetemplate = buildPythonPackage rec { - name = "zope.app.pagetemplate-3.11.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.pagetemplate/${name}.tar.gz"; - md5 = "2d304729c0d6a9ab67dd5ea852f19476"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_preference = buildPythonPackage rec { - name = "zope.app.preference-3.8.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.preference/${name}.tar.gz"; - md5 = "ab6906261854c61ff9f0a13c7612d3e8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_preview = buildPythonPackage rec { - name = "zope.app.preview-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.preview/${name}.tar.gz"; - md5 = "e698c10b043fb944150a825af9af536e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_principalannotation = buildPythonPackage rec { - name = "zope.app.principalannotation-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.principalannotation/${name}.tar.gz"; - md5 = "29c6bf8e817330b0d29de253686a68f2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_publication = buildPythonPackage rec { - name = "zope.app.publication-3.12.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.publication/${name}.zip"; - md5 = "d8c521287f52fb9f40fa9b8c2acb4675"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_publisher = buildPythonPackage rec { - name = "zope.app.publisher-3.10.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.publisher/${name}.zip"; - md5 = "66e9110e2967d8d204a65a98e2227404"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_renderer = buildPythonPackage rec { - name = "zope.app.renderer-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.renderer/${name}.tar.gz"; - md5 = "1cc605baf5dab7db50b0a0fd218566f3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_rotterdam = buildPythonPackage rec { - name = "zope.app.rotterdam-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.rotterdam/${name}.tar.gz"; - md5 = "4cb3c53844bc7481f9b7d60f3c5e3a85"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_schema = buildPythonPackage rec { - name = "zope.app.schema-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.schema/${name}.tar.gz"; - md5 = "92b7c3f4512f3433acc931ecb6ffc936"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_security = buildPythonPackage rec { - name = "zope.app.security-3.7.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.security/${name}.tar.gz"; - md5 = "c7cec00f6d8379b93180faf6ffaa89ea"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_securitypolicy = buildPythonPackage rec { - name = "zope.app.securitypolicy-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.securitypolicy/${name}.tar.gz"; - md5 = "e3c6ef1db3228dbbb60a452c1a2a8f27"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_server = buildPythonPackage rec { - name = "zope.app.server-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.server/${name}.tar.gz"; - md5 = "d3a75eaf2a3f4759352dd3243dfb1d50"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_session = buildPythonPackage rec { - name = "zope.app.session-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.session/${name}.tar.gz"; - md5 = "93467bf6854d714b53e71f36a9d770f3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_skins = buildPythonPackage rec { - name = "zope.app.skins-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.skins/${name}.tar.gz"; - md5 = "a0bc210720ee50e40adb93e9c685e884"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_testing = buildPythonPackage rec { - name = "zope.app.testing-3.7.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.testing/${name}.tar.gz"; - md5 = "6fd3eb11e24973a3dbdf5f1ab655c0d4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_tree = buildPythonPackage rec { - name = "zope.app.tree-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.tree/${name}.tar.gz"; - md5 = "fbde3403c682bc7cf7b73d43cd2eed3a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_twisted = buildPythonPackage rec { - name = "zope.app.twisted-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.twisted/${name}.tar.gz"; - md5 = "9e98868b8be8a0c4f720036366364a67"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_undo = buildPythonPackage rec { - name = "zope.app.undo-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.undo/${name}.tar.gz"; - md5 = "7a40060aa0451a635a31d6e12d17a82e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_wsgi = buildPythonPackage rec { - name = "zope.app.wsgi-3.9.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.wsgi/${name}.tar.gz"; - md5 = "9c766908b720d777e02e0b0a9ac8a8a1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_zcmlfiles = buildPythonPackage rec { - name = "zope.app.zcmlfiles-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.zcmlfiles/${name}.tar.gz"; - md5 = "0e8991d2bed71ee6b98a2c48d21e1126"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_zopeappgenerations = buildPythonPackage rec { - name = "zope.app.zopeappgenerations-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.zopeappgenerations/${name}.tar.gz"; - md5 = "4c8a0bc409677f8b17dc57737d41f919"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_zptpage = buildPythonPackage rec { - name = "zope.app.zptpage-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.zptpage/${name}.tar.gz"; - md5 = "aed8ec49e10911bd1e9d2c9d467fd098"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_applicationcontrol = buildPythonPackage rec { - name = "zope.applicationcontrol-3.5.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.applicationcontrol/${name}.tar.gz"; - md5 = "5e4bb54afe55185e15bd9d1ba3750857"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_authentication = buildPythonPackage rec { - name = "zope.authentication-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.authentication/${name}.zip"; - md5 = "7d6bb340610518f2fc71213cfeccda68"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_broken = buildPythonPackage rec { - name = "zope.broken-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.broken/${name}.zip"; - md5 = "eff24d7918099a3e899ee63a9c31bee6"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browser = buildPythonPackage rec { - name = "zope.browser-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browser/${name}.zip"; - md5 = "4ff0ddbf64c45bfcc3189e35f4214ded"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browsermenu = buildPythonPackage rec { - name = "zope.browsermenu-3.9.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browsermenu/${name}.zip"; - md5 = "a47c7b1e786661c912a1150bf8d1f83f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browserpage = buildPythonPackage rec { - name = "zope.browserpage-3.12.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browserpage/${name}.tar.gz"; - md5 = "a543ef3cb1b42f7233b3fca23dc9ea60"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browserresource = buildPythonPackage rec { - name = "zope.browserresource-3.10.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browserresource/${name}.zip"; - md5 = "dbfde30e82dbfa1a74c5da0cb5a4772d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_cachedescriptors = buildPythonPackage rec { - name = "zope.cachedescriptors-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.cachedescriptors/${name}.zip"; - md5 = "263459a95238fd61d17e815d97ca49ce"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_catalog = buildPythonPackage rec { - name = "zope.catalog-3.8.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.catalog/${name}.tar.gz"; - md5 = "f9baff3997e337f0a23ac158258c8842"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_component = buildPythonPackage rec { - name = "zope.component-3.9.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.component/${name}.tar.gz"; - md5 = "22780b445b1b479701c05978055d1c82"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_componentvocabulary = buildPythonPackage rec { - name = "zope.componentvocabulary-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.componentvocabulary/${name}.tar.gz"; - md5 = "1c8fa82ca1ab1f4b0bd2455a31fde22b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_configuration = buildPythonPackage rec { - name = "zope.configuration-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.configuration/${name}.zip"; - md5 = "5b0271908ef26c05059eda76928896ea"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_container = buildPythonPackage rec { - name = "zope.container-3.11.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.container/${name}.tar.gz"; - md5 = "fc66d85a17b8ffb701091c9328983dcc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_contentprovider = buildPythonPackage rec { - name = "zope.contentprovider-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.contentprovider/${name}.tar.gz"; - md5 = "1bb2132551175c0123f17939a793f812"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_contenttype = buildPythonPackage rec { - name = "zope.contenttype-3.5.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.contenttype/${name}.zip"; - md5 = "c6ac80e6887de4108a383f349fbdf332"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_copy = buildPythonPackage rec { - name = "zope.copy-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.copy/${name}.tar.gz"; - md5 = "a9836a5d36cd548be45210eb00407337"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_copypastemove = buildPythonPackage rec { - name = "zope.copypastemove-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.copypastemove/${name}.tar.gz"; - md5 = "f335940686d15cfc5520c42f2494a924"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_datetime = buildPythonPackage rec { - name = "zope.datetime-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.datetime/${name}.tar.gz"; - md5 = "4dde22d34f41a0a4f0c5a345e6d11ee9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_deferredimport = buildPythonPackage rec { - name = "zope.deferredimport-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.deferredimport/${name}.tar.gz"; - md5 = "68fce3bf4f011d4a840902fd763884ee"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_deprecation = buildPythonPackage rec { - name = "zope.deprecation-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.deprecation/${name}.tar.gz"; - md5 = "8a47b0f8e1fa4e833007e5b8351bb1d4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_documenttemplate = buildPythonPackage rec { - name = "zope.documenttemplate-3.4.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.documenttemplate/${name}.tar.gz"; - md5 = "d5c302534ee0913c39bdc227e1592cb7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_dottedname = buildPythonPackage rec { - name = "zope.dottedname-3.4.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.dottedname/${name}.tar.gz"; - md5 = "62d639f75b31d2d864fe5982cb23959c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_dublincore = buildPythonPackage rec { - name = "zope.dublincore-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.dublincore/${name}.tar.gz"; - md5 = "2e34e42e454d896feb101ac74af62ded"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_error = buildPythonPackage rec { - name = "zope.error-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.error/${name}.tar.gz"; - md5 = "281445a906458ff5f18f56923699a127"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_event = buildPythonPackage rec { - name = "zope.event-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.event/${name}.tar.gz"; - md5 = "6e8af2a16157a74885d4f0d88137cefb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_exceptions = buildPythonPackage rec { - name = "zope.exceptions-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.exceptions/${name}.tar.gz"; - md5 = "d7234d99d728abe3d9275346e8d24fd9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_file = buildPythonPackage rec { - name = "zope.file-0.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.file/${name}.tar.gz"; - md5 = "5df3b63c678f4b445be345f1dff1bc9b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_filerepresentation = buildPythonPackage rec { - name = "zope.filerepresentation-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.filerepresentation/${name}.tar.gz"; - md5 = "4a7a434094f4bfa99a7f22e75966c359"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_formlib = buildPythonPackage rec { - name = "zope.formlib-4.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.formlib/${name}.zip"; - md5 = "eed9c94382d11a4dececd0a48ac1d3f2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_globalrequest = buildPythonPackage rec { - name = "zope.globalrequest-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.globalrequest/${name}.zip"; - md5 = "ae6ff02db5ba89c1fb96ed7a73ca1cfa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_hookable = buildPythonPackage rec { - name = "zope.hookable-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.hookable/${name}.tar.gz"; - md5 = "fe6713aef5b6c0f4963fb984bf326da0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_html = buildPythonPackage rec { - name = "zope.html-2.1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.html/${name}.tar.gz"; - md5 = "868cb987e400b9a290355a1207d47143"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_i18n = buildPythonPackage rec { - name = "zope.i18n-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.i18n/${name}.tar.gz"; - md5 = "a6fe9d9ad53dd7e94e87cd58fb67d3b7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_i18nmessageid = buildPythonPackage rec { - name = "zope.i18nmessageid-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.i18nmessageid/${name}.tar.gz"; - md5 = "cb84bf61c2b7353e3b7578057fbaa264"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_index = buildPythonPackage rec { - name = "zope.index-3.6.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.index/${name}.tar.gz"; - md5 = "65c34f446f54ffd711e34ede9eb89dad"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_interface = buildPythonPackage rec { - name = "zope.interface-3.6.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.interface/${name}.zip"; - md5 = "9df962180fbbb54eb1875cff9fe436e5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_intid = buildPythonPackage rec { - name = "zope.intid-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.intid/${name}.zip"; - md5 = "241f2fe62fb60f6319d9902b12bc333d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_keyreference = buildPythonPackage rec { - name = "zope.keyreference-3.6.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.keyreference/${name}.tar.gz"; - md5 = "3774c90f236f880547f4c042ee0997e9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_kgs = buildPythonPackage rec { - name = "zope.kgs-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.kgs/${name}.tar.gz"; - md5 = "15ed01a270bddcf253b1c08479549692"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_lifecycleevent = buildPythonPackage rec { - name = "zope.lifecycleevent-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.lifecycleevent/${name}.tar.gz"; - md5 = "3ba978f3ba7c0805c81c2c79ea3edb33"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - zope_location = buildPythonPackage rec { name = "zope.location-3.9.1"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.location/${name}.tar.gz"; + url = "http://pypi.python.org/packages/source/z/zope.location/zope.location-3.9.1.tar.gz"; md5 = "1684a8f986099d15296f670c58e713d8"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_schema zope_component setuptools zope_proxy ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_login = buildPythonPackage rec { - name = "zope.login-1.0.0"; - + zope_browsermenu = buildPythonPackage rec { + name = "zope.browsermenu-3.9.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.login/${name}.zip"; - md5 = "4eceb766329125a80aee1b4b4809869a"; + url = "http://pypi.python.org/packages/source/z/zope.browsermenu/zope.browsermenu-3.9.1.zip"; + md5 = "a47c7b1e786661c912a1150bf8d1f83f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope_publisher zope_interface zope_traversing zope_component zope_security zope_configuration zope_pagetemplate setuptools zope_schema zope_browser ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_mimetype = buildPythonPackage rec { - name = "zope.mimetype-1.3.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.mimetype/${name}.tar.gz"; - md5 = "c865758c896707287f86ba603f06a84b"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_minmax = buildPythonPackage rec { - name = "zope.minmax-1.1.2"; - + plone_app_workflow = buildPythonPackage rec { + name = "plone.app.workflow-2.1.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.minmax/${name}.tar.gz"; - md5 = "0c3fbac9623f402ed758dace80080d55"; + url = "http://pypi.python.org/packages/source/p/plone.app.workflow/plone.app.workflow-2.1.2.zip"; + md5 = "8da95b396f3a9ec54895085ef12202a7"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_mkzeoinstance = buildPythonPackage rec { - name = "zope.mkzeoinstance-3.9.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.mkzeoinstance/${name}.tar.gz"; - md5 = "2c2dcf7cc7de58f7d009ca3294f54377"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_modulealias = buildPythonPackage rec { - name = "zope.modulealias-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.modulealias/${name}.tar.gz"; - md5 = "77f4603524b578a5c6b4b4fdde58a484"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_pagetemplate = buildPythonPackage rec { - name = "zope.pagetemplate-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.pagetemplate/${name}.zip"; - md5 = "834a4bf702c05fba1e669677b4dc871f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid transaction products_genericsetup zope_site zope_interface plone_memoize zope_testing datetime zope_component products_statusmessages zope2 setuptools products_dcworkflow zope_schema zope_i18n products_cmfcore acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_password = buildPythonPackage rec { - name = "zope.password-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.password/${name}.tar.gz"; - md5 = "230f93a79020c8a3dc01d79832546e3c"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_pluggableauth = buildPythonPackage rec { - name = "zope.pluggableauth-1.0.3"; - + plone_locking = buildPythonPackage rec { + name = "plone.locking-2.0.4"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.pluggableauth/${name}.tar.gz"; - md5 = "85d16cb2e5b41bf2a438828857719566"; + url = "http://pypi.python.org/packages/source/p/plone.locking/plone.locking-2.0.4.zip"; + md5 = "a7f8b8db78f57272d351d7fe0d067eb2"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_preference = buildPythonPackage rec { - name = "zope.preference-3.8.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.preference/${name}.tar.gz"; - md5 = "bb8b1c9f65387a51be429407528cc453"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_principalannotation = buildPythonPackage rec { - name = "zope.principalannotation-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.principalannotation/${name}.tar.gz"; - md5 = "652685ca13cefaad78dbc5c6507fc9ab"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_principalregistry = buildPythonPackage rec { - name = "zope.principalregistry-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.principalregistry/${name}.tar.gz"; - md5 = "9b90adc7915d9bbed4237db432fc70c2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_processlifetime = buildPythonPackage rec { - name = "zope.processlifetime-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.processlifetime/${name}.tar.gz"; - md5 = "69604bfd668a01ebebdd616a8f26ccfe"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_proxy = buildPythonPackage rec { - name = "zope.proxy-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.proxy/${name}.zip"; - md5 = "a400b0a26624b17fa889dbcaa989d440"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_interface datetime zope_component zodb3 setuptools zope_schema zope_annotation zope_viewlet products_cmfcore acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_ptresource = buildPythonPackage rec { - name = "zope.ptresource-3.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.ptresource/${name}.tar.gz"; - md5 = "f4645e51c15289d3fdfb4139039e18e9"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_publisher = buildPythonPackage rec { - name = "zope.publisher-3.12.6"; - + zope_dottedname = buildPythonPackage rec { + name = "zope.dottedname-3.4.6"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.publisher/${name}.tar.gz"; - md5 = "495131970cc7cb14de8e517fb3857ade"; + url = "http://pypi.python.org/packages/source/z/zope.dottedname/zope.dottedname-3.4.6.tar.gz"; + md5 = "62d639f75b31d2d864fe5982cb23959c"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_ramcache = buildPythonPackage rec { - name = "zope.ramcache-1.0"; - + zope_cachedescriptors = buildPythonPackage rec { + name = "zope.cachedescriptors-3.5.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.ramcache/${name}.zip"; - md5 = "87289e15f0e51f50704adda1557c02a7"; + url = "http://pypi.python.org/packages/source/z/zope.cachedescriptors/zope.cachedescriptors-3.5.1.zip"; + md5 = "263459a95238fd61d17e815d97ca49ce"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_rdb = buildPythonPackage rec { - name = "zope.rdb-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.rdb/${name}.tar.gz"; - md5 = "2068b469c07c9c0b41392cd9839e3728"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_schema = buildPythonPackage rec { - name = "zope.schema-4.2.1"; - + plone_app_collection = buildPythonPackage rec { + name = "plone.app.collection-1.0.8"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.schema/${name}.zip"; - md5 = "bfa0460b68df0dbbf7a5dc793b0eecc6"; + url = "http://pypi.python.org/packages/source/p/plone.app.collection/plone.app.collection-1.0.8.zip"; + md5 = "8bbd299daa04b35ecfad3c13afa7aba0"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ plone_portlet_collection zope_i18nmessageid transaction plone_app_contentlisting zope_component plone_app_vocabularies plone_app_form products_validation zope_configuration plone_portlets setuptools products_archetypes zope2 plone_app_portlets zope_interface zope_schema products_cmfquickinstallertool archetypes_querywidget products_cmfcore zope_formlib ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_security = buildPythonPackage rec { - name = "zope.security-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.security/${name}.tar.gz"; - md5 = "072ab8d11adc083eace11262da08630c"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_securitypolicy = buildPythonPackage rec { - name = "zope.securitypolicy-3.7.0"; - + zc_lockfile = buildPythonPackage rec { + name = "zc.lockfile-1.0.0"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.securitypolicy/${name}.tar.gz"; - md5 = "fe9ba029384c0640b2ba175ba1805cd8"; + url = "http://pypi.python.org/packages/source/z/zc.lockfile/zc.lockfile-1.0.0.tar.gz"; + md5 = "6cf83766ef9935c33e240b0904c7a45e"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + lxml = buildPythonPackage rec { + name = "lxml-2.3.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/l/lxml/lxml-2.3.6.tar.gz"; + md5 = "d5d886088e78b1bdbfd66d328fc2d0bc"; + }; + buildInputs = [ pkgs.libxml2 pkgs.libxslt ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_contentrules = buildPythonPackage rec { + name = "plone.contentrules-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.contentrules/plone.contentrules-2.0.2.zip"; + md5 = "a32370656c4fd58652fcd8a234db69c5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_container zope_interface zope_testing zope_configuration zope_component zope_componentvocabulary setuptools zodb3 zope_schema zope_lifecycleevent zope_annotation ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; zope_sendmail = buildPythonPackage rec { name = "zope.sendmail-3.7.5"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.sendmail/${name}.tar.gz"; + url = "http://pypi.python.org/packages/source/z/zope.sendmail/zope.sendmail-3.7.5.tar.gz"; md5 = "8a513ecf2b41cad849f6607bf16d6818"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid transaction zope_interface zope_configuration setuptools zope_schema zope_component ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_sequencesort = buildPythonPackage rec { - name = "zope.sequencesort-3.4.0"; - + zope_formlib = buildPythonPackage rec { + name = "zope.formlib-4.0.6"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.sequencesort/${name}.tar.gz"; - md5 = "cfc35fc426a47f5c0ee43c416224b864"; + url = "http://pypi.python.org/packages/source/z/zope.formlib/zope.formlib-4.0.6.zip"; + md5 = "eed9c94382d11a4dececd0a48ac1d3f2"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_server = buildPythonPackage rec { - name = "zope.server-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.server/${name}.tar.gz"; - md5 = "2a758720fd6d9bdfb1cea8d644c27923"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_session = buildPythonPackage rec { - name = "zope.session-3.9.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.session/${name}.tar.gz"; - md5 = "2934e9f2daa01555e9a7a1f9945c3493"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_site = buildPythonPackage rec { - name = "zope.site-3.9.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.site/${name}.tar.gz"; - md5 = "36a0b8dfbd713ed452ce6973ab0a3ddb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_size = buildPythonPackage rec { - name = "zope.size-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.size/${name}.tar.gz"; - md5 = "55d9084dfd9dcbdb5ad2191ceb5ed03d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_structuredtext = buildPythonPackage rec { - name = "zope.structuredtext-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.structuredtext/${name}.tar.gz"; - md5 = "eabbfb983485d0879322bc878d2478a0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_tal = buildPythonPackage rec { - name = "zope.tal-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.tal/${name}.zip"; - md5 = "13869f292ba36b294736b7330b1396fd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope_publisher zope_schema zope_datetime zope_interface zope_traversing zope_security zope_component pytz zope_event zope_browser setuptools zope_lifecycleevent zope_i18n zope_browserpage ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_tales = buildPythonPackage rec { - name = "zope.tales-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.tales/${name}.tar.gz"; - md5 = "1c5060bd766a0a18632b7879fc9e4e1e"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_testbrowser = buildPythonPackage rec { - name = "zope.testbrowser-3.11.1"; - + plone_app_caching = buildPythonPackage rec { + name = "plone.app.caching-1.1.3"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.testbrowser/${name}.tar.gz"; - md5 = "64abbee892121e7f1a91aed12cfc155a"; + url = "http://pypi.python.org/packages/source/p/plone.app.caching/plone.app.caching-1.1.3.zip"; + md5 = "1975506ecf8d42944946dbb2b8f8dc01"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_testing = buildPythonPackage rec { - name = "zope.testing-3.9.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.testing/${name}.tar.gz"; - md5 = "8999f3d143d416dc3c8b2a5bd6f33e28"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_thread = buildPythonPackage rec { - name = "zope.thread-3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.thread/${name}.tar.gz"; - md5 = "3567037865b746c933d4af86e5aefa35"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_traversing = buildPythonPackage rec { - name = "zope.traversing-3.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.traversing/${name}.zip"; - md5 = "eaad8fc7bbef126f9f8616b074ec00aa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfdynamicviewfti z3c_form zope_interface plone_memoize zope_component plone_caching zope_publisher products_genericsetup plone_app_registry z3c_zcmlhook setuptools plone_app_z3cform products_statusmessages python_dateutil plone_cachepurging acquisition zope2 zope_pagetemplate zope_browserresource plone_protect plone_registry products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_viewlet = buildPythonPackage rec { - name = "zope.viewlet-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.viewlet/${name}.tar.gz"; - md5 = "367e03096df57e2f9b74fff43f7901f9"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_xmlpickle = buildPythonPackage rec { - name = "zope.xmlpickle-3.4.0"; - + products_cmfplone = buildPythonPackage rec { + name = "Products.CMFPlone-4.3rc1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.xmlpickle/${name}.tar.gz"; - md5 = "b579f35546b095aec2c890d3f8a46911"; + url = "http://pypi.python.org/packages/source/P/Products.CMFPlone/Products.CMFPlone-4.3rc1.zip"; + md5 = "cc861f8fa93f50a531cb850ea5a9fa37"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zopeundo = buildPythonPackage rec { - name = "ZopeUndo-2.12.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZopeUndo/${name}.zip"; - md5 = "2b8da09d1b98d5558f62e12f6e52c401"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfdynamicviewfti plone_app_blob products_dcworkflow products_extendedpathindex zope_dottedname datetime zope_traversing products_tinymce zope_publisher plonetheme_classic plone_batching plone_fieldsets products_cmfdefault acquisition plone_app_contentlisting products_externaleditor products_pluginregistry products_cmfeditions products_resourceregistries zope_tal plone_app_jquerytools products_genericsetup pillow five_localsitemanager plone_app_vocabularies zope_location zope_deferredimport products_plonelanguagetool borg_localrole zope_i18n plone_browserlayer plone_theme plone_memoize plone_app_contentmenu plone_app_i18n zope_component products_mimetypesregistry plone_app_customerize plone_app_folder plone_registry zope_i18nmessageid plone_app_upgrade products_cmfdifftool five_customerize plone_app_search products_portaltransforms plone_app_controlpanel plone_app_locales plone_app_linkintegrity zope2 plone_contentrules plone_app_portlets products_plonepas zope_pagetemplate zodb3 plone_locking products_cmfformcontroller zope_deprecation plone_app_form plone_app_layout products_cmfquickinstallertool archetypes_querywidget plone_app_redirector plone_i18n plone_app_registry products_placelesstranslationservice plone_app_users zope_interface zope_event plone_app_viewletmanager zope_structuredtext z3c_autoinclude zope_app_locales plone_portlets products_statusmessages products_cmfcalendar extensionclass products_pluggableauthservice plone_indexer products_cmfuid zope_container plone_app_workflow setuptools plone_portlet_collection plone_app_contentrules products_cmfactionicons products_archetypes plone_intelligenttext plone_app_collection products_passwordresettool plone_app_content plonetheme_sunburst plone_protect zope_tales plone_app_uuid archetypes_referencebrowserwidget products_atcontenttypes plone_app_jquery transaction zope_site plone_app_discussion plone_portlet_static plone_session products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - eggtestinfo = buildPythonPackage rec { - name = "eggtestinfo-0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/e/eggtestinfo/${name}.tar.gz"; - md5 = "6f0507aee05f00c640c0d64b5073f840"; - }; - - # circular dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; -}; in plone42Packages + transaction = buildPythonPackage rec { + name = "transaction-1.1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/t/transaction/transaction-1.1.1.tar.gz"; + md5 = "30b062baa34fe1521ad979fb088c8c55"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; -# Not Found: ['nt-svcutils', 'PIL', 'wsgi-intercept'] -# Version Error: ['collective.z3cform.datagridfield-demo'] + plone_app_controlpanel = buildPythonPackage rec { + name = "plone.app.controlpanel-2.3.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.controlpanel/plone.app.controlpanel-2.3.4.zip"; + md5 = "d01b8c188498080a52275de2a50b25eb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing zope_interface plone_memoize zope_component plone_app_workflow zope_annotation zope_ramcache zope_publisher products_portaltransforms plone_fieldsets zope_event products_cmfdefault zope_cachedescriptors plone_app_form setuptools products_statusmessages zope_schema zope2 acquisition products_plonepas zope_site plone_app_vocabularies zope_formlib zodb3 plone_protect zope_i18n plone_locking products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_redirector = buildPythonPackage rec { + name = "plone.app.redirector-1.2a1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.redirector/plone.app.redirector-1.2a1.zip"; + md5 = "b63b6443b4bbc5562bddcb43600349f7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_memoize setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_component = buildPythonPackage rec { + name = "zope.component-3.9.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.component/zope.component-3.9.5.tar.gz"; + md5 = "22780b445b1b479701c05978055d1c82"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_event setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_broken = buildPythonPackage rec { + name = "zope.broken-3.6.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.broken/zope.broken-3.6.0.zip"; + md5 = "eff24d7918099a3e899ee63a9c31bee6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_namedfile = buildPythonPackage rec { + name = "plone.namedfile-2.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.namedfile/plone.namedfile-2.0.1.zip"; + md5 = "9739c2fe25977d7e050a85eaed9e776a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_traversing zope_security zope_component zope_browserpage setuptools plone_rfc822 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_openid = buildPythonPackage rec { + name = "plone.app.openid-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.openid/plone.app.openid-2.0.2.tar.gz"; + md5 = "ae0748f91cab0612a498926d405d8edd"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ products_plonepas zope_i18nmessageid zope2 setuptools plone_openid zope_interface plone_portlets zope_component plone_app_portlets products_cmfcore products_pluggableauthservice ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_caching = buildPythonPackage rec { + name = "z3c.caching-2.0a1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.caching/z3c.caching-2.0a1.tar.gz"; + md5 = "17f250b5084c2324a7d15c6810ee628e"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_component zope_event setuptools zope_lifecycleevent zope_browser ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_textfield = buildPythonPackage rec { + name = "plone.app.textfield-1.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.textfield/plone.app.textfield-1.2.2.zip"; + md5 = "f832887a40826d6f68c48b48f071fb9c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_interface zodb3 setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + tempstorage = buildPythonPackage rec { + name = "tempstorage-2.12.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/t/tempstorage/tempstorage-2.12.2.zip"; + md5 = "7a2b76b39839e229249b1bb175604480"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing zodb3 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zc_buildout = buildPythonPackage rec { + name = "zc.buildout-1.7.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-1.7.0.tar.gz"; + md5 = "4e3b521600e475c56a0a66459a5fc7bb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfactionicons = buildPythonPackage rec { + name = "Products.CMFActionIcons-2.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFActionIcons/Products.CMFActionIcons-2.1.3.tar.gz"; + md5 = "ab1dc62404ed11aea84dc0d782b2235e"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_zctextindex = buildPythonPackage rec { + name = "Products.ZCTextIndex-2.13.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ZCTextIndex/Products.ZCTextIndex-2.13.3.zip"; + md5 = "bf95ea9fa2831237fa3c3d38fafdec96"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol transaction zope_interface zexceptions zodb3 persistence setuptools acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + extensionclass = buildPythonPackage rec { + name = "ExtensionClass-2.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/E/ExtensionClass/ExtensionClass-2.13.2.zip"; + md5 = "0236e6d7da9e8b87b9ba45f1b8f930b8"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + +}; in plone43rc1Packages diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d9281aba13e9..c1d8e39597c0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5300,9 +5300,10 @@ let python = python27; }); - plone42Packages = recurseIntoAttrs (import ../development/web/plone { - inherit pkgs buildPythonPackage; + plone43Packages = recurseIntoAttrs (import ../development/web/plone { + inherit pkgs; python = python27; + pythonPackages = python27Packages; }); foursuite = callPackage ../development/python-modules/4suite { }; From bee99995d99d0706d67a2e0fa41bceba88100b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 31 Mar 2013 09:27:25 +0200 Subject: [PATCH 101/167] linux: update to 3.8.5 --- pkgs/os-specific/linux/kernel/linux-3.8.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.8.nix b/pkgs/os-specific/linux/kernel/linux-3.8.nix index 361d1f83a5c1..54550885fa65 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.8.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.8.nix @@ -252,7 +252,7 @@ in import ./generic.nix ( rec { - version = "3.8.4"; + version = "3.8.5"; testing = false; preConfigure = '' @@ -261,7 +261,7 @@ import ./generic.nix ( src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/${if testing then "testing/" else ""}linux-${version}.tar.xz"; - sha256 = "0sxh4nwmj49n9l0rnfpgvgvgxx47mdfmpg5syvn854zfb5sv0fvy"; + sha256 = "1f1b6e09cb6ba656b28a41eb9e16e11576879f14574c0cb861b24734f3c5899f"; }; config = configWithPlatform stdenv.platform; From e657e1b57e8c6f84fc398ce58f3582c188c9465d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 31 Mar 2013 16:16:07 +0200 Subject: [PATCH 102/167] systemd: Update to 200 --- ...aemon-reexec-do-the-right-thing-on-N.patch | 4 +-- ...e-duplicate-paths-in-systemctl-start.patch | 6 ++-- ...ts-for-uninitialised-encrypted-devic.patch | 4 +-- ...o-configuration-hints-for-some-units.patch | 4 +-- ...rop-the-dependency-on-local-fs.targe.patch | 4 +-- .../0006-Don-t-call-plymouth-quit.patch | 4 +-- ...007-Ignore-IPv6-link-local-addresses.patch | 4 +-- ...andle-missing-etc-sysctl.conf-proper.patch | 28 ------------------- pkgs/os-specific/linux/systemd/default.nix | 7 ++--- 9 files changed, 17 insertions(+), 48 deletions(-) delete mode 100644 pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch diff --git a/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch b/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch index 27facd4f3cc3..568ad3780126 100644 --- a/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch +++ b/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch @@ -1,7 +1,7 @@ -From ebbb4bc256e1ed53c594fc54d9e1a9faf5a5f77a Mon Sep 17 00:00:00 2001 +From 75bc507c854a8fe1f819a6b04ebe9e05cd9c425c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:44:33 +0100 -Subject: [PATCH 1/8] Make "systemctl daemon-reexec" do the right thing on +Subject: [PATCH 1/7] Make "systemctl daemon-reexec" do the right thing on NixOS --- diff --git a/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch b/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch index c6a648678bec..c9e9d806eb9e 100644 --- a/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch +++ b/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch @@ -1,14 +1,14 @@ -From 64c36ac79fca8f0214faed8b7aff19b379b1ac1b Mon Sep 17 00:00:00 2001 +From b8acf19dbd37f801d5eeb76170f84bc8d75e464c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:45:01 +0100 -Subject: [PATCH 2/8] Ignore duplicate paths in "systemctl start" +Subject: [PATCH 2/7] Ignore duplicate paths in "systemctl start" --- src/systemctl/systemctl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c -index edd136a..86ce32a 100644 +index 1191c7a..4cd64f5 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1510,8 +1510,10 @@ static int start_unit_one( diff --git a/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch b/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch index 23133547fd01..70eba00d22fa 100644 --- a/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch +++ b/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch @@ -1,7 +1,7 @@ -From 776093e73b86bcddfeb0971cb6267d13d07f0a81 Mon Sep 17 00:00:00 2001 +From 7e7d0ebc8617dfdae4ece9f5b66dc63031bb3fbc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:46:30 +0100 -Subject: [PATCH 3/8] Start device units for uninitialised encrypted devices +Subject: [PATCH 3/7] Start device units for uninitialised encrypted devices This is necessary because the NixOS service that initialises the filesystem depends on the appearance of the device unit. Also, this diff --git a/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch b/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch index 483c1f812870..b25f65187d79 100644 --- a/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch +++ b/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch @@ -1,7 +1,7 @@ -From 0bc7513439a8b77f62bc8ebcf220b77f83321b75 Mon Sep 17 00:00:00 2001 +From fa5fabd0123f2d5be7efa877f8dbbf0ae7b929da Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:48:19 +0100 -Subject: [PATCH 4/8] Set switch-to-configuration hints for some units +Subject: [PATCH 4/7] Set switch-to-configuration hints for some units MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit diff --git a/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch b/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch index 9efbba08ab9f..d94890dccc18 100644 --- a/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch +++ b/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch @@ -1,7 +1,7 @@ -From 5337d8f5a555f83ba8731472a2f3b0d36ac607d9 Mon Sep 17 00:00:00 2001 +From c2dce9a0088f7d155659bcbf1e9e69467e679244 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:56:03 +0100 -Subject: [PATCH 5/8] sysinit.target: Drop the dependency on local-fs.target +Subject: [PATCH 5/7] sysinit.target: Drop the dependency on local-fs.target and swap.target Having all services with DefaultDependencies=yes depend on diff --git a/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch b/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch index f0be5b34f0c8..9e4995dfc1fc 100644 --- a/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch +++ b/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch @@ -1,7 +1,7 @@ -From b944fede26773167cb6a9f86888a9209dda4c35e Mon Sep 17 00:00:00 2001 +From f1b273a7203da1dd3ef51529b5b2e481c7a8d999 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 18:36:28 +0100 -Subject: [PATCH 6/8] Don't call "plymouth quit" +Subject: [PATCH 6/7] Don't call "plymouth quit" NixOS doesn't use Plymouth (yet). --- diff --git a/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch b/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch index 32aca8b10aa0..fb59b676e516 100644 --- a/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch +++ b/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch @@ -1,7 +1,7 @@ -From b9f175c7b3ea6ac34d148f5afba598f985c5b9fe Mon Sep 17 00:00:00 2001 +From 61fa587560634d5c71a62a4a2fc2a37eb043e9a4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 4 Feb 2013 12:41:14 +0100 -Subject: [PATCH 7/8] Ignore IPv6 link-local addresses +Subject: [PATCH 7/7] Ignore IPv6 link-local addresses Returning IPv6 link-local addresses is a bad idea, because they only work if an application connects specifically over the corresponding diff --git a/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch b/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch deleted file mode 100644 index 92411c16650d..000000000000 --- a/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch +++ /dev/null @@ -1,28 +0,0 @@ -From dcfb048af5face4787ecdf29c00454898c52963d Mon Sep 17 00:00:00 2001 -From: Eelco Dolstra -Date: Wed, 27 Mar 2013 13:33:09 +0100 -Subject: [PATCH 8/8] systemd-sysctl: Handle missing /etc/sysctl.conf properly - -Since fabe5c0e5fce730aa66e10a9c4f9fdd443d7aeda, systemd-sysctl returns -a non-zero exit code if /etc/sysctl.conf does not exist, due to a -broken ENOENT check. ---- - src/sysctl/sysctl.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c -index 2d43660..79f3f77 100644 ---- a/src/sysctl/sysctl.c -+++ b/src/sysctl/sysctl.c -@@ -125,7 +125,7 @@ static int parse_file(Hashmap *sysctl_options, const char *path, bool ignore_eno - - r = search_and_fopen_nulstr(path, "re", conf_file_dirs, &f); - if (r < 0) { -- if (ignore_enoent && errno == -ENOENT) -+ if (ignore_enoent && r == -ENOENT) - return 0; - - log_error("Failed to open file '%s', ignoring: %s", path, strerror(-r)); --- -1.8.1 - diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 76769d4d3e65..dfa99959b30c 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -6,11 +6,11 @@ assert stdenv.gcc.libc or null != null; stdenv.mkDerivation rec { - name = "systemd-199"; + name = "systemd-200"; src = fetchurl { url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz"; - sha256 = "1vazjqi95pri5zx21gs4chyd7c8kg5lf1rc26w47zkry9yh64i4c"; + sha256 = "05y2r25441nznif5xi5gab4c6xdywiqzgcl3nsmg0j2wzalbl24s"; }; patches = @@ -21,7 +21,6 @@ stdenv.mkDerivation rec { ./0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch ./0006-Don-t-call-plymouth-quit.patch ./0007-Ignore-IPv6-link-local-addresses.patch - ./0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch ] ++ stdenv.lib.optional stdenv.isArm ./libc-bug-accept4-arm.patch; buildInputs = @@ -74,8 +73,6 @@ stdenv.mkDerivation rec { # Work around our kernel headers being too old. FIXME: remove # this after the next stdenv update. "-DFS_NOCOW_FL=0x00800000" - # Enable udev's firmware builtin for now. - "-DENABLE_FIRMWARE=1" ]; # Use /var/lib/udev rather than /etc/udev for the generated hardware From d819ee8b7ee4e35bebc769813e6f8a4fa72145c2 Mon Sep 17 00:00:00 2001 From: Malcolm Matalka Date: Sun, 31 Mar 2013 19:40:11 +0200 Subject: [PATCH 103/167] Add multitail --- pkgs/tools/misc/multitail/default.nix | 22 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/tools/misc/multitail/default.nix diff --git a/pkgs/tools/misc/multitail/default.nix b/pkgs/tools/misc/multitail/default.nix new file mode 100644 index 000000000000..19bebcf2823c --- /dev/null +++ b/pkgs/tools/misc/multitail/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, ncurses }: + +stdenv.mkDerivation { + name = "multitail-5.2.12"; + + src = fetchurl { + url = http://www.vanheusden.com/multitail/multitail-5.2.12.tgz; + sha256 = "681d87cd49e11aab1d82ad7818ee639c88a3d305db8accf0859977beda6c493c"; + }; + + buildInputs = [ ncurses ]; + + installPhase = '' + ensureDir $out/bin + cp multitail $out/bin + ''; + + meta = { + homepage = http://www.vanheusden.com/multitail/; + description = "tail on Steroids"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c1d8e39597c0..d046a16fa5a0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1054,6 +1054,8 @@ let most = callPackage ../tools/misc/most { }; + multitail = callPackage ../tools/misc/multitail { }; + netperf = callPackage ../applications/networking/netperf { }; ninka = callPackage ../development/tools/misc/ninka { }; From ea4b0c33d8ecf6380caeaec3e94c3dec6371ff23 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Sun, 31 Mar 2013 20:06:13 +0200 Subject: [PATCH 104/167] Set correct paths when using nm-applet without desktop --- .../networking/network-manager-applet/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/network-manager-applet/default.nix b/pkgs/tools/networking/network-manager-applet/default.nix index d38bbcae014d..8f6058d20783 100644 --- a/pkgs/tools/networking/network-manager-applet/default.nix +++ b/pkgs/tools/networking/network-manager-applet/default.nix @@ -1,6 +1,7 @@ { stdenv, fetchurl, intltool, pkgconfig, gtk, libglade, networkmanager, GConf , libnotify, libgnome_keyring, dbus_glib, polkit, isocodes -, mobile_broadband_provider_info }: +, mobile_broadband_provider_info, glib_networking, gsettings_desktop_schemas +, makeWrapper }: let pn = "network-manager-applet"; @@ -18,7 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk libglade networkmanager GConf libnotify libgnome_keyring dbus_glib - polkit isocodes + polkit isocodes makeWrapper ]; nativeBuildInputs = [ intltool pkgconfig ]; @@ -27,6 +28,14 @@ stdenv.mkDerivation rec { ''CFLAGS=-DMOBILE_BROADBAND_PROVIDER_INFO=\"${mobile_broadband_provider_info}/share/mobile-broadband-provider-info/serviceproviders.xml\"'' ]; + postInstall = '' + wrapProgram "$out/bin/nm-applet" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/share" \ + --set GCONF_CONFIG_SOURCE "xml::~/.gconf" \ + --prefix PATH ":" "${GConf}/bin" + ''; + meta = with stdenv.lib; { homepage = http://projects.gnome.org/NetworkManager/; description = "NetworkManager control applet for GNOME"; From e58521d5dce234d7e5d4eb5ae594bcf47de67edd Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Sun, 31 Mar 2013 20:56:18 +0200 Subject: [PATCH 105/167] anki: set platforms --- pkgs/games/anki/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index d2e438dfa7b1..41d70533437c 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -63,5 +63,6 @@ stdenv.mkDerivation rec { * even practicing guitar chords! ''; license = "GPLv3"; + platforms = stdenv.lib.platforms.all; }; } From 1e071cd3b21f4de86a6a2a3c358e6f980ed5fd8f Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Sun, 31 Mar 2013 22:58:48 +0200 Subject: [PATCH 106/167] Add smartdc, http_signature python packages --- pkgs/top-level/python-packages.nix | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 993dbd3291ba..29f2e181f3d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1708,6 +1708,23 @@ pythonPackages = python.modules // rec { }; }); + http_signature = buildPythonPackage (rec { + name = "http_signature-0.1.4"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/h/http_signature/${name}.tar.gz"; + md5 = "015061846254bd5d8c5dbc2913985153"; + }; + + propagatedBuildInputs = [pycrypto]; + + meta = { + homepage = https://github.com/atl/py-http-signature; + description = ""; + license = stdenv.lib.licenses.mit; + }; + }); + httplib2 = buildPythonPackage rec { name = "httplib2-0.8"; @@ -3890,6 +3907,23 @@ pythonPackages = python.modules // rec { }; }); + smartdc = buildPythonPackage rec { + name = "smartdc-0.1.12"; + + src = fetchurl { + url = https://pypi.python.org/packages/source/s/smartdc/smartdc-0.1.12.tar.gz; + md5 = "b960f61facafc879142b699050f6d8b4"; + }; + + propagatedBuildInputs = [ requests http_signature ]; + + meta = { + description = "Joyent SmartDataCenter CloudAPI connector using http-signature authentication via Requests"; + homepage = https://github.com/atl/py-smartdc; + license = pkgs.lib.licenses.mit; + }; + }; + sphinx = buildPythonPackage (rec { name = "Sphinx-1.1.3"; From 98ba667094f3395cd0e4999693541285ed5e0478 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Mon, 1 Apr 2013 01:24:56 +0200 Subject: [PATCH 107/167] adding varnish --- pkgs/servers/varnish/default.nix | 21 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/servers/varnish/default.nix diff --git a/pkgs/servers/varnish/default.nix b/pkgs/servers/varnish/default.nix new file mode 100644 index 000000000000..528c03e3aa38 --- /dev/null +++ b/pkgs/servers/varnish/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig }: + +stdenv.mkDerivation rec { + version = "3.0.3"; + name = "varnish-${version}"; + + src = fetchurl { + url = "http://repo.varnish-cache.org/source/${name}.tar.gz"; + sha256 = "1cla2igwfwcm07srvk0z9cqdxh74sga0c1rsmh4b4n1gjn6x2drd"; + }; + + buildInputs = [ pcre libxslt groff ncurses pkgconfig ]; + + meta = { + description = "Varnish Cache is a web application accelerator also known as a caching HTTP reverse proxy."; + homepage = "https://www.varnish-cache.org"; + license = stdenv.lib.licenses.bsd2; + maintainers = [ stdenv.lib.maintainers.garbas ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c1d8e39597c0..c4afbe4b9e29 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1791,6 +1791,8 @@ let uptimed = callPackage ../tools/system/uptimed { }; + varnish = callPackage ../servers/varnish { }; + vlan = callPackage ../tools/networking/vlan { }; wakelan = callPackage ../tools/networking/wakelan { }; From 8c63762d643e371d892fbd6a264e8057c880e60d Mon Sep 17 00:00:00 2001 From: Michael Ashton Date: Sun, 31 Mar 2013 19:00:50 -0700 Subject: [PATCH 108/167] - fetchbzr and nix-prefetch-bzr now only export, instead of cloning - The option for cloning in nix-prefetch-bzr is removed - ssl certificates are now ignored by fetchbzr This means that no .bzr directory is downloaded. Without this change, the hash of the result is unpredictable, probably because of timestamping in the .bzr directory. Currently, the only package using fetchbzr is kicad. --- pkgs/build-support/fetchbzr/builder.sh | 2 +- pkgs/build-support/fetchbzr/nix-prefetch-bzr | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/build-support/fetchbzr/builder.sh b/pkgs/build-support/fetchbzr/builder.sh index 88aab7891b48..17567fdadd23 100644 --- a/pkgs/build-support/fetchbzr/builder.sh +++ b/pkgs/build-support/fetchbzr/builder.sh @@ -4,6 +4,6 @@ header "exporting \`$url' (revision $revision) into \`$out'" # Perform a lightweight checkout so that we don't end up importing # all the repository's history. -bzr checkout --lightweight "$url" -r "$revision" "$out" +bzr -Ossl.cert_reqs=none export -r "$revision" --format=dir "$out" "$url" stopNest diff --git a/pkgs/build-support/fetchbzr/nix-prefetch-bzr b/pkgs/build-support/fetchbzr/nix-prefetch-bzr index 167892fbb794..9ff86c20ae3f 100755 --- a/pkgs/build-support/fetchbzr/nix-prefetch-bzr +++ b/pkgs/build-support/fetchbzr/nix-prefetch-bzr @@ -50,12 +50,7 @@ if test -z "$finalPath"; then trap "rm -rf $tmpPath" EXIT # Perform the checkout. - if test "$NIX_PREFETCH_BZR_LEAVE_DOT_BZR" != 1 - then - bzr export $revarg "$tmpFile" "$url" >&2 - else - bzr checkout --lightweight $revarg "$url" "$tmpFile" >&2 - fi + bzr -Ossl.cert_reqs=none export $revarg --format=dir "$tmpFile" "$url" # Compute the hash. hash=$(nix-hash --type $hashType $hashFormat $tmpFile) From 7b01680d87272bd4edcdeaa8095983e020bd3b3a Mon Sep 17 00:00:00 2001 From: Michael Ashton Date: Sun, 31 Mar 2013 19:11:21 -0700 Subject: [PATCH 109/167] kicad: upgrade to stable version 20130325, libraries to r220 - changed to require wxWidgets 2.9 -- seems to satisfy requirement for libgtkprint, even with gtk2 --- .../science/electronics/kicad/default.nix | 14 +++++++------- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/science/electronics/kicad/default.nix b/pkgs/applications/science/electronics/kicad/default.nix index d90c66329162..cc53611493d0 100644 --- a/pkgs/applications/science/electronics/kicad/default.nix +++ b/pkgs/applications/science/electronics/kicad/default.nix @@ -1,18 +1,18 @@ -{stdenv, fetchurl, fetchbzr, unzip, cmake, mesa, wxGTK, zlib, libX11, -gettext}: +{ stdenv, fetchurl, fetchbzr, unzip, cmake, mesa, gtk, wxGTK, zlib, libX11, +gettext, cups } : stdenv.mkDerivation rec { - name = "kicad-20110708"; + name = "kicad-20130325"; src = fetchurl { - url = ftp://iut-tice.ujf-grenoble.fr/cao/sources/kicad_sources-2011-07-08-BZR3044.zip; - sha256 = "1gr75zcf55p3xpbg1gdkdpbh5x11bawc9rcff4fskwjyc3vfiv6a"; + url = "http://iut-tice.ujf-grenoble.fr/cao/kicad-sources-stable_2013-03-25_BZR4005.zip"; + sha256 = "0hg2aiis14am7mmpimcxnxvhy7c7fr5rgzlk6rjv44d9m0f9957m"; }; srcLibrary = fetchbzr { url = "http://bazaar.launchpad.net/~kicad-lib-committers/kicad/library"; - revision = 112; - sha256 = "49fa9ad90759cfaf522c2a62665f033688b9d84d02f31c6b2505c08a217ad312"; + revision = 220; + sha256 = "0l2lblgnm51n2w1p4ifpwdvq04rxgq73zrfxlhqa9zdlyh4rcddb"; }; cmakeFlags = "-DKICAD_TESTING_VERSION=ON"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c4afbe4b9e29..986bfed5b232 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8758,7 +8758,9 @@ let gtkwave = callPackage ../applications/science/electronics/gtkwave { }; - kicad = callPackage ../applications/science/electronics/kicad { }; + kicad = callPackage ../applications/science/electronics/kicad { + wxGTK = wxGTK29; + }; ngspice = callPackage ../applications/science/electronics/ngspice { }; From 437419a12485adf2a07e2185bc2845dad31a6099 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 21:33:21 -0700 Subject: [PATCH 110/167] rawtherapee-4.0.10 . Add a 'float' option to fftw, as this version of rawtherapee requires it. --- pkgs/applications/graphics/rawtherapee/default.nix | 14 +++++++------- pkgs/development/libraries/fftw/default.nix | 3 ++- pkgs/top-level/all-packages.nix | 4 +++- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/graphics/rawtherapee/default.nix b/pkgs/applications/graphics/rawtherapee/default.nix index 328181790ac1..bf7e2d304202 100644 --- a/pkgs/applications/graphics/rawtherapee/default.nix +++ b/pkgs/applications/graphics/rawtherapee/default.nix @@ -1,18 +1,18 @@ { stdenv, fetchurl, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau -, libXdmcp, lcms2, libiptcdata +, libXdmcp, lcms2, libiptcdata, libcanberra, fftw , mercurial # Not really needed for anything, but it fails if it does not find 'hg' }: stdenv.mkDerivation rec { - name = "rawtherapee-4.0.9"; + name = "rawtherapee-4.0.10"; src = fetchurl { - url = http://rawtherapee.googlecode.com/files/rawtherapee-4.0.9.tar.xz; - sha256 = "1ll7n7gzxs00jpw3gp9xfr90lbwqafkgqpps3j5ig6mf79frpm2a"; + url = http://rawtherapee.googlecode.com/files/rawtherapee-4.0.10.tar.xz; + sha256 = "1ibsdm2kqpw796rcdihnnp67vx0wm1d1bnlzq269r9p01w5s102g"; }; buildInputs = [ pkgconfig gtk cmake pixman libpthreadstubs gtkmm libXau libXdmcp - lcms2 libiptcdata mercurial ]; + lcms2 libiptcdata mercurial libcanberra fftw ]; # Disable the use of the RAWZOR propietary libraries cmakeFlags = [ "-DWITH_RAWZOR=OFF" ]; @@ -22,8 +22,8 @@ stdenv.mkDerivation rec { meta = { description = "RAW converter and digital photo processing software"; homepage = http://www.rawtherapee.com/; - license = "GPLv3+"; - maintainers = with stdenv.lib.maintainers; [viric]; + license = stdenv.lib.licenses.gpl3Plus; + maintainers = with stdenv.lib.maintainers; [viric jcumming]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/development/libraries/fftw/default.nix b/pkgs/development/libraries/fftw/default.nix index 6b4fbe7df6ce..e096c5fa94f3 100644 --- a/pkgs/development/libraries/fftw/default.nix +++ b/pkgs/development/libraries/fftw/default.nix @@ -1,4 +1,4 @@ -{fetchurl, stdenv, builderDefs, stringsWithDeps, singlePrecision ? false, pthreads ? false}: +{fetchurl, stdenv, builderDefs, stringsWithDeps, singlePrecision ? false, pthreads ? false, float ? false}: let version = "3.3.2"; localDefs = builderDefs.passthru.function { @@ -12,6 +12,7 @@ let # some distros seem to be shipping both versions within the same package? # why does --enable-float still result in ..3f.so instead of ..3.so? ++ (if singlePrecision then [ "--enable-single" ] else [ ]) + ++ (if float then [ "--enable-float" ] else [ ]) ++ (stdenv.lib.optional (!pthreads) "--enable-openmp") ++ (stdenv.lib.optional pthreads "--enable-threads") # I think all i686 has sse diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c4afbe4b9e29..c77296bec2ad 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7676,7 +7676,9 @@ let ratpoison = callPackage ../applications/window-managers/ratpoison { }; - rawtherapee = callPackage ../applications/graphics/rawtherapee { }; + rawtherapee = callPackage ../applications/graphics/rawtherapee { + fftw = fftw.override {float = true;}; + }; rcs = callPackage ../applications/version-management/rcs { }; From 4527d677cc1430ff1cfef6e01459d8f2a2873cc3 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 21:43:53 -0700 Subject: [PATCH 111/167] cuetools metadata: license, maintainer, platforms --- pkgs/tools/cd-dvd/cuetools/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/cd-dvd/cuetools/default.nix b/pkgs/tools/cd-dvd/cuetools/default.nix index fd58e3ea6e27..7de503adc074 100644 --- a/pkgs/tools/cd-dvd/cuetools/default.nix +++ b/pkgs/tools/cd-dvd/cuetools/default.nix @@ -13,7 +13,10 @@ stdenv.mkDerivation { buildInputs = [ automake autoconf flex bison ]; meta = { - description = "cue and toc file parsers and utilities"; + description = "cd/dvd cue and toc file parsers and utilities"; homepage = https://github.com/svend/cuetools; + platforms = stdenv.lib.platforms.all; + license = stdenv.lib.licenses.gpl2; + maintainers = with stdenv.lib.maintainers; [ jcumming ]; }; } From 4a9c724377cf5ea5fc8dab9af351cc2def02aa1a Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 21:45:40 -0700 Subject: [PATCH 112/167] shntool metadata: license, maintainer, platform --- pkgs/applications/audio/shntool/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix index 68fb8bfb1423..476f1a3bd637 100644 --- a/pkgs/applications/audio/shntool/default.nix +++ b/pkgs/applications/audio/shntool/default.nix @@ -14,7 +14,8 @@ stdenv.mkDerivation rec { meta = { description = "multi-purpose WAVE data processing and reporting utility"; homepage = http://www.etree.org/shnutils/shntool/; - license = "GPLv2+"; - platforms = with stdenv.lib.platforms; linux; + license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.all + maintainers = with stdenv.lib.maintainers; [ jcumming ]; }; } From 1993c185465c91cb84039a2752394a7895dd66ec Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 22:09:17 -0700 Subject: [PATCH 113/167] missing semicolon. --- pkgs/applications/audio/shntool/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix index 476f1a3bd637..12ef79d746ec 100644 --- a/pkgs/applications/audio/shntool/default.nix +++ b/pkgs/applications/audio/shntool/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { description = "multi-purpose WAVE data processing and reporting utility"; homepage = http://www.etree.org/shnutils/shntool/; license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.all + platforms = stdenv.lib.platforms.all; maintainers = with stdenv.lib.maintainers; [ jcumming ]; }; } From 8a8d3993ee1f51064096738864c53be7caa3b7cb Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 114/167] haskell-cryptohash: update to version 0.8.4 --- pkgs/development/libraries/haskell/cryptohash/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/cryptohash/default.nix b/pkgs/development/libraries/haskell/cryptohash/default.nix index 521a950e581c..77a1ecd9ff4e 100644 --- a/pkgs/development/libraries/haskell/cryptohash/default.nix +++ b/pkgs/development/libraries/haskell/cryptohash/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "cryptohash"; - version = "0.8.3"; - sha256 = "1fcqbbclii2hmbhi7h64v0nnbc34zzs107m3lqq38iiyy5fvqqv2"; + version = "0.8.4"; + sha256 = "0h58apxcrvpkyj3s2c7l68g7biv80snkn53g6jya1s687xff8fmn"; buildDepends = [ cereal cryptoApi tagged ]; testDepends = [ HUnit QuickCheck testFramework testFrameworkHunit From 561c830920ebcb13527186cd7e2e15eb13505e06 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 115/167] haskell-hspec-meta: update to version 1.5.1 --- .../libraries/haskell/hspec-meta/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/hspec-meta/default.nix b/pkgs/development/libraries/haskell/hspec-meta/default.nix index 85547842dc86..261e9577bbbe 100644 --- a/pkgs/development/libraries/haskell/hspec-meta/default.nix +++ b/pkgs/development/libraries/haskell/hspec-meta/default.nix @@ -1,16 +1,16 @@ { cabal, ansiTerminal, filepath, hspecExpectations, HUnit -, QuickCheck, setenv, silently, time, transformers +, QuickCheck, quickcheckIo, setenv, time, transformers }: cabal.mkDerivation (self: { pname = "hspec-meta"; - version = "1.4.5"; - sha256 = "0k50vwzg3ka4727bj63y4gsvw4g80gnalj31rsbvj3afl9gikkk7"; + version = "1.5.1"; + sha256 = "1js62n2mxv4mj4w89ymz5cn3d2qznjndzk3c78gmy6chvig23zlf"; isLibrary = true; isExecutable = true; buildDepends = [ - ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv - silently time transformers + ansiTerminal filepath hspecExpectations HUnit QuickCheck + quickcheckIo setenv time transformers ]; doCheck = false; meta = { From 5e5b50c8174b0c72d3bbd356ba78d020e59c7019 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 116/167] haskell-hspec: update to version 1.5.1 --- .../libraries/haskell/hspec/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/haskell/hspec/default.nix b/pkgs/development/libraries/haskell/hspec/default.nix index 4856c1eb72a5..2fde2e8d9cf9 100644 --- a/pkgs/development/libraries/haskell/hspec/default.nix +++ b/pkgs/development/libraries/haskell/hspec/default.nix @@ -1,21 +1,21 @@ { cabal, ansiTerminal, doctest, filepath, ghcPaths -, hspecExpectations, hspecMeta, HUnit, QuickCheck, setenv, silently -, time, transformers +, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo +, setenv, silently, time, transformers }: cabal.mkDerivation (self: { pname = "hspec"; - version = "1.4.5"; - sha256 = "1dfwc1gjsawafi6k19hsw4kd5ahp8a9hdkyrm7nhjp4kjzgd2ymf"; + version = "1.5.1"; + sha256 = "0iz34hgwir07g2qv3zdkg5k5wrv68qd0c77xkpfcs653fi28i91a"; isLibrary = true; isExecutable = true; buildDepends = [ - ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv - silently time transformers + ansiTerminal filepath hspecExpectations HUnit QuickCheck + quickcheckIo setenv time transformers ]; testDepends = [ ansiTerminal doctest filepath ghcPaths hspecExpectations hspecMeta - HUnit QuickCheck setenv silently time transformers + HUnit QuickCheck quickcheckIo setenv silently time transformers ]; meta = { homepage = "http://hspec.github.com/"; From 5529ad42d2aa6a37cb3b36d36af1657de3fdd790 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 117/167] haskell-liblastfm: update to version 0.1.1.2 --- pkgs/development/libraries/haskell/liblastfm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/liblastfm/default.nix b/pkgs/development/libraries/haskell/liblastfm/default.nix index 096a39b9a3b3..0ecf0e37ca2c 100644 --- a/pkgs/development/libraries/haskell/liblastfm/default.nix +++ b/pkgs/development/libraries/haskell/liblastfm/default.nix @@ -5,8 +5,8 @@ cabal.mkDerivation (self: { pname = "liblastfm"; - version = "0.1.1.1"; - sha256 = "1svqxi85n18r9szmlcny51j71zzkki9pnfxnxim78y5vh0nf82qv"; + version = "0.1.1.2"; + sha256 = "1zckgjc0r2s1s6s9s309dr2ri8bzj1fi8gcbhm3hifczq1v149w9"; buildDepends = [ aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text ]; From 8692618980c94395f52a93d3943513debb794bb0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 118/167] haskell-multiarg: update to version 0.12.0.2 --- pkgs/development/libraries/haskell/multiarg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/multiarg/default.nix b/pkgs/development/libraries/haskell/multiarg/default.nix index c8a7b479c54f..72936e1873c3 100644 --- a/pkgs/development/libraries/haskell/multiarg/default.nix +++ b/pkgs/development/libraries/haskell/multiarg/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "multiarg"; - version = "0.12.0.0"; - sha256 = "1v2bfqbjk4wxn5dzd7asqcfidlr9bmwc5yy7awp86ch669kjnbzd"; + version = "0.12.0.2"; + sha256 = "0f90dsa5ya55lrc0x0ziz01fjvaq85q4f8zsfci1w1rgxa9m7naa"; buildDepends = [ explicitException utf8String ]; meta = { homepage = "https://github.com/massysett/multiarg"; From 78af53bb05e5d653fcdbe13a705c645882116739 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 119/167] haskell-shake: update to version 0.10.2 --- pkgs/development/libraries/haskell/shake/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/shake/default.nix b/pkgs/development/libraries/haskell/shake/default.nix index f3a23533865c..e2b46cfcbc52 100644 --- a/pkgs/development/libraries/haskell/shake/default.nix +++ b/pkgs/development/libraries/haskell/shake/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "shake"; - version = "0.10.1"; - sha256 = "0k8hk5aw5xk4aq7g8yjlkn1rjhcdy3jd5mna9phjs23kmfsmayk6"; + version = "0.10.2"; + sha256 = "0045dz46iacrihqlsdg00zmnkrma5swnmy2bp4h91fx0829lki9n"; isLibrary = true; isExecutable = true; buildDepends = [ From d95c79bad713cda3fa24dd71fcb40e639d8f12e4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:15:46 +0200 Subject: [PATCH 120/167] bind: update to version 9.9.2-P2 to fix CVE 2010-4051 /2010-4052 --- pkgs/servers/dns/bind/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 54fa398a8e9a..1d9192a1c61d 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, openssl, libtool, perl, libxml2 }: -let version = "9.9.2"; in +let version = "9.9.2-P2"; in stdenv.mkDerivation rec { @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; - sha256 = "0j4v01ch4xkgnsnngmh6bpapzi53n4k79gbbhmxf44nmk2qk0rby"; + sha256 = "1lk5npyr6bkm4gs2m90k4s8lmlcpfdphzqhi2hjnj2amwcs2g0pz"; }; patchPhase = '' @@ -22,9 +22,10 @@ stdenv.mkDerivation rec { "--localstatedir=/var" ]; meta = { - homepage = http://www.isc.org/software/bind; + homepage = "http://www.isc.org/software/bind"; description = "ISC BIND: a domain name server"; - maintainers = with stdenv.lib.maintainers; [viric]; + + maintainers = with stdenv.lib.maintainers; [viric simons]; platforms = with stdenv.lib.platforms; linux; }; } From e655ac24d20e44664745f777c833ff55c01e7438 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:18:44 +0200 Subject: [PATCH 121/167] bind: add meta.license attribute --- pkgs/servers/dns/bind/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 1d9192a1c61d..d9a9b6b24322 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://www.isc.org/software/bind"; description = "ISC BIND: a domain name server"; + license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [viric simons]; platforms = with stdenv.lib.platforms; linux; From 3c28408f84e762008db426ec9f6a5f0bc47b18a1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:34:20 +0200 Subject: [PATCH 122/167] haskell-quickcheck-io: add version 0.1.0 --- .../libraries/haskell/quickcheck-io/default.nix | 13 +++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 pkgs/development/libraries/haskell/quickcheck-io/default.nix diff --git a/pkgs/development/libraries/haskell/quickcheck-io/default.nix b/pkgs/development/libraries/haskell/quickcheck-io/default.nix new file mode 100644 index 000000000000..b7c33b6d1a0a --- /dev/null +++ b/pkgs/development/libraries/haskell/quickcheck-io/default.nix @@ -0,0 +1,13 @@ +{ cabal, HUnit, QuickCheck }: + +cabal.mkDerivation (self: { + pname = "quickcheck-io"; + version = "0.1.0"; + sha256 = "167ds7c7p1lcfsylxhq2sr0jxbviyim1n42dhyr0s0b6hazw8cjs"; + buildDepends = [ HUnit QuickCheck ]; + meta = { + description = "Use HUnit assertions as QuickCheck properties"; + license = self.stdenv.lib.licenses.mit; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 9b3c33c41981..5a96e995c738 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1514,6 +1514,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); QuickCheck2 = self.QuickCheck_2_6; QuickCheck = self.QuickCheck2; + quickcheckIo = callPackage ../development/libraries/haskell/quickcheck-io {}; + RangedSets = callPackage ../development/libraries/haskell/Ranged-sets {}; random_1_0_1_1 = callPackage ../development/libraries/haskell/random/1.0.1.1.nix {}; From 00346f1bbb6dab60fb7f8b6147a5f2edfa28b96c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:34:50 +0200 Subject: [PATCH 123/167] haskell-hspec-expectations: switch default to version 0.3.2 --- pkgs/top-level/haskell-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 5a96e995c738..4534adee337f 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1113,7 +1113,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); hspecExpectations_0_3_0_3 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.0.3.nix {}; hspecExpectations_0_3_2 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.2.nix {}; - hspecExpectations = self.hspecExpectations_0_3_0_3; + hspecExpectations = self.hspecExpectations_0_3_2; hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {}; From a83f32b335d312c69923af45be8c0997e996d4d5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 11:29:20 +0200 Subject: [PATCH 124/167] haskell-hspec-expectations: drop obsolete version 0.3.0.3 --- .../haskell/hspec-expectations/0.3.0.3.nix | 17 ----------------- .../{0.3.2.nix => default.nix} | 0 pkgs/top-level/haskell-packages.nix | 4 +--- 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix rename pkgs/development/libraries/haskell/hspec-expectations/{0.3.2.nix => default.nix} (100%) diff --git a/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix b/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix deleted file mode 100644 index 41019c9caa3e..000000000000 --- a/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ cabal, hspec, HUnit, markdownUnlit, silently }: - -cabal.mkDerivation (self: { - pname = "hspec-expectations"; - version = "0.3.0.3"; - sha256 = "1ppcbfmcgrd1lwswa293fxwny6khhg4blygfbcsawrvgc5ji0q74"; - buildDepends = [ HUnit ]; - testDepends = [ hspec HUnit markdownUnlit silently ]; - doCheck = false; - meta = { - homepage = "https://github.com/sol/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = self.stdenv.lib.licenses.mit; - platforms = self.ghc.meta.platforms; - maintainers = [ self.stdenv.lib.maintainers.simons ]; - }; -}) diff --git a/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix b/pkgs/development/libraries/haskell/hspec-expectations/default.nix similarity index 100% rename from pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix rename to pkgs/development/libraries/haskell/hspec-expectations/default.nix diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 4534adee337f..610f26d5541a 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1111,9 +1111,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); hspec = callPackage ../development/libraries/haskell/hspec {}; - hspecExpectations_0_3_0_3 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.0.3.nix {}; - hspecExpectations_0_3_2 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.2.nix {}; - hspecExpectations = self.hspecExpectations_0_3_2; + hspecExpectations = callPackage ../development/libraries/haskell/hspec-expectations {}; hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {}; From 72a724c0d2e99d4ba1f8a98270dd1ce295f44690 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Mon, 1 Apr 2013 12:13:01 +0200 Subject: [PATCH 125/167] New: yeganesh, a small wrapper around dmenu. Signed-off-by: Moritz Ulrich --- pkgs/applications/misc/yeganesh/default.nix | 16 ++++++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 18 insertions(+) create mode 100644 pkgs/applications/misc/yeganesh/default.nix diff --git a/pkgs/applications/misc/yeganesh/default.nix b/pkgs/applications/misc/yeganesh/default.nix new file mode 100644 index 000000000000..36a5817772d5 --- /dev/null +++ b/pkgs/applications/misc/yeganesh/default.nix @@ -0,0 +1,16 @@ +{ cabal, filepath, strict, time, xdgBasedir }: + +cabal.mkDerivation (self: { + pname = "yeganesh"; + version = "2.5"; + sha256 = "1bgw5v1g5n06jj0lyxpf48mdpaa2s49g0lbagf3jf9q01rb92bvf"; + isLibrary = false; + isExecutable = true; + buildDepends = [ filepath strict time xdgBasedir ]; + meta = { + homepage = "http://dmwit.com/yeganesh"; + description = "small dmenu wrapper"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 610f26d5541a..d8d574acdce7 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1966,6 +1966,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); yap = callPackage ../development/libraries/haskell/yap {}; + yeganesh = callPackage ../applications/misc/yeganesh {}; + yesod = callPackage ../development/libraries/haskell/yesod {}; yesodAuth = callPackage ../development/libraries/haskell/yesod-auth {}; From b10ab7a19aa3f4cdcb9c10f5ceec7ff66272bb0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 1 Apr 2013 12:50:15 +0200 Subject: [PATCH 126/167] tinycc: updating it to 0.9.26 I simplified the expression a bit. And I renamed it to 'tcc'. I think everyone calls it tcc. --- pkgs/development/compilers/tinycc/default.nix | 123 +++++++----------- pkgs/top-level/release-small.nix | 2 +- pkgs/top-level/release.nix | 2 +- 3 files changed, 47 insertions(+), 80 deletions(-) diff --git a/pkgs/development/compilers/tinycc/default.nix b/pkgs/development/compilers/tinycc/default.nix index f607edd0f024..11b0b2ea7b27 100644 --- a/pkgs/development/compilers/tinycc/default.nix +++ b/pkgs/development/compilers/tinycc/default.nix @@ -2,95 +2,62 @@ assert stdenv ? glibc; -let version = "0.9.25"; in - stdenv.mkDerivation { - name = "tinycc-${version}"; +stdenv.mkDerivation rec { + name = "tcc-0.9.26"; - src = fetchurl { - url = "mirror://savannah/tinycc/tcc-${version}.tar.bz2"; - sha256 = "0dfycf80x73dz67c97j1ry29wrv35393ai5ry46i1x1fzfq6rv8v"; - }; + src = fetchurl { + url = "mirror://savannah/tinycc/${name}.tar.bz2"; + sha256 = "0wbdbdq6090ayw8bxnbikiv989kykff3m5rzbia05hrnwhd707jj"; + }; - nativeBuildInputs = [ perl texinfo ]; + nativeBuildInputs = [ perl texinfo ]; - patches = - [ (fetchurl { - # Add support for `alloca' on x86-64. - url = "http://repo.or.cz/w/tinycc.git/patch/8ea8305199496ba29b6d0da2de07aea4441844aa"; - sha256 = "0dz1cm9zihk533hszqql4gxpzbp8c4g9dnvkkh9vs4js6fnz1fl2"; - name = "x86-64-alloca.patch"; - }) + postPatch = '' + substituteInPlace "texi2pod.pl" \ + --replace "/usr/bin/perl" "${perl}/bin/perl" + ''; - (fetchurl { - # Fix alignment of the return value of `alloca'. - url = "http://repo.or.cz/w/tinycc.git/patch/dca2b15df42c1341794dd412917708416da25594"; - sha256 = "0617a69gnfdmv8pr6dj3szv97v3zh57439dsbklxrnipx2jv6pq7"; - name = "x86-64-alloca-align.patch"; - }) - ]; + preConfigure = '' + configureFlagsArray+=("--elfinterp=$(cat $NIX_GCC/nix-support/dynamic-linker)") + configureFlagsArray+=("--crtprefix=${stdenv.glibc}/lib") + configureFlagsArray+=("--sysincludepaths=${stdenv.glibc}/include:{B}/include") + configureFlagsArray+=("--libpaths=${stdenv.glibc}/lib") + ''; - postPatch = '' - substituteInPlace "texi2pod.pl" \ - --replace "/usr/bin/perl" "${perl}/bin/perl" + doCheck = true; + checkTarget = "test"; - # To produce executables, `tcc' needs to know where `crt*.o' are. - sed -i "tcc.h" \ - -e's|define CONFIG_TCC_CRT_PREFIX.*$|define CONFIG_TCC_CRT_PREFIX "${stdenv.glibc}/lib"|g' + meta = { + description = "TinyCC, a small, fast, and embeddable C compiler and interpreter"; - sed -i "libtcc.c" \ - -e's|tcc_add_library_path(s, CONFIG_SYSROOT "/lib");|tcc_add_library_path(s, "${stdenv.glibc}/lib");|g; - s|tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/include");|tcc_add_library_path(s, "${stdenv.glibc}/include");|g ; - s|tcc_add_sysinclude_path(s, buf);|tcc_add_sysinclude_path(s, buf); tcc_add_sysinclude_path(s, "${stdenv.glibc}/include");|g' + longDescription = + '' TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike + other C compilers, it is meant to be self-sufficient: you do not + need an external assembler or linker because TCC does that for + you. - # Tell it about the loader's location. - sed -i "tccelf.c" \ - -e's|".*/ld-linux\([^"]\+\)"|"${stdenv.glibc}/lib/ld-linux\1"|g' - ''; # " + TCC compiles so fast that even for big projects Makefiles may not + be necessary. - postInstall = '' - makeinfo --force tcc-doc.texi || true + TCC not only supports ANSI C, but also most of the new ISO C99 + standard and many GNU C extensions. - mkdir -p "$out/share/info" - mv tcc-doc.info* "$out/share/info" + TCC can also be used to make C scripts, i.e. pieces of C source + that you run as a Perl or Python script. Compilation is so fast + that your script will be as fast as if it was an executable. - echo 'int main () { printf ("it works!\n"); exit(0); }' | \ - "$out/bin/tcc" -run - - ''; + TCC can also automatically generate memory and bound checks while + allowing all C pointers operations. TCC can do these checks even + if non patched libraries are used. - doCheck = true; - checkTarget = "test"; + With libtcc, you can use TCC as a backend for dynamic code + generation. + ''; - meta = { - description = "TinyCC, a small, fast, and embeddable C compiler and interpreter"; + homepage = http://www.tinycc.org/; + license = "LGPLv2+"; - longDescription = - '' TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike - other C compilers, it is meant to be self-sufficient: you do not - need an external assembler or linker because TCC does that for - you. - - TCC compiles so fast that even for big projects Makefiles may not - be necessary. - - TCC not only supports ANSI C, but also most of the new ISO C99 - standard and many GNU C extensions. - - TCC can also be used to make C scripts, i.e. pieces of C source - that you run as a Perl or Python script. Compilation is so fast - that your script will be as fast as if it was an executable. - - TCC can also automatically generate memory and bound checks while - allowing all C pointers operations. TCC can do these checks even - if non patched libraries are used. - - With libtcc, you can use TCC as a backend for dynamic code - generation. - ''; - - homepage = http://www.tinycc.org/; - license = "LGPLv2+"; - - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.ludo ]; - }; - } + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.ludo ]; + }; +} diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index faefdc5a0c3a..af886c18dce7 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -177,7 +177,7 @@ with (import ./release-lib.nix); texLiveExtra = linux; texinfo = all; time = linux; - tinycc = ["i686-linux"]; + tinycc = linux; udev = linux; unrar = linux; unzip = all; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index a3902b8daa8c..cca7dd5defdc 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -304,7 +304,7 @@ let texinfo = all; tightvnc = linux; time = linux; - tinycc = ["i686-linux"]; + tinycc = linux; uae = linux; udev = linux; unrar = linux; From c3190ef1d89bafac275153804f5acb39977a3e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 1 Apr 2013 10:14:31 +0200 Subject: [PATCH 127/167] lighttpd: bump to version 1.4.32 One important denial of service (in 1.4.31) fix: CVE-2012-5533[1]. NOTE: There are some errors about missing commands during the build, but I'm pretty sure they were there before. And the result seems to be working anyway... * /usr/bin/file: No such file or directory * /bin/sh: line 2: which: command not found * /tmp/nix-build-lighttpd-1.4.32.drv-0/lighttpd-1.4.32/libtool: line 1085: ldconfig: command not found [1] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-5533 --- pkgs/servers/http/lighttpd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/http/lighttpd/default.nix b/pkgs/servers/http/lighttpd/default.nix index 11df6e74bd69..8a3c26f63307 100644 --- a/pkgs/servers/http/lighttpd/default.nix +++ b/pkgs/servers/http/lighttpd/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pcre, libxml2, zlib, attr, bzip2 }: stdenv.mkDerivation { - name = "lighttpd-1.4.30"; + name = "lighttpd-1.4.32"; src = fetchurl { - url = http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.30.tar.xz; - sha256 = "c237692366935b19ef8a6a600b2f3c9b259a9c3107271594c081a45902bd9c9b"; + url = http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.32.tar.xz; + sha256 = "1hgd9bi4mrak732h57na89lqg58b1kkchnddij9gawffd40ghs0k"; }; buildInputs = [ pcre libxml2 zlib attr bzip2 ]; From 238c26cea9a4e74949eccb43f4ac538a0ab150a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 1 Apr 2013 15:28:05 +0200 Subject: [PATCH 128/167] lighttpd: fix build warnings The build complains about missing "file" and "which" commands, so add them as build inputs. "file" is used by the autotools configure script to tweak what -m flag (if any) to pass to the linker when it asks it for shared library support. Here is an example of -m values for GNU ld: Supported emulations: elf_x86_64 elf32_x86_64 elf_i386 i386linux elf_l1om elf_k1om "which" is used in the build phase to look for svnversion and git, to build a version stamp. Since we build from a release tarball (and don't pass svn or git as inputs either), this check fails and falls back to the version number in the tarball. There is one build warning left, but I think this is normal on NixOS: /tmp/nix-build-lighttpd-1.4.32.drv-0/lighttpd-1.4.32/libtool: line 1085: ldconfig: command not found --- pkgs/servers/http/lighttpd/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/lighttpd/default.nix b/pkgs/servers/http/lighttpd/default.nix index 8a3c26f63307..66bc45de9423 100644 --- a/pkgs/servers/http/lighttpd/default.nix +++ b/pkgs/servers/http/lighttpd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pcre, libxml2, zlib, attr, bzip2 }: +{ stdenv, fetchurl, pcre, libxml2, zlib, attr, bzip2, which, file }: stdenv.mkDerivation { name = "lighttpd-1.4.32"; @@ -8,7 +8,11 @@ stdenv.mkDerivation { sha256 = "1hgd9bi4mrak732h57na89lqg58b1kkchnddij9gawffd40ghs0k"; }; - buildInputs = [ pcre libxml2 zlib attr bzip2 ]; + buildInputs = [ pcre libxml2 zlib attr bzip2 which file ]; + + preConfigure = '' + sed -i "s:/usr/bin/file:${file}/bin/file:g" configure + ''; meta = { description = "Lightweight high-performance web server"; From cf019ab91e2551aaa7946d3eebe15b8d044d5613 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 1 Apr 2013 10:51:22 -0400 Subject: [PATCH 129/167] Add git prerelease of aws-sdk nodePackage Required modifying patchLatest to handle tarballs that don't create a 'package' directory Signed-off-by: Shea Levy --- pkgs/top-level/node-packages.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/node-packages.nix b/pkgs/top-level/node-packages.nix index 06f7ad321bbc..f84464c05f70 100644 --- a/pkgs/top-level/node-packages.nix +++ b/pkgs/top-level/node-packages.nix @@ -9,9 +9,12 @@ let self = { patchLatest = srcAttrs: let src = fetchurl srcAttrs; in pkgs.runCommand src.name {} '' + mkdir unpack + cd unpack tar xf ${src} + mv */ package sed -i -e "s/: \"latest\"/: \"*\"/" package/package.json - tar cf $out package + tar cf $out * ''; "abbrev" = self."abbrev-1"; @@ -96,6 +99,19 @@ let self = { "aws-sdk" = self."aws-sdk-*"; + "aws-sdk-git" = self.buildNodePackage rec { + name = "aws-sdk-0.9.8-pre7b687a0c262ac129fd6eaffeb02de09ee7e6a87c"; + src = self.patchLatest { + url = "https://github.com/aws/aws-sdk-js/archive/7b687a0c262ac129fd6eaffeb02de09ee7e6a87c.tar.gz"; + sha256 = "1pn43wxi3xz4kjyxf8j7zil5frhd1zpqja8szamgll2pxxnpnr3i"; + name = "${name}.tgz"; + }; + deps = [ + self."xml2js-0.2.4" + self."xmlbuilder" + ]; + }; + "aws-sdk-*" = self.buildNodePackage rec { name = "aws-sdk-0.9.7-pre.8"; src = self.patchLatest { From 16672fc8b1156b3ef7d128b5f4dd21a23b8b9769 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Mon, 1 Apr 2013 17:13:00 +0200 Subject: [PATCH 130/167] xbmc: add pulse support, lame, avahi, libdvdcss --- pkgs/applications/video/xbmc/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/video/xbmc/default.nix b/pkgs/applications/video/xbmc/default.nix index 0a09fe30ace0..e5deba4f97f9 100644 --- a/pkgs/applications/video/xbmc/default.nix +++ b/pkgs/applications/video/xbmc/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchurl, makeWrapper , pkgconfig, cmake, gnumake, yasm, python -, boost +, boost, avahi, libdvdcss, lame , gettext, pcre, yajl, fribidi , openssl, gperf, tinyxml2, taglib, libssh, swig, jre , libX11, xproto, inputproto @@ -20,7 +20,9 @@ , libusb ? null, usbSupport ? false , samba ? null, sambaSupport ? true # TODO: would be nice to have nfsSupport (needs libnfs library) +# TODO: librtmp , libvdpau ? null, vdpauSupport ? true +, pulseaudio ? null, pulseSupport ? false }: assert dbusSupport -> dbus_libs != null; @@ -28,6 +30,7 @@ assert udevSupport -> udev != null; assert usbSupport -> libusb != null && ! udevSupport; # libusb won't be used if udev is avaliable assert sambaSupport -> samba != null; assert vdpauSupport -> libvdpau != null && ffmpeg.vdpauSupport; +assert pulseSupport -> pulseaudio != null; stdenv.mkDerivation rec { name = "xbmc-12.1"; @@ -53,14 +56,15 @@ stdenv.mkDerivation rec { ffmpeg libmpeg2 libsamplerate libmad libogg libvorbis flac lzo libcdio libmodplug libass - sqlite mysql nasm + sqlite mysql nasm avahi libdvdcss lame curl bzip2 zip unzip glxinfo xdpyinfo ] ++ lib.optional dbusSupport dbus_libs ++ lib.optional udevSupport udev ++ lib.optional usbSupport libusb ++ lib.optional sambaSupport samba - ++ lib.optional vdpauSupport libvdpau; + ++ lib.optional vdpauSupport libvdpau + ++ lib.optional pulseSupport pulseaudio; dontUseCmakeConfigure = true; @@ -69,7 +73,8 @@ stdenv.mkDerivation rec { "--disable-webserver" ] ++ lib.optional (! sambaSupport) "--disable-samba" - ++ lib.optional vdpauSupport "--enable-vdpau"; + ++ lib.optional vdpauSupport "--enable-vdpau" + ++ lib.optional pulseSupport "--enable-pulse"; postInstall = '' for p in $(ls $out/bin/) ; do From 2fe5c12d35b21188e47c2abf9f7449eed750a848 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Mon, 1 Apr 2013 17:45:18 +0200 Subject: [PATCH 131/167] Add s3http node package --- pkgs/top-level/node-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/node-packages.nix b/pkgs/top-level/node-packages.nix index f84464c05f70..c4905cf17a11 100644 --- a/pkgs/top-level/node-packages.nix +++ b/pkgs/top-level/node-packages.nix @@ -1208,6 +1208,21 @@ let self = { ]; }; + "s3http" = self."s3http-*"; + + "s3http-*" = self.buildNodePackage rec { + name = "s3http-0.0.1"; + src = fetchurl { + url = "http://registry.npmjs.org/s3http/-/${name}.tgz"; + sha256 = "7140a0ee6df9fb90fd74aa0b68b73f899c6d8e2eaa2de89fde3f634e9bf10dba"; + }; + deps = [ + self."aws-sdk-git" + self."commander-0.5.1" + self."http-auth-*" + ]; + }; + "sax" = self."sax->=0.4.2"; "sax->=0.4.2" = self.buildNodePackage rec { From e21c53c21130d245812e267b3c3dee0d8e43f663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 1 Apr 2013 18:37:52 +0200 Subject: [PATCH 132/167] tig: enable bash completion Copy the bash completion script that comes with tig to $out/etc/bash_completion.d/. Note: to enable bash completion in NixOS, set environment.enableBashCompletion = true; --- .../version-management/git-and-tools/tig/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/version-management/git-and-tools/tig/default.nix b/pkgs/applications/version-management/git-and-tools/tig/default.nix index 8d5c2baa7a50..ea9ce97be161 100644 --- a/pkgs/applications/version-management/git-and-tools/tig/default.nix +++ b/pkgs/applications/version-management/git-and-tools/tig/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { installPhase = '' make install make install-doc + mkdir -p $out/etc/bash_completion.d/ + cp contrib/tig-completion.bash $out/etc/bash_completion.d/ ''; meta = { homepage = "http://jonas.nitro.dk/tig/"; From f3a16d0dd53134f29636210e3587695c586f92bc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 17:18:37 +0200 Subject: [PATCH 133/167] update meta.maintainers section --- pkgs/applications/misc/yeganesh/default.nix | 1 + pkgs/development/libraries/haskell/quickcheck-io/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/applications/misc/yeganesh/default.nix b/pkgs/applications/misc/yeganesh/default.nix index 36a5817772d5..14f0fdb53846 100644 --- a/pkgs/applications/misc/yeganesh/default.nix +++ b/pkgs/applications/misc/yeganesh/default.nix @@ -12,5 +12,6 @@ cabal.mkDerivation (self: { description = "small dmenu wrapper"; license = self.stdenv.lib.licenses.bsd3; platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; }; }) diff --git a/pkgs/development/libraries/haskell/quickcheck-io/default.nix b/pkgs/development/libraries/haskell/quickcheck-io/default.nix index b7c33b6d1a0a..985223678cbc 100644 --- a/pkgs/development/libraries/haskell/quickcheck-io/default.nix +++ b/pkgs/development/libraries/haskell/quickcheck-io/default.nix @@ -9,5 +9,6 @@ cabal.mkDerivation (self: { description = "Use HUnit assertions as QuickCheck properties"; license = self.stdenv.lib.licenses.mit; platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; }; }) From 6d4558aceecd06161d801abb0ddd896461ca7098 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 17:18:47 +0200 Subject: [PATCH 134/167] haskell-clientsession: update to version 0.9 --- pkgs/development/libraries/haskell/clientsession/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/clientsession/default.nix b/pkgs/development/libraries/haskell/clientsession/default.nix index fd0ebd2065a7..83cf8e57a682 100644 --- a/pkgs/development/libraries/haskell/clientsession/default.nix +++ b/pkgs/development/libraries/haskell/clientsession/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "clientsession"; - version = "0.8.1"; - sha256 = "1x4qfm4hkvm3xmn7hnvcx1j900g97qhks66xzik1wvsjy3piwpgd"; + version = "0.9"; + sha256 = "0cyw34vzvv1j7w094cjcf97g8bki7l9x82s8csaf96y6d9qws308"; buildDepends = [ base64Bytestring cereal cipherAes cprngAes cryptoApi entropy skein tagged From 6a0bf5ba6cf2ab7ffa26050a60653ddb305a7d2e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 17:18:47 +0200 Subject: [PATCH 135/167] haskell-doctest: update to version 0.9.6 --- pkgs/development/libraries/haskell/doctest/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/doctest/default.nix b/pkgs/development/libraries/haskell/doctest/default.nix index 499163a11017..d83fa8729c1c 100644 --- a/pkgs/development/libraries/haskell/doctest/default.nix +++ b/pkgs/development/libraries/haskell/doctest/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "doctest"; - version = "0.9.5.1"; - sha256 = "0phakf605pdwp89y522wm17n1bflxlgqkgahklnf10wnywxwm7cs"; + version = "0.9.6"; + sha256 = "0gw13pm4hg69v60swsv6w4iwzgdj5f4pkcyfmgzfp1dx399p6hyl"; isLibrary = true; isExecutable = true; buildDepends = [ deepseq filepath ghcPaths syb transformers ]; From 5d01b76912ce188d4af07e039dbe4a343cdcb5f2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 17:18:47 +0200 Subject: [PATCH 136/167] haskell-hspec-meta: update to version 1.5.2 --- .../libraries/haskell/hspec-meta/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/haskell/hspec-meta/default.nix b/pkgs/development/libraries/haskell/hspec-meta/default.nix index 261e9577bbbe..706bba15def7 100644 --- a/pkgs/development/libraries/haskell/hspec-meta/default.nix +++ b/pkgs/development/libraries/haskell/hspec-meta/default.nix @@ -1,16 +1,16 @@ -{ cabal, ansiTerminal, filepath, hspecExpectations, HUnit -, QuickCheck, quickcheckIo, setenv, time, transformers +{ cabal, ansiTerminal, deepseq, filepath, hspecExpectations, HUnit +, QuickCheck, quickcheckIo, random, setenv, time, transformers }: cabal.mkDerivation (self: { pname = "hspec-meta"; - version = "1.5.1"; - sha256 = "1js62n2mxv4mj4w89ymz5cn3d2qznjndzk3c78gmy6chvig23zlf"; + version = "1.5.2"; + sha256 = "1kzlppbp8ralkpi89qrfdm5yrr72b9iq4nrvmblyjrb67h9412q0"; isLibrary = true; isExecutable = true; buildDepends = [ - ansiTerminal filepath hspecExpectations HUnit QuickCheck - quickcheckIo setenv time transformers + ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck + quickcheckIo random setenv time transformers ]; doCheck = false; meta = { From fe1dde269c35d9ba8696a8d7904cd79c9af6ef2b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 17:18:47 +0200 Subject: [PATCH 137/167] haskell-hspec: update to version 1.5.2 --- .../libraries/haskell/hspec/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/haskell/hspec/default.nix b/pkgs/development/libraries/haskell/hspec/default.nix index 2fde2e8d9cf9..2de17a479ad7 100644 --- a/pkgs/development/libraries/haskell/hspec/default.nix +++ b/pkgs/development/libraries/haskell/hspec/default.nix @@ -1,21 +1,22 @@ -{ cabal, ansiTerminal, doctest, filepath, ghcPaths +{ cabal, ansiTerminal, deepseq, doctest, filepath, ghcPaths , hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo -, setenv, silently, time, transformers +, random, setenv, silently, time, transformers }: cabal.mkDerivation (self: { pname = "hspec"; - version = "1.5.1"; - sha256 = "0iz34hgwir07g2qv3zdkg5k5wrv68qd0c77xkpfcs653fi28i91a"; + version = "1.5.2"; + sha256 = "1bndznbq7qyqr4j4mnsxf3dabmjyzah0bsiyynrc00ay1pf033l8"; isLibrary = true; isExecutable = true; buildDepends = [ - ansiTerminal filepath hspecExpectations HUnit QuickCheck - quickcheckIo setenv time transformers + ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck + quickcheckIo random setenv time transformers ]; testDepends = [ - ansiTerminal doctest filepath ghcPaths hspecExpectations hspecMeta - HUnit QuickCheck quickcheckIo setenv silently time transformers + ansiTerminal deepseq doctest filepath ghcPaths hspecExpectations + hspecMeta HUnit QuickCheck quickcheckIo random setenv silently time + transformers ]; meta = { homepage = "http://hspec.github.com/"; From c7ac797b5c5ecd4685b4804ad88d4dac2a4998dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 17:18:48 +0200 Subject: [PATCH 138/167] haskell-skein: update to version 1.0.0 --- pkgs/development/libraries/haskell/skein/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/skein/default.nix b/pkgs/development/libraries/haskell/skein/default.nix index 9f085cce70d9..ec71d27db02c 100644 --- a/pkgs/development/libraries/haskell/skein/default.nix +++ b/pkgs/development/libraries/haskell/skein/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "skein"; - version = "0.1.0.12"; - sha256 = "1nx0ad0y7zmljc7phwin2aph6frs70hvz3di8q52kzpi5m1h3g3a"; + version = "1.0.0"; + sha256 = "03r9kqbvv6z1d8ivdwrxvac5bnd29w116pbixyrcrbx0sg1wwpfa"; buildDepends = [ cereal cryptoApi tagged ]; testDepends = [ cereal cryptoApi filepath hspec tagged ]; meta = { From 05467aef298575875a532b058bc9ae91ee1eb2b2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 18:26:12 +0200 Subject: [PATCH 139/167] haskell-yesod-core: jailbreak to support new versions of clientsession --- pkgs/development/libraries/haskell/yesod-core/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/yesod-core/default.nix b/pkgs/development/libraries/haskell/yesod-core/default.nix index a1c7cf79f3ad..813c524ca357 100644 --- a/pkgs/development/libraries/haskell/yesod-core/default.nix +++ b/pkgs/development/libraries/haskell/yesod-core/default.nix @@ -23,6 +23,7 @@ cabal.mkDerivation (self: { blazeBuilder conduit hamlet hspec httpTypes HUnit QuickCheck random shakespeareCss shakespeareJs text transformers wai waiTest ]; + jailbreak = true; meta = { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; From cb4ae7759ec3e3d93b59cec88f9f74fdce27f79c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 18:47:19 +0200 Subject: [PATCH 140/167] haskell-xml: update to version 1.3.13 --- pkgs/development/libraries/haskell/xml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/xml/default.nix b/pkgs/development/libraries/haskell/xml/default.nix index 8a8e6e3e2ad0..126ab9b1f087 100644 --- a/pkgs/development/libraries/haskell/xml/default.nix +++ b/pkgs/development/libraries/haskell/xml/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "xml"; - version = "1.3.12"; - sha256 = "1lmqnzna0zy297y4q6qviv7a4966zz9mhfhk6anrp66cz890whai"; + version = "1.3.13"; + sha256 = "04xq2ma2if5gqz16bjrxwigh4vzw6m8i2zk11s5qg3d4z370fdn3"; buildDepends = [ text ]; meta = { homepage = "http://code.galois.com"; From 62d7abf42ab21aed07e30a1833ef32be6c2d57a0 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Mon, 1 Apr 2013 22:55:16 +0200 Subject: [PATCH 141/167] flexget: run time dependency on deluge (plugin) --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 29f2e181f3d3..6dc8d0298217 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1485,7 +1485,7 @@ pythonPackages = python.modules // rec { }; buildInputs = [ nose ]; - propagatedBuildInputs = [ beautifulsoup4 pyrss2gen feedparser pynzb html5lib dateutil beautifulsoup flask jinja2 requests sqlalchemy pyyaml cherrypy progressbar ]; + propagatedBuildInputs = [ beautifulsoup4 pyrss2gen feedparser pynzb html5lib dateutil beautifulsoup flask jinja2 requests sqlalchemy pyyaml cherrypy progressbar deluge ]; meta = { homepage = http://flexget.com/; From 934bfc618a379aaad5d24fdb3bc46358ff832a2a Mon Sep 17 00:00:00 2001 From: Cameron Matheson Date: Mon, 1 Apr 2013 16:24:08 -0600 Subject: [PATCH 142/167] tmux: update to version 1.8 --- pkgs/tools/misc/tmux/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/misc/tmux/default.nix b/pkgs/tools/misc/tmux/default.nix index 435b9cdcee90..272656349f6c 100644 --- a/pkgs/tools/misc/tmux/default.nix +++ b/pkgs/tools/misc/tmux/default.nix @@ -2,21 +2,16 @@ stdenv.mkDerivation rec { pname = "tmux"; - version = "1.7"; + version = "1.8"; name = "${pname}-${version}"; src = fetchurl { url = "mirror://sourceforge/${pname}/${name}.tar.gz"; - sha256 = "0ywy1x2g905hmhkdz418ik42lcvnhnwr8fv63rcqczfg27d6nd38"; + sha256 = "f265401ca890f8223e09149fcea5abcd6dfe75d597ab106e172b01e9d0c9cd44"; }; nativeBuildInputs = [ pkgconfig ]; - # There's a bug in tmux's configure script, --disable-static actually enables it - # Fixed upstream in revision ThomasAdam/tmux@e964ff70e696f30f0301d11deb45c8ada54e0c55 - # Remove on next update - dontDisableStatic = true; - buildInputs = [ ncurses libevent ]; meta = { From 7bc828366f14c1d7bcbc3a471541e01e082cffe4 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Mon, 1 Apr 2013 15:42:41 -0700 Subject: [PATCH 143/167] recoll-1.18.1 --- pkgs/applications/search/recoll/default.nix | 24 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/search/recoll/default.nix diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix new file mode 100644 index 000000000000..7d68a12ba8f7 --- /dev/null +++ b/pkgs/applications/search/recoll/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, qt4, zlib, xapian, groff, libxslt, unzip, xpdf, antiword, catdoc, lyx, ghostscript, wv2, file, python}: + +stdenv.mkDerivation rec { + ver = "1.18.1"; + name = "recoll-${ver}"; + + src = fetchurl { + url = "http://www.lesbonscomptes.com/recoll/${name}.tar.gz"; + sha256 = "0cyrkx5aza3485avb2kxc6cbsqqrb32l1kq8ravr9d828331v84f"; + }; + + buildInputs = [ qt4 zlib xapian groff libxslt unzip xpdf antiword catdoc lyx ghostscript wv2 file python ]; + + meta = { + description = "finds keywords inside documents as well as file names"; + longDescription = '' + Xapian frontend that can search through files, archive members, email attachments. + ''; + homepage = http://www.lesbonscomptes.com/recoll/; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.unix; + maintainers = with stdenv.lib.maintainers; [ jcumming ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e299133f134..791f54b715e1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1474,6 +1474,8 @@ let recutils = callPackage ../tools/misc/recutils { }; + recoll = callPackage ../applications/search/recoll { }; + refind = callPackage ../tools/misc/refind { }; reiser4progs = callPackage ../tools/filesystems/reiser4progs { }; From e77b526e0cfbdf6d150e052a6ae15ee946395d6f Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Tue, 2 Apr 2013 11:39:36 +0800 Subject: [PATCH 144/167] racket: enable HTML docs --- pkgs/development/interpreters/racket/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix index 4a6713580da7..d0e4fee33595 100644 --- a/pkgs/development/interpreters/racket/default.nix +++ b/pkgs/development/interpreters/racket/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, cairo, file, pango, glib, gtk , which, libtool, makeWrapper, libjpeg, libpng -, fontconfig, liberation_ttf } : +, fontconfig, liberation_ttf, sqlite } : stdenv.mkDerivation rec { pname = "racket"; @@ -13,9 +13,9 @@ stdenv.mkDerivation rec { }; # Various racket executables do run-time searches for these. - ffiSharedLibs = "${glib}/lib:${cairo}/lib:${pango}/lib:${gtk}/lib:${libjpeg}/lib:${libpng}/lib"; + ffiSharedLibs = "${glib}/lib:${cairo}/lib:${pango}/lib:${gtk}/lib:${libjpeg}/lib:${libpng}/lib:${sqlite}/lib"; - buildInputs = [ file libtool which makeWrapper fontconfig liberation_ttf ]; + buildInputs = [ file libtool which makeWrapper fontconfig liberation_ttf sqlite ]; preConfigure = '' export LD_LIBRARY_PATH=${ffiSharedLibs}:$LD_LIBRARY_PATH From ed6ae95e1af6335c91f292dd19e24d18d1093653 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Mon, 1 Apr 2013 22:59:22 -0700 Subject: [PATCH 145/167] fix recoll filters, enable inotify support. --- pkgs/applications/search/recoll/default.nix | 43 +++++++++++++++++++-- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index 7d68a12ba8f7..966d41315a1c 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -1,4 +1,7 @@ -{ stdenv, fetchurl, qt4, zlib, xapian, groff, libxslt, unzip, xpdf, antiword, catdoc, lyx, ghostscript, wv2, file, python}: +{ stdenv, fetchurl +, qt4, xapian, file, python +, djvulibre, groff, libxslt, unzip, xpdf, antiword, catdoc, lyx +, ghostscript, gawk, gnugrep, gnused, gnutar, gzip, libiconvOrLibc }: stdenv.mkDerivation rec { ver = "1.18.1"; @@ -9,13 +12,45 @@ stdenv.mkDerivation rec { sha256 = "0cyrkx5aza3485avb2kxc6cbsqqrb32l1kq8ravr9d828331v84f"; }; - buildInputs = [ qt4 zlib xapian groff libxslt unzip xpdf antiword catdoc lyx ghostscript wv2 file python ]; + configureFlags = [ "--with-inotify" ]; + + buildInputs = [ qt4 xapian file python ]; + + # the filters search through ${PATH} using a sh proc 'checkcmds' for the + # filtering utils. Short circuit this by replacing the filtering command with + # the absolute path to the filtering command. + postInstall = '' + for f in $out/share/recoll/filters/* ; do + substituteInPlace $f --replace antiword ${antiword}/bin/antiword + substituteInPlace $f --replace awk ${gawk}/bin/awk + substituteInPlace $f --replace catppt ${catdoc}/bin/catppt + substituteInPlace $f --replace djvused ${djvulibre}/bin/djvused + substituteInPlace $f --replace djvutxt ${djvulibre}/bin/djvutxt + substituteInPlace $f --replace grep ${gnugrep}/bin/grep + substituteInPlace $f --replace groff ${groff}/bin/groff + substituteInPlace $f --replace gunzip ${gzip}/bin/gunzip + substituteInPlace $f --replace iconv ${libiconvOrLibc}/bin/iconv + substituteInPlace $f --replace lyx ${lyx}/bin/lyx + substituteInPlace $f --replace pdftotext ${xpdf}/bin/pdftotext + substituteInPlace $f --replace pstotext ${ghostscript}/bin/ps2ascii + substituteInPlace $f --replace sed ${gnused}/bin/sed + substituteInPlace $f --replace tar ${gnutar}/bin/tar + substituteInPlace $f --replace unzip ${unzip}/bin/unzip + substituteInPlace $f --replace xls2csv ${catdoc}/bin/xls2csv + substituteInPlace $f --replace xsltproc ${libxslt}/bin/xsltproc + done + ''; + # TODO: + #substituteInPlace $f --replace unrtf ${unrtf}/bin/unrtf + #substituteInPlace $f --replace untex ${untex}/bin/untex + #substituteInPlace $f --replace wpd2html ${wpd2html}/bin/wpd2html meta = { description = "finds keywords inside documents as well as file names"; longDescription = '' - Xapian frontend that can search through files, archive members, email attachments. - ''; + Recoll is an Xapian frontend that can search through files, archive + members, email attachments. + ''; homepage = http://www.lesbonscomptes.com/recoll/; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.unix; From dfb5cf5cc07abb475d29f252463e914760de0154 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Apr 2013 11:15:53 +0200 Subject: [PATCH 146/167] hspec 1.5.2 fails its test suite on i686-linux. The issue is under investigation and it's probably harmless. --- pkgs/development/libraries/haskell/hspec/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/hspec/default.nix b/pkgs/development/libraries/haskell/hspec/default.nix index 2de17a479ad7..bd517ababa67 100644 --- a/pkgs/development/libraries/haskell/hspec/default.nix +++ b/pkgs/development/libraries/haskell/hspec/default.nix @@ -18,6 +18,7 @@ cabal.mkDerivation (self: { hspecMeta HUnit QuickCheck quickcheckIo random setenv silently time transformers ]; + doCheck = self.stdenv.system == "x86_64-linux"; meta = { homepage = "http://hspec.github.com/"; description = "Behavior-Driven Development for Haskell"; From 51fadefc47b894c85f5d0d0caf08baf6480a724f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Apr 2013 11:19:31 +0200 Subject: [PATCH 147/167] haskell-HUnit: add version 1.2.5.2 --- .../libraries/haskell/HUnit/1.2.5.2.nix | 18 ++++++++++++++++++ pkgs/top-level/haskell-packages.nix | 5 +++-- 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/libraries/haskell/HUnit/1.2.5.2.nix diff --git a/pkgs/development/libraries/haskell/HUnit/1.2.5.2.nix b/pkgs/development/libraries/haskell/HUnit/1.2.5.2.nix new file mode 100644 index 000000000000..cbebb60b1748 --- /dev/null +++ b/pkgs/development/libraries/haskell/HUnit/1.2.5.2.nix @@ -0,0 +1,18 @@ +{ cabal, deepseq }: + +cabal.mkDerivation (self: { + pname = "HUnit"; + version = "1.2.5.2"; + sha256 = "0hcs6qh8bqhip1kkjjnw7ccgcsmawdz5yvffjj5y8zd2vcsavx8a"; + buildDepends = [ deepseq ]; + meta = { + homepage = "http://hunit.sourceforge.net/"; + description = "A unit testing framework for Haskell"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ + self.stdenv.lib.maintainers.andres + self.stdenv.lib.maintainers.simons + ]; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index d8d574acdce7..a70d41b9b5ab 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -139,7 +139,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); haskellSrc = self.haskellSrc_1_0_1_5; # 7.6 ok html = self.html_1_0_1_2; # 7.6 ok HTTP = self.HTTP_4000_2_8; # 7.6 ok - HUnit = self.HUnit_1_2_5_1; # 7.6 ok + HUnit = self.HUnit_1_2_5_2; # 7.6 ok mtl = self.mtl_2_1_2; # 7.6 ok network = self.network_2_4_1_2; # 7.6 ok OpenGL = self.OpenGL_2_8_0_0; # 7.6 ok @@ -1136,7 +1136,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); HUnit_1_2_4_2 = callPackage ../development/libraries/haskell/HUnit/1.2.4.2.nix {}; HUnit_1_2_4_3 = callPackage ../development/libraries/haskell/HUnit/1.2.4.3.nix {}; HUnit_1_2_5_1 = callPackage ../development/libraries/haskell/HUnit/1.2.5.1.nix {}; - HUnit = self.HUnit_1_2_5_1; + HUnit_1_2_5_2 = callPackage ../development/libraries/haskell/HUnit/1.2.5.2.nix {}; + HUnit = self.HUnit_1_2_5_2; hxt = callPackage ../development/libraries/haskell/hxt {}; From 2522d5c8f59c06b3e8e023bcfaee53e5fb8a61ed Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Apr 2013 11:19:59 +0200 Subject: [PATCH 148/167] haskell-ghc-mod: update to version 1.12.4 --- pkgs/development/libraries/haskell/ghc-mod/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/ghc-mod/default.nix b/pkgs/development/libraries/haskell/ghc-mod/default.nix index f12f789ea991..31edc7635cf8 100644 --- a/pkgs/development/libraries/haskell/ghc-mod/default.nix +++ b/pkgs/development/libraries/haskell/ghc-mod/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "ghc-mod"; - version = "1.12.3"; - sha256 = "1dc919xbq7aqvpayqh9czvpzz4w4j082d1fjv0n9b7i4a780xghv"; + version = "1.12.4"; + sha256 = "1f4pdwimzc2i7bb7ccpbl8pn18ygnqd65xw1z5cmhlswasbdab14"; isLibrary = false; isExecutable = true; buildDepends = [ From 5384018fbd5e2fb5463564708be02cde439e39a5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Apr 2013 11:19:59 +0200 Subject: [PATCH 149/167] haskell-unix-time: update to version 0.1.6 --- pkgs/development/libraries/haskell/unix-time/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/unix-time/default.nix b/pkgs/development/libraries/haskell/unix-time/default.nix index 9e1614117932..3d3fbdeca45c 100644 --- a/pkgs/development/libraries/haskell/unix-time/default.nix +++ b/pkgs/development/libraries/haskell/unix-time/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "unix-time"; - version = "0.1.5"; - sha256 = "13xks5kshr51mbs112j8vvhirzhbi3fq6zjw7l4z2iwn8chh4hwg"; + version = "0.1.6"; + sha256 = "0l8k42n67qwc1ljxw2ksmdnj630q1ql0im0j1z7yv9kak9pmqfy6"; testDepends = [ doctest hspec QuickCheck time ]; meta = { description = "Unix time parser/formatter and utilities"; From 01ba4463c030fc009cb046a9aba13d1e35ceb15c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Apr 2013 11:19:59 +0200 Subject: [PATCH 150/167] haskell-yesod-auth: update to version 1.1.6 --- pkgs/development/libraries/haskell/yesod-auth/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/yesod-auth/default.nix b/pkgs/development/libraries/haskell/yesod-auth/default.nix index 6f9fe09de4f1..61fa603530f6 100644 --- a/pkgs/development/libraries/haskell/yesod-auth/default.nix +++ b/pkgs/development/libraries/haskell/yesod-auth/default.nix @@ -8,8 +8,8 @@ cabal.mkDerivation (self: { pname = "yesod-auth"; - version = "1.1.5.3"; - sha256 = "07srz4zpkn8w382xwi8ri6mh9kgplf0m51819zw1hympphmd9z82"; + version = "1.1.6"; + sha256 = "0g6ik3qvjnpyfbr2fciz53l62q44zi7ipil8v7hy56808n5y6i4i"; buildDepends = [ aeson authenticate blazeHtml blazeMarkup fileEmbed hamlet httpConduit httpTypes liftedBase mimeMail network persistent From c6637b1f30c55c412d8e92b5341726c3e41742a7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Apr 2013 11:19:59 +0200 Subject: [PATCH 151/167] haskell-yesod-core: update to version 1.1.8.3 --- pkgs/development/libraries/haskell/yesod-core/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/yesod-core/default.nix b/pkgs/development/libraries/haskell/yesod-core/default.nix index 813c524ca357..8f9a9ed1a71a 100644 --- a/pkgs/development/libraries/haskell/yesod-core/default.nix +++ b/pkgs/development/libraries/haskell/yesod-core/default.nix @@ -9,8 +9,8 @@ cabal.mkDerivation (self: { pname = "yesod-core"; - version = "1.1.8.2"; - sha256 = "0brrvij1vldb5zr3vnynikaf1x479qrgf7k3162nhrmwl57lm9sz"; + version = "1.1.8.3"; + sha256 = "116vglpqh2561g0gzhm4ijwx829c50ai1hh715vwi5j5i01y2rkr"; buildDepends = [ aeson blazeBuilder blazeHtml blazeMarkup caseInsensitive cereal clientsession conduit cookie failure fastLogger hamlet httpTypes From eeeef91f7337ba631266bbc6f2499b26a76717de Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Apr 2013 12:53:17 +0200 Subject: [PATCH 152/167] haskell-ghc-mod: disable test suite to fix the build The test suite depends on the ghc-path module, which doesn't work with ghc-wrapper. Eventually, we'll need a solution for this problem in our Cabal builds. --- pkgs/development/libraries/haskell/ghc-mod/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/ghc-mod/default.nix b/pkgs/development/libraries/haskell/ghc-mod/default.nix index 31edc7635cf8..a8224a85745e 100644 --- a/pkgs/development/libraries/haskell/ghc-mod/default.nix +++ b/pkgs/development/libraries/haskell/ghc-mod/default.nix @@ -25,6 +25,7 @@ cabal.mkDerivation (self: { ensureDir "$out/share/emacs" mv $pname-$version emacs/site-lisp ''; + doCheck = false; meta = { homepage = "http://www.mew.org/~kazu/proj/ghc-mod/"; description = "Happy Haskell programming on Emacs/Vim"; From 3bdb2ecea41ef4452a843948cd675b87313beb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 2 Apr 2013 10:21:31 +0200 Subject: [PATCH 153/167] cinepaint: making it run (missing rpath) --- pkgs/applications/graphics/cinepaint/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/cinepaint/default.nix b/pkgs/applications/graphics/cinepaint/default.nix index 7b1a7f26239f..8d88e570f272 100644 --- a/pkgs/applications/graphics/cinepaint/default.nix +++ b/pkgs/applications/graphics/cinepaint/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkgconfig ]; - NIX_LDFLAGS = "-llcms -ljpeg"; + NIX_LDFLAGS = "-llcms -ljpeg -lX11"; # NIX_CFLAGS_COMPILE = "-I."; From 19deeadae022eeae985c052569ad6e05cc26d62f Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Tue, 2 Apr 2013 15:52:57 +0200 Subject: [PATCH 154/167] mopidy: Update to 0.12.0 --- pkgs/applications/audio/mopidy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix index d285c4b0e237..d4777dcc53a8 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -5,12 +5,12 @@ pythonPackages.buildPythonPackage rec { name = "mopidy-${version}"; - version = "0.11.1"; + version = "0.12.0"; src = fetchgit { url = "https://github.com/mopidy/mopidy.git"; rev = "refs/tags/v${version}"; - sha256 = "123p9hsnlgwvrw4vzlxjf5f43rqzqa3ynbqha8pyi6r0q3ln7qjn"; + sha256 = "18b1gsyq1ph1a8gl6m4jmhkvq1gyyhbkbb6rrr3qr4rb5prl1fyi"; }; propagatedBuildInputs = with pythonPackages; [ From c544639554f7c4f3a43dbee9c3b9192a66146fbd Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Tue, 2 Apr 2013 15:53:38 +0200 Subject: [PATCH 155/167] darktable: Add 1.2-RC1 as darktable12 --- .../graphics/darktable/1.2rc1.nix | 53 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 57 insertions(+) create mode 100644 pkgs/applications/graphics/darktable/1.2rc1.nix diff --git a/pkgs/applications/graphics/darktable/1.2rc1.nix b/pkgs/applications/graphics/darktable/1.2rc1.nix new file mode 100644 index 000000000000..906240d864f6 --- /dev/null +++ b/pkgs/applications/graphics/darktable/1.2rc1.nix @@ -0,0 +1,53 @@ +{ stdenv, fetchurl +, GConf, atk, cairo, cmake, curl, dbus_glib, exiv2, glib +, libgnome_keyring, gphoto2, gtk, ilmbase, intltool, lcms, lcms2 +, lensfun, libXau, libXdmcp, libexif, libglade, libgphoto2, libjpeg +, libpng, libpthreadstubs, libraw1394, librsvg, libtiff, libxcb +, openexr, pixman, pkgconfig, sqlite, bash, libxslt }: + +assert stdenv ? glibc; + +stdenv.mkDerivation rec { + version = "1.2rc1"; + name = "darktable-${version}"; + + src = fetchurl { + url = "http://tinyurl.com/bmwdztq"; + name = "${name}-${version}.tar.xz"; + sha256 = "0l3gl49bmaljrrl4zfaivvj7apxa2jm934ylq24gcms3b2whv70m"; + }; + + buildInputs = + [ GConf atk cairo cmake curl dbus_glib exiv2 glib libgnome_keyring gtk + ilmbase intltool lcms lcms2 lensfun libXau libXdmcp libexif + libglade libgphoto2 libjpeg libpng libpthreadstubs libraw1394 + librsvg libtiff libxcb openexr pixman pkgconfig sqlite libxslt + ]; + + preConfigure = '' + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gtk}/include/gtk-2.0" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gtk}/lib/gtk-2.0/include" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${cairo}/include/cairo" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${atk}/include/atk-1.0" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${ilmbase}/include/OpenEXR" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${openexr}/include/OpenEXR" + + substituteInPlace tools/create_preferences.sh.in --replace '#!/usr/bin/env bash' '#!${bash}/bin/bash' + ''; + + cmakeFlags = [ + "-DPTHREAD_INCLUDE_DIR=${stdenv.glibc}/include" + "-DPTHREAD_LIBRARY=${stdenv.glibc}/lib/libpthread.so" + "-DCMAKE_BUILD_TYPE=Release" + "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" + "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk}/lib/gtk-2.0/include" + ]; + + meta = with stdenv.lib; { + description = "Virtual lighttable and darkroom for photographers"; + homepage = http://darktable.sourceforge.net; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = [ maintainers.goibhniu ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e299133f134..32646212ad77 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6735,6 +6735,10 @@ let inherit (gnome) GConf libglade; }; + darktable12 = callPackage ../applications/graphics/darktable/1.2rc1.nix { + inherit (gnome) GConf libglade; + }; + "dd-agent" = callPackage ../tools/networking/dd-agent { }; dia = callPackage ../applications/graphics/dia { From 1aef67362fc72f394c679e9131a484071393f548 Mon Sep 17 00:00:00 2001 From: Lluis Batlle Date: Tue, 2 Apr 2013 18:02:03 +0200 Subject: [PATCH 156/167] guile: adding a patch to allow guile builds without chroots Otherwise, the NSS troubles may make a test fail. Patch suggested by ludo. --- .../interpreters/guile/default.nix | 2 +- .../interpreters/guile/eai_system.patch | 24 +++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/interpreters/guile/eai_system.patch diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix index d09e995e95c0..45793b25d25b 100644 --- a/pkgs/development/interpreters/guile/default.nix +++ b/pkgs/development/interpreters/guile/default.nix @@ -29,7 +29,7 @@ enableParallelBuilding = true; - patches = [ ./disable-gc-sensitive-tests.patch ] ++ + patches = [ ./disable-gc-sensitive-tests.patch ./eai_system.patch ] ++ (stdenv.lib.optional (coverageAnalysis != null) ./gcov-file-name.patch); # Explicitly link against libgcc_s, to work around the infamous diff --git a/pkgs/development/interpreters/guile/eai_system.patch b/pkgs/development/interpreters/guile/eai_system.patch new file mode 100644 index 000000000000..b0eb7ac44dae --- /dev/null +++ b/pkgs/development/interpreters/guile/eai_system.patch @@ -0,0 +1,24 @@ +Building nixpkgs in non-chroot, NSS modules may fail +and that will report EAI_SYSTEM in getaddrinfo. +https://bugzilla.novell.com/show_bug.cgi?id=794696 + +Index: guile-2.0.7/test-suite/tests/net-db.test +=================================================================== +--- guile-2.0.7.orig/test-suite/tests/net-db.test ++++ guile-2.0.7/test-suite/tests/net-db.test +@@ -79,6 +79,7 @@ + (and (defined? 'EAI_NODATA) ; GNU extension + (= errcode EAI_NODATA)) + (= errcode EAI_AGAIN) ++ (= errcode EAI_SYSTEM) + (begin + (format #t "unexpected error code: ~a ~s~%" + errcode (gai-strerror errcode)) +@@ -105,6 +106,7 @@ + ;; `EAI_NONAME'.) + (and (or (= errcode EAI_SERVICE) + (= errcode EAI_NONAME) ++ (= errcode EAI_SYSTEM) + (and (defined? 'EAI_NODATA) + (= errcode EAI_NODATA))) + (string? (gai-strerror errcode)))))))) From a4130abcbf5968539009edb0621135ec56745ae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 3 Apr 2013 10:39:17 +0200 Subject: [PATCH 157/167] libffi: upgrade to 3.0.13 --- pkgs/development/libraries/libffi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index 83f88e1819f9..27c3e9f66f33 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv }: stdenv.mkDerivation (rec { - name = "libffi-3.0.9"; + name = "libffi-3.0.13"; src = fetchurl { url = "ftp://sourceware.org/pub/libffi/${name}.tar.gz"; - sha256 = "0ln4jbpb6clcsdpb9niqk0frgx4k0xki96wiv067ig0q4cajb7aq"; + sha256 = "077ibkf84bvcd6rw1m6jb107br63i2pp301rkmsbgg6300adxp8x"; }; doCheck = true; From 8ad8eb6ee013f4729feb62c6da39b0ba0f0aafd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 3 Apr 2013 11:27:12 +0200 Subject: [PATCH 158/167] glibc: hurd: apply none of the patches --- pkgs/development/libraries/glibc/2.17/common.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/glibc/2.17/common.nix b/pkgs/development/libraries/glibc/2.17/common.nix index 9c1a43a97d7c..413a0d7aae82 100644 --- a/pkgs/development/libraries/glibc/2.17/common.nix +++ b/pkgs/development/libraries/glibc/2.17/common.nix @@ -31,13 +31,11 @@ stdenv.mkDerivation ({ enableParallelBuilding = true; - patches = - [ /* Have rpcgen(1) look for cpp(1) in $PATH. - On GNU/Hurd, use the old version of the patch since the new one - doesn't apply. */ - (if hurdHeaders != null - then ../2.13/rpcgen-path.patch - else ./rpcgen-path.patch) + /* Don't try to apply these patches to the Hurd's snapshot, which is + older. */ + patches = stdenv.lib.optionals (hurdHeaders == null) + [ /* Have rpcgen(1) look for cpp(1) in $PATH. */ + ./rpcgen-path.patch /* Allow NixOS and Nix to handle the locale-archive. */ ./nix-locale-archive.patch From 91ff5e33cc046494f983ae301b5d24ca5c9632ce Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 3 Apr 2013 13:10:53 +0200 Subject: [PATCH 159/167] sudo: Update to 1.8.7p7 Ouch, our sudo was criminally outdated. CVE-2013-1775, CVE-2013-1776, CVE-2012-2337, CVE-2011-0010. --- pkgs/tools/security/sudo/default.nix | 50 +++++++++++++++++----------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/pkgs/tools/security/sudo/default.nix b/pkgs/tools/security/sudo/default.nix index e84fb50b3599..9206a5e44520 100644 --- a/pkgs/tools/security/sudo/default.nix +++ b/pkgs/tools/security/sudo/default.nix @@ -1,37 +1,45 @@ -{stdenv, fetchurl, coreutils, pam, groff}: +{ stdenv, fetchurl, coreutils, pam, groff }: stdenv.mkDerivation rec { - name = "sudo-1.7.2"; + name = "sudo-1.8.6p7"; src = fetchurl { - urls = + urls = [ "ftp://ftp.sudo.ws/pub/sudo/${name}.tar.gz" "ftp://ftp.sudo.ws/pub/sudo/OLD/${name}.tar.gz" ]; - sha256 = "02hhvwxj7gnsvmq3cjh592g2xdjpkfcp1jjvwb64nxsz2kbccwy1"; + sha256 = "0djh2b14d1b1knah46v971x940rz63hvnskz16fzami3nbnqj41h"; }; - # `--with-stow' allows /etc/sudoers to be a symlink. Only it - # doesn't really help because the target still has to have mode 0440, - # while files in the Nix store all have mode 0444. - #configureFlags = "--with-stow"; + postConfigure = '' + cat >> pathnames.h <> config.h - echo '#define _PATH_SUDO_TIMEDIR \"/var/run/sudo\"' >> config.h - echo '#define _PATH_MV \"/var/run/current-system/sw/bin/mv\"' >> config.h - echo '#define _PATH_VI \"/var/run/current-system/sw/bin/nano\"' >> config.h - echo '#define EDITOR _PATH_VI' >>config.h + makeFlags="install_uid=$(id -u) install_gid=$(id -g)" + installFlags="sudoers_uid=$(id -u) sudoers_gid=$(id -g) sysconfdir=$out/etc" + ''; - makeFlags=\"install_uid=$(id -u) install_gid=$(id -g)\" - installFlags=\"sudoers_uid=$(id -u) sudoers_gid=$(id -g) sysconfdir=$out/etc\" - "; + buildInputs = [ coreutils pam groff ]; - buildInputs = [coreutils pam groff]; + enableParallelBuilding = true; + + postInstall = '' + # ‘visudo’ does not make sense on NixOS. + rm $out/sbin/visudo $out/share/man/man8/visudo.8 + + rm $out/share/doc/sudo/ChangeLog + ''; meta = { - description = "sudo, a command to run commands as root"; + description = "A command to run commands as root"; longDescription = '' Sudo (su "do") allows a system administrator to delegate @@ -43,5 +51,7 @@ stdenv.mkDerivation rec { homepage = http://www.sudo.ws/; license = http://www.sudo.ws/sudo/license.html; + + maintainers = [ stdenv.lib.maintainers.eelco ]; }; } From 48a4e919894013d146659638de45dc358410f700 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 3 Apr 2013 07:41:02 -0400 Subject: [PATCH 160/167] nodePackages.patchLatest: Handle tarballs whose root directories are already named 'package' Signed-off-by: Shea Levy --- pkgs/top-level/node-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/node-packages.nix b/pkgs/top-level/node-packages.nix index c4905cf17a11..93085491b516 100644 --- a/pkgs/top-level/node-packages.nix +++ b/pkgs/top-level/node-packages.nix @@ -12,7 +12,7 @@ let self = { mkdir unpack cd unpack tar xf ${src} - mv */ package + mv */ package 2>/dev/null || true sed -i -e "s/: \"latest\"/: \"*\"/" package/package.json tar cf $out * ''; From 93e8920ebf4e6f0ccdf6384281165e54fbb0ac4a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 3 Apr 2013 12:06:22 +0200 Subject: [PATCH 161/167] haskell-data-default: update to version 0.5.2 --- .../libraries/haskell/data-default/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/data-default/default.nix b/pkgs/development/libraries/haskell/data-default/default.nix index 2945f7c5a8f2..9a73f6d74ec0 100644 --- a/pkgs/development/libraries/haskell/data-default/default.nix +++ b/pkgs/development/libraries/haskell/data-default/default.nix @@ -1,10 +1,17 @@ -{ cabal, dlist }: +{ cabal, dataDefaultClass, dataDefaultInstancesBase +, dataDefaultInstancesContainers, dataDefaultInstancesDlist +, dataDefaultInstancesOldLocale +}: cabal.mkDerivation (self: { pname = "data-default"; - version = "0.5.1"; - sha256 = "05zp9bcxm4lcdqniwckq0zi014iqcnqbrk5wh54dyy83h97z6mpv"; - buildDepends = [ dlist ]; + version = "0.5.2"; + sha256 = "1w9wqv3k579zp5w11v06fak0lr9zzads49b1c9rb1vkz1d8bvf82"; + buildDepends = [ + dataDefaultClass dataDefaultInstancesBase + dataDefaultInstancesContainers dataDefaultInstancesDlist + dataDefaultInstancesOldLocale + ]; meta = { description = "A class for types with a default value"; license = self.stdenv.lib.licenses.bsd3; From e16d9dc8adcdef0d6b57c477058d2231526cb57a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 3 Apr 2013 12:06:22 +0200 Subject: [PATCH 162/167] haskell-http-reverse-proxy: update to version 0.1.1.4 --- .../libraries/haskell/http-reverse-proxy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/http-reverse-proxy/default.nix b/pkgs/development/libraries/haskell/http-reverse-proxy/default.nix index ce10da775b0a..8378a3dd9216 100644 --- a/pkgs/development/libraries/haskell/http-reverse-proxy/default.nix +++ b/pkgs/development/libraries/haskell/http-reverse-proxy/default.nix @@ -6,8 +6,8 @@ cabal.mkDerivation (self: { pname = "http-reverse-proxy"; - version = "0.1.1.3"; - sha256 = "0z2h2xbvg034snfh3hzc0v2zp5j57lcak2h4vz10lwaqr3jxqnpn"; + version = "0.1.1.4"; + sha256 = "0j77hp1ddbxrsv65xf6kqbl8jnvl6qzx98p0lg73j7s76j7vg9cd"; buildDepends = [ blazeBuilder caseInsensitive classyPrelude conduit dataDefault httpConduit httpTypes liftedBase monadControl network From bffcad37021db9b5a0c774282588ea0f5c69890c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 3 Apr 2013 12:06:22 +0200 Subject: [PATCH 163/167] haskell-warp: update to version 1.3.8 --- pkgs/development/libraries/haskell/warp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/warp/default.nix b/pkgs/development/libraries/haskell/warp/default.nix index 2fe4dd8d5649..043a9a925bf0 100644 --- a/pkgs/development/libraries/haskell/warp/default.nix +++ b/pkgs/development/libraries/haskell/warp/default.nix @@ -6,8 +6,8 @@ cabal.mkDerivation (self: { pname = "warp"; - version = "1.3.7.5"; - sha256 = "1y6xnlrqfd763s5r79f53vlbk4iirnci6wpaicrm14f791w2mppc"; + version = "1.3.8"; + sha256 = "0lpyrdwgsaxzds6qrh0drp0r90x1va4d7z2n65xb0rhkslr3sk3l"; buildDepends = [ blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable httpTypes liftedBase network networkConduit simpleSendfile From 0baa128ebabed893d5112e8f10e9211d4fbdc048 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 3 Apr 2013 13:10:18 +0200 Subject: [PATCH 164/167] haskell-data-default-class: add version 0.0.1 --- .../haskell/data-default-class/default.nix | 13 +++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 pkgs/development/libraries/haskell/data-default-class/default.nix diff --git a/pkgs/development/libraries/haskell/data-default-class/default.nix b/pkgs/development/libraries/haskell/data-default-class/default.nix new file mode 100644 index 000000000000..8f99c0143cd5 --- /dev/null +++ b/pkgs/development/libraries/haskell/data-default-class/default.nix @@ -0,0 +1,13 @@ +{ cabal }: + +cabal.mkDerivation (self: { + pname = "data-default-class"; + version = "0.0.1"; + sha256 = "0ccgr3jllinchqhw3lsn73ic6axk4196if5274rr1rghls0fxj5d"; + meta = { + description = "A class for types with a default value"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index a70d41b9b5ab..40701673295d 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -703,6 +703,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); dataDefault = callPackage ../development/libraries/haskell/data-default {}; + dataDefaultClass = callPackage ../development/libraries/haskell/data-default-class {}; + dataenc = callPackage ../development/libraries/haskell/dataenc {}; dataInttrie = callPackage ../development/libraries/haskell/data-inttrie {}; From 41281b762ac2df75f3c1c63646fed7390a55951f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 3 Apr 2013 13:24:54 +0200 Subject: [PATCH 165/167] Add various data-default instances. --- .../data-default-instances-base/default.nix | 14 ++++++++++++++ .../data-default-instances-containers/default.nix | 14 ++++++++++++++ .../data-default-instances-dlist/default.nix | 14 ++++++++++++++ .../data-default-instances-old-locale/default.nix | 14 ++++++++++++++ pkgs/top-level/haskell-packages.nix | 4 ++++ 5 files changed, 60 insertions(+) create mode 100644 pkgs/development/libraries/haskell/data-default-instances-base/default.nix create mode 100644 pkgs/development/libraries/haskell/data-default-instances-containers/default.nix create mode 100644 pkgs/development/libraries/haskell/data-default-instances-dlist/default.nix create mode 100644 pkgs/development/libraries/haskell/data-default-instances-old-locale/default.nix diff --git a/pkgs/development/libraries/haskell/data-default-instances-base/default.nix b/pkgs/development/libraries/haskell/data-default-instances-base/default.nix new file mode 100644 index 000000000000..b8b8494550c8 --- /dev/null +++ b/pkgs/development/libraries/haskell/data-default-instances-base/default.nix @@ -0,0 +1,14 @@ +{ cabal, dataDefaultClass }: + +cabal.mkDerivation (self: { + pname = "data-default-instances-base"; + version = "0.0.1"; + sha256 = "1832nq6by91f1iw73ycvkbgn8kpra83pvf2q61hy47xffh0zy4pb"; + buildDepends = [ dataDefaultClass ]; + meta = { + description = "Default instances for types in base"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; + }; +}) diff --git a/pkgs/development/libraries/haskell/data-default-instances-containers/default.nix b/pkgs/development/libraries/haskell/data-default-instances-containers/default.nix new file mode 100644 index 000000000000..98590fa795b0 --- /dev/null +++ b/pkgs/development/libraries/haskell/data-default-instances-containers/default.nix @@ -0,0 +1,14 @@ +{ cabal, dataDefaultClass }: + +cabal.mkDerivation (self: { + pname = "data-default-instances-containers"; + version = "0.0.1"; + sha256 = "06h8xka031w752a7cjlzghvr8adqbl95xj9z5zc1b62w02phfpm5"; + buildDepends = [ dataDefaultClass ]; + meta = { + description = "Default instances for types in containers"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; + }; +}) diff --git a/pkgs/development/libraries/haskell/data-default-instances-dlist/default.nix b/pkgs/development/libraries/haskell/data-default-instances-dlist/default.nix new file mode 100644 index 000000000000..1fa64003f954 --- /dev/null +++ b/pkgs/development/libraries/haskell/data-default-instances-dlist/default.nix @@ -0,0 +1,14 @@ +{ cabal, dataDefaultClass, dlist }: + +cabal.mkDerivation (self: { + pname = "data-default-instances-dlist"; + version = "0.0.1"; + sha256 = "0narkdqiprhgayjiawrr4390h4rq4pl2pb6mvixbv2phrc8kfs3x"; + buildDepends = [ dataDefaultClass dlist ]; + meta = { + description = "Default instances for types in dlist"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; + }; +}) diff --git a/pkgs/development/libraries/haskell/data-default-instances-old-locale/default.nix b/pkgs/development/libraries/haskell/data-default-instances-old-locale/default.nix new file mode 100644 index 000000000000..e8647898d9dd --- /dev/null +++ b/pkgs/development/libraries/haskell/data-default-instances-old-locale/default.nix @@ -0,0 +1,14 @@ +{ cabal, dataDefaultClass }: + +cabal.mkDerivation (self: { + pname = "data-default-instances-old-locale"; + version = "0.0.1"; + sha256 = "00h81i5phib741yj517p8mbnc48myvfj8axzsw44k34m48lv1lv0"; + buildDepends = [ dataDefaultClass ]; + meta = { + description = "Default instances for types in old-locale"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 40701673295d..712b5a62f9c9 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -704,6 +704,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); dataDefault = callPackage ../development/libraries/haskell/data-default {}; dataDefaultClass = callPackage ../development/libraries/haskell/data-default-class {}; + dataDefaultInstancesBase = callPackage ../development/libraries/haskell/data-default-instances-containers {}; + dataDefaultInstancesContainers = callPackage ../development/libraries/haskell/data-default-instances-base {}; + dataDefaultInstancesDlist = callPackage ../development/libraries/haskell/data-default-instances-dlist {}; + dataDefaultInstancesOldLocale = callPackage ../development/libraries/haskell/data-default-instances-old-locale {}; dataenc = callPackage ../development/libraries/haskell/dataenc {}; From e42014eb5ab85ae99a679772021d14b76a34d45c Mon Sep 17 00:00:00 2001 From: Alexander Tsamutali Date: Wed, 3 Apr 2013 22:47:42 +0400 Subject: [PATCH 166/167] conkeror: Update to 1.0pre-20130401. --- .../networking/browsers/conkeror/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/browsers/conkeror/default.nix b/pkgs/applications/networking/browsers/conkeror/default.nix index 0a370701109c..b50266e27619 100644 --- a/pkgs/applications/networking/browsers/conkeror/default.nix +++ b/pkgs/applications/networking/browsers/conkeror/default.nix @@ -1,18 +1,18 @@ { stdenv, fetchurl, unzip, xulrunner, makeWrapper }: stdenv.mkDerivation { - name = "conkeror-1.0pre-20120316"; + name = "conkeror-1.0pre-20130401"; src = fetchurl { - url = http://repo.or.cz/w/conkeror.git/snapshot/1264c0dbbefb6d671504a072d4ddb48d62ccead2.zip; - sha256 = "1vdxnhqjjvg9cry70byv6d3wib2p4rxhkmv7hs10pq39km1kpj7f"; + url = http://repo.or.cz/w/conkeror.git/snapshot/0341e791c78653a2f5bbbff9a1dac04bf898dd65.zip; + sha256 = "11v7p40lcz6r5z0w54f8pk6hyn9mqjcw44fqszjyz25rkhx951ry"; }; buildInputs = [ unzip makeWrapper ]; - buildCommand = '' + installPhase = '' mkdir -p $out/libexec/conkeror - unzip $src -d $out/libexec + cp -r * $out/libexec/conkeror makeWrapper ${xulrunner}/bin/xulrunner $out/bin/conkeror \ --add-flags $out/libexec/conkeror/application.ini From 69ad5c5c04f253bed29750636f1bd3a099575200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Wed, 3 Apr 2013 23:34:02 +0200 Subject: [PATCH 167/167] Fix the path to `ping` iputils-20101006/sbin/ping has moved to iputils-20121221/bin/ping Wicd uses ping to test the connection and produced and error message. --- pkgs/tools/networking/wicd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/wicd/default.nix b/pkgs/tools/networking/wicd/default.nix index 6cacfc14ffc8..ded85cd80fb9 100644 --- a/pkgs/tools/networking/wicd/default.nix +++ b/pkgs/tools/networking/wicd/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { substituteInPlace in/scripts=wicd.in --subst-var-by TEMPLATE-DEFAULT $out/share/other/dhclient.conf.template.default - sed -i "2iexport PATH=\$PATH\$\{PATH:+:\}${python}/bin:${wpa_supplicant}/sbin:${dhcpcd}/sbin:${dhcp}/sbin:${wirelesstools}/sbin:${nettools}/sbin:${nettools}/bin:${iputils}/sbin:${openresolv}/sbin:${iproute}/sbin" in/scripts=wicd.in + sed -i "2iexport PATH=\$PATH\$\{PATH:+:\}${python}/bin:${wpa_supplicant}/sbin:${dhcpcd}/sbin:${dhcp}/sbin:${wirelesstools}/sbin:${nettools}/sbin:${nettools}/bin:${iputils}/bin:${openresolv}/sbin:${iproute}/sbin" in/scripts=wicd.in sed -i "3iexport PYTHONPATH=\$PYTHONPATH\$\{PYTHONPATH:+:\}$(toPythonPath $out):$(toPythonPath ${pygobject}):$(toPythonPath ${pythonDBus})" in/scripts=wicd.in sed -i "4iexport LC_ALL=\\\"${locale}\\\"" in/scripts=wicd.in sed -i "2iexport PATH=\$PATH\$\{PATH:+:\}${python}/bin" in/scripts=wicd-client.in