From 36641d9e69fddbd1e17f297a5fd0fa27332eab8c Mon Sep 17 00:00:00 2001 From: wmertens Date: Mon, 6 Oct 2014 08:00:11 +0200 Subject: [PATCH 001/185] setup-etc.pl: Fail when symlink/rename fails When atomicSymlink can't symlink or rename, it should return failure. This is then handled with `... or die` and `... or warn` --- nixos/modules/system/etc/setup-etc.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/etc/setup-etc.pl b/nixos/modules/system/etc/setup-etc.pl index d7e15eccefc..89a49b972ff 100644 --- a/nixos/modules/system/etc/setup-etc.pl +++ b/nixos/modules/system/etc/setup-etc.pl @@ -12,8 +12,8 @@ sub atomicSymlink { my ($source, $target) = @_; my $tmp = "$target.tmp"; unlink $tmp; - symlink $source, $tmp or return 1; - rename $tmp, $target or return 1; + symlink $source, $tmp or return 0; + rename $tmp, $target or return 0; return 1; } From c4673962ed3107dcdafe994056e59b02d85baf44 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 20:04:25 +0100 Subject: [PATCH 002/185] Add cornice 0.17.0 --- pkgs/top-level/python-packages.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fcb7eb212a0..05e57b6723f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -821,6 +821,20 @@ let propagatedBuildInputs = with self; [ iowait psutil pyzmq tornado mock ]; }; + cornice = buildPythonPackage rec { + name = "cornice-${version}"; + version = "0.17.0"; + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/cornice.git; + rev = "refs/tags/${version}"; + sha256 = "12yrcsv1sdl5w308y1cc939ppq7pi2490s54zfcbs481cvsyr1lg"; + }; + + propagatedBuildInputs = with self; [ pyramid simplejson ]; + + doCheck = false; # lazy packager + }; + cvxopt = buildPythonPackage rec { name = "${pname}-${version}"; pname = "cvxopt"; From 00913e355e2028b2b7f3923c07dd2c40d6263880 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 20:04:41 +0100 Subject: [PATCH 003/185] Add configparser 3.3.0r2 --- pkgs/top-level/python-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 05e57b6723f..6390c3116de 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1521,6 +1521,21 @@ let }; }; + configparser = buildPythonPackage rec { + name = "configparser-${version}"; + version = "3.3.0r2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/configparser/${name}.tar.gz"; + sha256 = "6a2318590dfc4013fc5bf53c2bec14a8cb455a232295eb282a13f94786c4b0b2"; + }; + + meta = { + maintainers = [ ]; + platforms = stdenv.lib.platforms.all; + }; + }; + ColanderAlchemy = buildPythonPackage rec { name = "ColanderAlchemy-0.2.0"; From 44fbef6d443a775c05652f20f2bee4248f8a78b7 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 20:04:57 +0100 Subject: [PATCH 004/185] Add konfig 0.9 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6390c3116de..12932f0aad6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4836,6 +4836,24 @@ let }; }; + konfig = buildPythonPackage rec { + name = "konfig-${version}"; + version = "0.9"; + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/konfig.git; + rev = "refs/tags/${version}"; + sha256 = "1v9pjb9idapjlc75p6h06kx7bi8zxhfgj93yxq1bn337kmyk1xdf"; + }; + + buildInputs = with self; [ configparser argparse ]; + + meta = with stdenv.lib; { + description = "Yet Another Config Parser"; + homepage = "https://github.com/mozilla-services/konfig"; + license = licenses.mpl20; + }; + }; + kitchen = buildPythonPackage (rec { name = "kitchen-1.1.1"; disabled = isPy3k; From e0a57ad7f106b72b23dfcb1b59a0f495203a37d7 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 20:05:14 +0100 Subject: [PATCH 005/185] Add mozservices 0.8 --- pkgs/top-level/python-packages.nix | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 12932f0aad6..e725fcd944d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5410,7 +5410,6 @@ let }; }; - mox = buildPythonPackage rec { name = "mox-0.5.3"; @@ -5428,6 +5427,24 @@ let }; }; + mozsvc = buildPythonPackage rec { + name = "mozsvc-${version}"; + version = "0.8"; + + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/mozservices.git; + rev = "refs/tags/${version}"; + sha256 = "0k1d7v8aa4xd3f9h8m5crl647136ba15i9nzdrpxg5aqmv2n0i0p"; + }; + + doCheck = false; # lazy packager + propagatedBuildInputs = with self; [ pyramid simplejson konfig ]; + + meta = { + homepage = https://github.com/mozilla-services/mozservices; + description = "Various utilities for Mozilla apps"; + }; + }; mpmath = buildPythonPackage rec { name = "mpmath-0.17"; From bb02daf594ccab7af3002b4bdc1a2ead6d93d88f Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 20:15:48 +0100 Subject: [PATCH 006/185] Add PyBrowserID 0.9.2 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e725fcd944d..ea188d6843d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11155,6 +11155,24 @@ let propagatedBuildInputs = with self; [ pkgs.libarchive ]; }; + pybrowserid = buildPythonPackage rec { + name = "PyBrowserID-${version}"; + version = "0.9.2"; + src = pkgs.fetchgit { + url = https://github.com/mozilla/PyBrowserID.git; + rev = "refs/tags/${version}"; + sha256 = "1v9pjb9idapjlc75p6h06kx7bi8zxhfgj93yxq1bn337kmyk1xdf"; + }; + + buildInputs = with self; [ mock unittest2 argparse configparser ]; + propagatedBuildInputs = with self; [ requests ]; + + meta = with stdenv.lib; { + description = "Python library for the BrowserID Protocol"; + homepage = "https://github.com/mozilla/PyBrowserID"; + license = licenses.mpl20; + }; + }; pyzmq = buildPythonPackage rec { name = "pyzmq-13.0.0"; From 55cf2a36f2d536d8539f61bcedd4779056891659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 20:22:26 +0100 Subject: [PATCH 007/185] Fix the sha256 for PyBrowserID --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ea188d6843d..2c37db40ea6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11161,10 +11161,10 @@ let src = pkgs.fetchgit { url = https://github.com/mozilla/PyBrowserID.git; rev = "refs/tags/${version}"; - sha256 = "1v9pjb9idapjlc75p6h06kx7bi8zxhfgj93yxq1bn337kmyk1xdf"; + sha256 = "0nyqb0v8yrkqnrqsh1hlhvzr2pyvkxvkw701p3gpsvk29c0gb5n6"; }; - buildInputs = with self; [ mock unittest2 argparse configparser ]; + buildInputs = with self; [ mock unittest2 ]; propagatedBuildInputs = with self; [ requests ]; meta = with stdenv.lib; { From 5f488a16ffa40171e7b3e5526e986504a8fc0014 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 21:07:46 +0100 Subject: [PATCH 008/185] Add tokenserver 1.2.11 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2c37db40ea6..6ded9f43370 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11184,6 +11184,28 @@ let doCheck = false; }; + tokenserver = buildPythonPackage rec { + name = "tokenserver-${version}"; + version = "1.2.11"; + + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/tokenserver.git; + rev = "refs/tags/${version}"; + sha256 = "1pjrw7xhhqx7h4s08h1lsaa499r2ymc41zdknjimn6zlqdjdk1fb"; + }; + + doCheck = false; + propagatedBuildInputs = with self; [ cornice mozsvc pybrowserid ]; + + patchPhase = '' + sed -i "s|'testfixtures'||" setup.py + ''; + + meta = { + maintainers = [ ]; + platforms = stdenv.lib.platforms.all; + }; + }; tissue = buildPythonPackage rec { name = "tissue-0.9.2"; From b8bb7e6db9b585e9a076d53a156dc31528ca5699 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 21:25:04 +0100 Subject: [PATCH 009/185] Add memcache 1.6.3 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6ded9f43370..e698d02da88 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9887,6 +9887,22 @@ let }; }; + umemcache = buildPythonPackage rec { + name = "umemcache-${version}"; + version = "1.6.3"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/u/umemcache/${name}.zip"; + sha256 = "211031a03576b7796bf277dbc9c9e3e754ba066bbb7fb601ab5c6291b8ec1918"; + }; + + meta = { + description = "Ultra fast memcache client written in highly optimized C++ with Python bindings"; + homepage = https://github.com/esnme/ultramemcache; + license = licenses.bsdOriginal; + }; + }; + unittest2 = buildPythonPackage rec { version = "0.5.1"; name = "unittest2-${version}"; From 45a785201878a1ced795c58c6f0797902a9f7007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 21:41:18 +0100 Subject: [PATCH 010/185] Add pyramid_hawkauth v 1.0 --- pkgs/top-level/python-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e698d02da88..d799051a6e8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3022,6 +3022,18 @@ let }; }; + pyramid_hawkauth = buildPythonPackage rec { + name = "pyramidhawkauth-${version}"; + version = "0.1.0"; + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/pyramid_hawkauth.git; + rev = "refs/tags/v${version}"; + sha256 = "1ic7xl72qnz382xaqhcy9ql17gx7pxbs78znp8xr66sp3dcx2s3c"; + }; + + propagatedBuildInputs = with self; [ pyramid hawkauthlib tokenlib webtest ]; + }; + radicale = buildPythonPackage rec { name = "radicale-${version}"; namePrefix = ""; From f448cff884d265f16c8b40b0654a37767a39da06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 21:42:27 +0100 Subject: [PATCH 011/185] Add hawkauthlib v 0.1.1. --- pkgs/top-level/python-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d799051a6e8..3d87012bf06 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4464,6 +4464,18 @@ let }; }; + hawkauthlib = buildPythonPackage rec { + name = "hawkauthlib-${version}"; + version = "0.1.1"; + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/hawkauthlib.git; + rev = "refs/tags/v${version}"; + sha256 = "0b3xydii50ifs8qkgbpdlidfs2rzw63f807ahrq9flz90ahf582h"; + }; + + propagatedBuildInputs = with self; [ requests webob ]; + }; + hcs_utils = buildPythonPackage rec { name = "hcs_utils-1.5"; From d6247c98c311ad5057647510eb2209b247b2003e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 21:44:06 +0100 Subject: [PATCH 012/185] Add pymysql v 0.6.3 --- pkgs/top-level/python-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3d87012bf06..98918d4be38 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5637,6 +5637,15 @@ let }; }); + pymysql = buildPythonPackage rec { + name = "pymysql-${version}"; + version = "0.6.3"; + src = pkgs.fetchgit { + url = https://github.com/PyMySQL/PyMySQL.git; + rev = "refs/tags/pymysql-${version}"; + sha256 = "1m9fr2x49s3aixlmccr3w80skl19dya9h3x69wgl6ly1z27iyg24"; + }; + }; MySQL_python = buildPythonPackage { name = "MySQL-python-1.2.3"; From 6a87d6b5b6b35af55fc75419873b181278114e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 21:45:32 +0100 Subject: [PATCH 013/185] Add pymysqlsa v 1.0 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 98918d4be38..c82f1a3c968 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5647,6 +5647,24 @@ let }; }; + pymysqlsa = self.buildPythonPackage rec { + name = "pymysqlsa-${version}"; + version = "1.0"; + + propagatedBuildInputs = with self; [ pymysql sqlalchemy9 ]; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pymysql_sa/pymysql_sa-1.0.tar.gz"; + sha256 = "a2676bce514a29b2d6ab418812259b0c2f7564150ac53455420a20bd7935314a"; + }; + + meta = { + description = "PyMySQL dialect for SQL Alchemy"; + homepage = https://pypi.python.org/pypi/pymysql_sa; + license = licenses.mit; + }; + }; + MySQL_python = buildPythonPackage { name = "MySQL-python-1.2.3"; From 9308db5b9e31d5de86d4dea0b2b7e067dc952581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 21:45:59 +0100 Subject: [PATCH 014/185] Add tokenlib v 0.3.1 --- pkgs/top-level/python-packages.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c82f1a3c968..85a696fd65d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11140,6 +11140,17 @@ let doCheck = false; }; + tokenlib = buildPythonPackage rec { + name = "tokenlib-${version}"; + version = "0.3.1"; + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/tokenlib.git; + rev = "refs/tags/${version}"; + sha256 = "0dmq41sy64jmkj7n49jgbpii5n5d41ci263lyhqbff5slr289m51"; + }; + + propagatedBuildInputs = with self; [ requests webob ]; + }; tornadokick = buildPythonPackage rec { name = "tornadokick-0.2.1"; From ec58f0b0c53bec3a1b22483b2165878f71b37628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 21:46:24 +0100 Subject: [PATCH 015/185] Add server-syncstorage v 1.5.11 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 85a696fd65d..7bee47546b2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12145,6 +12145,24 @@ let }; }; + serversyncstorage = buildPythonPackage rec { + name = "serversyncstorage-${version}"; + version = "1.5.11"; + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/server-syncstorage.git; + rev = "refs/tags/${version}"; + sha256 = "yrcsv1sdl5w308y1cc939ppq7pi2490s54zfcbs481cvsyr1lg22"; + }; + + propagatedBuildInputs = with self; [ + pyramid sqlalchemy9 simplejson mozsvc cornice pyramidhawkauth pymysql + mysqlsa umemcache wsgiproxy2 requests pybrowserid + ]; + + doCheck = false; # lazy packager + }; + + thumbor = self.buildPythonPackage rec { name = "thumbor-4.0.4"; From 428a83713b3e15c8c446d574ae5e8a97e300bc57 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 8 Dec 2014 22:26:28 +0100 Subject: [PATCH 016/185] Add PasteScript 1.7.5 --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7bee47546b2..60a739e0793 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6378,6 +6378,26 @@ let }; }; + pasteScript = buildPythonPackage rec { + version = "1.7.5"; + name = "PasterScript-${version}"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/P/PasteScript/${name}.tar.gz"; + sha256 = "2b685be69d6ac8bc0fe6f558f119660259db26a15e16a4943c515fbee8093539"; + }; + + doCheck = false; + buildInputs = with self; [ nose ]; + propagatedBuildInputs = with self; [ paste paste_deploy cheetah ]; + + meta = { + description = "A pluggable command-line frontend, including commands to setup package file layouts"; + homepage = http://pythonpaste.org/script/; + platforms = stdenv.lib.platforms.all; + }; + }; + pathpy = buildPythonPackage rec { name = "path.py-5.2"; From e91929647511cba3767aefa1d8aa587ed4b6e58a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 8 Dec 2014 23:46:30 +0100 Subject: [PATCH 017/185] Add syncserver v1.5.0. Also fix some of the dependencies along the way. I'm like that. --- pkgs/top-level/python-packages.nix | 33 +++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 60a739e0793..3b0707aab13 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6370,6 +6370,7 @@ let }; buildInputs = with self; [ nose ]; + propagatedBuildInputs = with self; [ argparse configparser ]; meta = { description = "Load, configure, and compose WSGI applications and servers"; @@ -6389,7 +6390,7 @@ let doCheck = false; buildInputs = with self; [ nose ]; - propagatedBuildInputs = with self; [ paste paste_deploy cheetah ]; + propagatedBuildInputs = with self; [ paste paste_deploy cheetah argparse ]; meta = { description = "A pluggable command-line frontend, including commands to setup package file layouts"; @@ -11293,7 +11294,7 @@ let }; doCheck = false; - propagatedBuildInputs = with self; [ cornice mozsvc pybrowserid ]; + propagatedBuildInputs = with self; [ cornice mozsvc pybrowserid tokenlib ]; patchPhase = '' sed -i "s|'testfixtures'||" setup.py @@ -12165,18 +12166,40 @@ let }; }; + syncserver = buildPythonPackage rec { + name = "syncserver-${version}"; + version = "1.5.0"; + + src = pkgs.fetchgit { + url = https://github.com/mozilla-services/syncserver.git; + rev = "refs/tags/${version}"; + sha256 = "1xljylycxg7351hmqh7aa6fvvsjg06zvd4r7hcjqyd0k0sxvk7y6"; + }; + + buildInputs = with self; [ unittest2 ]; + propagatedBuildInputs = with self; [ + cornice gunicorn pyramid requests simplejson sqlalchemy9 mozsvc tokenserver + serversyncstorage configparser + ]; + + meta = { + maintainers = [ ]; + platforms = stdenv.lib.platforms.all; + }; + }; + serversyncstorage = buildPythonPackage rec { name = "serversyncstorage-${version}"; version = "1.5.11"; src = pkgs.fetchgit { url = https://github.com/mozilla-services/server-syncstorage.git; rev = "refs/tags/${version}"; - sha256 = "yrcsv1sdl5w308y1cc939ppq7pi2490s54zfcbs481cvsyr1lg22"; + sha256 = "1byq2k2f36f1jli9599ygfm2qsb4adl9140sxjpgfjbznb74q90q"; }; propagatedBuildInputs = with self; [ - pyramid sqlalchemy9 simplejson mozsvc cornice pyramidhawkauth pymysql - mysqlsa umemcache wsgiproxy2 requests pybrowserid + pyramid sqlalchemy9 simplejson mozsvc cornice pyramid_hawkauth pymysql + pymysqlsa umemcache wsgiproxy2 requests pybrowserid ]; doCheck = false; # lazy packager From c74c6360e07f997843db2b6377bea11e17c7bfa4 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 11 Dec 2014 23:40:34 +0100 Subject: [PATCH 018/185] Fix konfig, in order to propagate its dependencies on configparser and argparse. --- 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 3b0707aab13..568d0c88a9d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4869,7 +4869,7 @@ let sha256 = "1v9pjb9idapjlc75p6h06kx7bi8zxhfgj93yxq1bn337kmyk1xdf"; }; - buildInputs = with self; [ configparser argparse ]; + propagatedBuildInputs = with self; [ configparser argparse ]; meta = with stdenv.lib; { description = "Yet Another Config Parser"; From 0a0678cf5a7b3f6ea9b4f86fd875e6f2f9060f8b Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 11 Dec 2014 23:41:36 +0100 Subject: [PATCH 019/185] Fix mozsvc, such that we can split public/private parts of the configuration of the syncserver. --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 568d0c88a9d..06af327add6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5461,6 +5461,11 @@ let sha256 = "0k1d7v8aa4xd3f9h8m5crl647136ba15i9nzdrpxg5aqmv2n0i0p"; }; + patches = singleton (pkgs.fetchurl { + url = https://github.com/nbp/mozservices/commit/f86c0b0b870cd8f80ce90accde9e16ecb2e88863.diff; + sha256 = "1lnghx821f6dqp3pa382ka07cncdz7hq0mkrh44d0q3grvrlrp9n"; + }); + doCheck = false; # lazy packager propagatedBuildInputs = with self; [ pyramid simplejson konfig ]; From 01886aef225a5fb03dc1ee08fb606899d87f6dcf Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 11 Dec 2014 23:48:15 +0100 Subject: [PATCH 020/185] Add Firefox Sync server module. --- nixos/modules/module-list.nix | 1 + .../networking/firefox/sync-server.nix | 135 ++++++++++++++++++ 2 files changed, 136 insertions(+) create mode 100644 nixos/modules/services/networking/firefox/sync-server.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index ecf68136f97..cbf42d44df6 100755 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -232,6 +232,7 @@ ./services/networking/dnscrypt-proxy.nix ./services/networking/dnsmasq.nix ./services/networking/ejabberd.nix + ./services/networking/firefox/sync-server.nix ./services/networking/firewall.nix ./services/networking/flashpolicyd.nix ./services/networking/freenet.nix diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix new file mode 100644 index 00000000000..db249fe5a72 --- /dev/null +++ b/nixos/modules/services/networking/firefox/sync-server.nix @@ -0,0 +1,135 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.firefox.syncserver; + syncServerSecretFile = "/etc/firefox/syncserver-secret.ini"; + syncServerIni = pkgs.writeText "syncserver.ini" '' + [DEFAULT] + overrides = ${cfg.privateConfig} ${syncServerSecretFile} + + [server:main] + use = egg:Paste#http + host = ${cfg.listen.address} + port = ${toString cfg.listen.port} + + [app:main] + use = egg:syncserver + + [syncserver] + public_url = ${cfg.publicUrl} + ${optionalString (cfg.sqlUri != "") "sqluri = ${cfg.sqlUri}"} + allow_new_users = ${if cfg.allowNewUsers then "true" else "false"} + + [browserid] + backend = tokenserver.verifiers.LocalVerifier + audiences = ${removeSuffix "/" cfg.publicUrl} + ''; +in + +{ + options = { + services.firefox.syncserver = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Whether to enable a Firefox Sync Server, this give the opportunity to + Firefox users to store all synchronized data on their own server. To use this + server, Firefox users should visit the , and + replicate the following change + + + services.sync.tokenServerURI: http://localhost:5000/token/1.0/sync/1.5 + + where corresponds to the + public url of the server. + ''; + }; + + listen.address = mkOption { + type = types.str; + default = "0.0.0.0"; + description = '' + Address on which the sync server listen to. + ''; + }; + + listen.port = mkOption { + type = types.int; + default = 5000; + description = '' + Port on which the sync server listen to. + ''; + }; + + publicUrl = mkOption { + type = types.str; + default = "http://localhost:5000/"; + example = "http://sync.example.com/"; + description = '' + Public URL with which firefox users can use to access the sync server. + ''; + }; + + allowNewUsers = mkOption { + type = types.bool; + default = true; + example = false; + description = '' + Whether to allow new-user signups on the server. Only request by + existing accounts will be honored. + ''; + }; + + sqlUri = mkOption { + type = types.str; + default = "sqlite:////var/db/firefox-sync-server.db"; + example = "postgresql://scott:tiger@localhost/test"; + description = '' + The location of the database. This URL is composed of + , + where is a database name such as + , , , + etc., and the name of a DBAPI, such as + , , , + etc. + ''; + }; + + privateConfig = mkOption { + type = types.separatedString " "; + default = ""; + description = '' + If defined, this file would be used to set all fields which were omitted in the + generated ini files used for configuring the syncserver. This file is useful + for storing secrets, such as the syncserver.secret or the syncserver.sqluri + ''; + }; + }; + }; + + config = { + + systemd.services.syncserver = { + after = [ "network.target" ]; + description = "Firefox Sync Server"; + wantedBy = [ "multi-user.target" ]; + path = [ pkgs.pythonPackages.pasteScript pkgs.coreutils ]; + environment.PYTHONPATH = "${pkgs.pythonPackages.syncserver}/lib/${pkgs.pythonPackages.python.libPrefix}/site-packages"; + preStart = '' + if ! test -e ${syncServerSecretFile}; then + mkdir -p $(dirname ${syncServerSecretFile}) + echo > ${syncServerSecretFile} '[syncserver]' + echo >> ${syncServerSecretFile} "secret = $(head -c 20 /dev/urandom | sha1sum | tr -d ' -')" + fi + ''; + serviceConfig.ExecStart = "paster serve ${syncServerIni}"; + serviceConfig.User = "deluge"; + serviceConfig.Group = "deluge"; + }; + + }; +} From b4ab60cd5e738889334fd2a2880ad6c5a120c585 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 12 Dec 2014 21:52:14 +0100 Subject: [PATCH 021/185] configparser, konfig, umemcache and pybrowserid: Disable python 3 support. --- pkgs/top-level/python-packages.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b51254c1a7a..65cb8782447 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1595,7 +1595,8 @@ let }; }; - configparser = buildPythonPackage rec { + # Backported version of the ConfigParser library of Python 3.3 + configparser = if isPy3k then null else buildPythonPackage rec { name = "configparser-${version}"; version = "3.3.0r2"; @@ -4988,6 +4989,11 @@ let konfig = buildPythonPackage rec { name = "konfig-${version}"; version = "0.9"; + + # konfig unconditionaly depend on configparser, even if it is part of + # the standard library in python 3.2 or above. + disabled = isPy3k; + src = pkgs.fetchgit { url = https://github.com/mozilla-services/konfig.git; rev = "refs/tags/${version}"; @@ -10154,6 +10160,7 @@ let umemcache = buildPythonPackage rec { name = "umemcache-${version}"; version = "1.6.3"; + disabled = isPy3k; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/umemcache/${name}.zip"; @@ -11449,6 +11456,8 @@ let pybrowserid = buildPythonPackage rec { name = "PyBrowserID-${version}"; version = "0.9.2"; + disabled = isPy3k; # Errors in the test suite. + src = pkgs.fetchgit { url = https://github.com/mozilla/PyBrowserID.git; rev = "refs/tags/${version}"; From 15327098547ccb9a134d917cb1ea524646c9625a Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 12 Dec 2014 21:53:07 +0100 Subject: [PATCH 022/185] paste-deploy: Remove unnecessary propagated build inputs. --- pkgs/top-level/python-packages.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 65cb8782447..3758c04f835 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6510,7 +6510,6 @@ let }; buildInputs = with self; [ nose ]; - propagatedBuildInputs = with self; [ argparse configparser ]; meta = { description = "Load, configure, and compose WSGI applications and servers"; From a0154145d52c27416c65d7c2289f3fae61182181 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 12 Dec 2014 22:13:03 +0100 Subject: [PATCH 023/185] Firefox Sync Server: Fix copy&paste issue. --- nixos/modules/services/networking/firefox/sync-server.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix index db249fe5a72..0d2306c6994 100644 --- a/nixos/modules/services/networking/firefox/sync-server.nix +++ b/nixos/modules/services/networking/firefox/sync-server.nix @@ -127,8 +127,6 @@ in fi ''; serviceConfig.ExecStart = "paster serve ${syncServerIni}"; - serviceConfig.User = "deluge"; - serviceConfig.Group = "deluge"; }; }; From 1a1fc17957516956949f019292b994aebfda6779 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 12 Dec 2014 22:14:21 +0100 Subject: [PATCH 024/185] Firefox Sync Server: Create the private config file as non-world readable. --- .../networking/firefox/sync-server.nix | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix index 0d2306c6994..b357eac98b9 100644 --- a/nixos/modules/services/networking/firefox/sync-server.nix +++ b/nixos/modules/services/networking/firefox/sync-server.nix @@ -4,10 +4,9 @@ with lib; let cfg = config.services.firefox.syncserver; - syncServerSecretFile = "/etc/firefox/syncserver-secret.ini"; syncServerIni = pkgs.writeText "syncserver.ini" '' [DEFAULT] - overrides = ${cfg.privateConfig} ${syncServerSecretFile} + overrides = ${cfg.privateConfig} [server:main] use = egg:Paste#http @@ -100,12 +99,14 @@ in }; privateConfig = mkOption { - type = types.separatedString " "; - default = ""; + type = types.str; + default = "/etc/firefox/syncserver-secret.ini"; description = '' If defined, this file would be used to set all fields which were omitted in the generated ini files used for configuring the syncserver. This file is useful - for storing secrets, such as the syncserver.secret or the syncserver.sqluri + for storing secrets, such as the syncserver.secret or the syncserver.sqluri. + + If this file does not exists, it would be created with a unique secret. ''; }; }; @@ -120,10 +121,11 @@ in path = [ pkgs.pythonPackages.pasteScript pkgs.coreutils ]; environment.PYTHONPATH = "${pkgs.pythonPackages.syncserver}/lib/${pkgs.pythonPackages.python.libPrefix}/site-packages"; preStart = '' - if ! test -e ${syncServerSecretFile}; then - mkdir -p $(dirname ${syncServerSecretFile}) - echo > ${syncServerSecretFile} '[syncserver]' - echo >> ${syncServerSecretFile} "secret = $(head -c 20 /dev/urandom | sha1sum | tr -d ' -')" + if ! test -e ${cfg.privateConfig}; then + umask u=rwx,g=x,o=x + mkdir -p $(dirname ${cfg.privateConfig}) + echo > ${cfg.privateConfig} '[syncserver]' + echo >> ${cfg.privateConfig} "secret = $(head -c 20 /dev/urandom | sha1sum | tr -d ' -')" fi ''; serviceConfig.ExecStart = "paster serve ${syncServerIni}"; From 28f4ef2a5fda5d65e3567a0ab48ff17656cf9eac Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sat, 13 Dec 2014 22:26:13 +0100 Subject: [PATCH 025/185] Disable configparser backport on pypy. --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3758c04f835..294fe3f9e13 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1600,6 +1600,10 @@ let name = "configparser-${version}"; version = "3.3.0r2"; + # running install_egg_info + # error: [Errno 9] Bad file descriptor: '' + disabled = isPyPy; + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/configparser/${name}.tar.gz"; sha256 = "6a2318590dfc4013fc5bf53c2bec14a8cb455a232295eb282a13f94786c4b0b2"; From 24abe2b2b3f301e3a0185138b87e7a7052828248 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Bernardo=20Galkin?= Date: Sat, 20 Dec 2014 02:51:24 -0800 Subject: [PATCH 026/185] Bumblebee config to enable multiple monitors Added configurations to `bumblebee` package to easy multiple monitors on Optimus machines. The behaviour of the default `bumblebee` package hasn't change, so this change is backwards compatible. Users who want to connect a monitor to their discrete card should use the package `bumblebee_display` instead. Also added new configuration option to nixos bumblebee module: ``` hardware.bumblebee.connectDisplay = true ``` will enable the new configuration, but the default is still false. --- nixos/modules/hardware/video/bumblebee.nix | 23 +++++++++++++++++++--- pkgs/tools/X11/bumblebee/default.nix | 21 ++++++++++++++++++-- pkgs/tools/X11/bumblebee/nvidia-conf.patch | 11 +++++++++++ pkgs/tools/X11/bumblebee/xopts.patch | 4 ++-- pkgs/top-level/all-packages.nix | 5 +++++ 5 files changed, 57 insertions(+), 7 deletions(-) create mode 100644 pkgs/tools/X11/bumblebee/nvidia-conf.patch diff --git a/nixos/modules/hardware/video/bumblebee.nix b/nixos/modules/hardware/video/bumblebee.nix index 7b48d9d1fcf..e20ebc3041e 100644 --- a/nixos/modules/hardware/video/bumblebee.nix +++ b/nixos/modules/hardware/video/bumblebee.nix @@ -1,7 +1,13 @@ { config, lib, pkgs, ... }: -let kernel = config.boot.kernelPackages; in with lib; +let + kernel = config.boot.kernelPackages; + bumblebee = if config.hardware.bumblebee.connectDisplay + then pkgs.bumblebee_display + else pkgs.bumblebee; + +in { @@ -23,6 +29,17 @@ with lib; type = types.uniq types.str; description = ''Group for bumblebee socket''; }; + hardware.bumblebee.connectDisplay = mkOption { + default = false; + type = types.bool; + description = '' + Set to true if you intend to connect your discrete card to a + monitor. This option will set up your Nvidia card for EDID + discovery and to turn on the monitor signal. + + Only nvidia driver is supported so far. + ''; + }; }; config = mkIf config.hardware.bumblebee.enable { @@ -30,13 +47,13 @@ with lib; boot.kernelModules = [ "bbswitch" ]; boot.extraModulePackages = [ kernel.bbswitch kernel.nvidia_x11 ]; - environment.systemPackages = [ pkgs.bumblebee pkgs.primus ]; + environment.systemPackages = [ bumblebee pkgs.primus ]; systemd.services.bumblebeed = { description = "Bumblebee Hybrid Graphics Switcher"; wantedBy = [ "display-manager.service" ]; script = "bumblebeed --use-syslog -g ${config.hardware.bumblebee.group}"; - path = [ kernel.bbswitch pkgs.bumblebee ]; + path = [ kernel.bbswitch bumblebee ]; serviceConfig = { Restart = "always"; RestartSec = 60; diff --git a/pkgs/tools/X11/bumblebee/default.nix b/pkgs/tools/X11/bumblebee/default.nix index 1d5c2a129c0..d314c7857ea 100644 --- a/pkgs/tools/X11/bumblebee/default.nix +++ b/pkgs/tools/X11/bumblebee/default.nix @@ -31,6 +31,8 @@ # TODO: Confusing. Perhaps use "SubArch" instead of i686? , nvidia_x11_i686 ? null , virtualgl_i686 ? null +, useDisplayDevice ? false +, extraDeviceOptions ? "" }: with stdenv.lib; let @@ -77,15 +79,26 @@ let allEnvs = [hostEnv] ++ optional (i686Env != null) i686Env; ldPathString = makeLibraryPath allEnvs; + # By default we don't want to use a display device + deviceOptions = if useDisplayDevice + then "" + else '' + + # Disable display device + Option "UseEDID" "false" + Option "UseDisplayDevice" "none" + '' + + extraDeviceOptions; + in stdenv.mkDerivation { - inherit name; + inherit name deviceOptions; src = fetchurl { url = "http://bumblebee-project.org/${name}.tar.gz"; sha256 = "03p3gvx99lwlavznrpg9l7jnl1yfg2adcj8jcjj0gxp20wxp060h"; }; - patches = [ ./xopts.patch ]; + patches = [ ./xopts.patch ./nvidia-conf.patch]; preConfigure = '' # Substitute the path to the actual modinfo program in module.c. @@ -98,6 +111,10 @@ in stdenv.mkDerivation { # Don't use a special group, just reuse wheel. substituteInPlace configure \ --replace 'CONF_GID="bumblebee"' 'CONF_GID="wheel"' + + # Apply configuration options + substituteInPlace conf/xorg.conf.nvidia \ + --subst-var deviceOptions ''; # Build-time dependencies of bumblebeed and optirun. diff --git a/pkgs/tools/X11/bumblebee/nvidia-conf.patch b/pkgs/tools/X11/bumblebee/nvidia-conf.patch new file mode 100644 index 00000000000..f5535c417cf --- /dev/null +++ b/pkgs/tools/X11/bumblebee/nvidia-conf.patch @@ -0,0 +1,11 @@ +--- bumblebee-3.2.1/conf/xorg.conf.nvidia ++++ bumblebee-3.2.1/conf/xorg.conf.nvidia +@@ -29,6 +29,5 @@ Section "Device" + Option "ProbeAllGpus" "false" + + Option "NoLogo" "true" +- Option "UseEDID" "false" +- Option "UseDisplayDevice" "none" ++@deviceOptions@ + EndSection + diff --git a/pkgs/tools/X11/bumblebee/xopts.patch b/pkgs/tools/X11/bumblebee/xopts.patch index f24b2a20562..6fd3a6a0483 100644 --- a/pkgs/tools/X11/bumblebee/xopts.patch +++ b/pkgs/tools/X11/bumblebee/xopts.patch @@ -1,5 +1,5 @@ ---- bumblebee-3.0/src/bbsecondary.c.orig 2012-02-05 00:03:06.003439638 +0100 -+++ bumblebee-3.0/src/bbsecondary.c 2012-02-05 00:46:38.017382619 +0100 +--- bumblebee-3.2.1/src/bbsecondary.c 2012-02-05 00:03:06.003439638 +0100 ++++ bumblebee-3.2.1/src/bbsecondary.c 2012-02-05 00:46:38.017382619 +0100 @@ -149,6 +149,8 @@ "-sharevts", "-nolisten", "tcp", diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index aef3dc31166..89a078c04df 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11156,6 +11156,11 @@ let else null; }; + # use if you intend to connect the nvidia card to a monitor + bumblebee_display = bumblebee.override { + useDisplayDevice = true; + }; + vkeybd = callPackage ../applications/audio/vkeybd { inherit (xlibs) libX11; }; From db24ed98d8fb41107484ddf08e2e719ad95a370b Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Mon, 5 Jan 2015 21:14:43 -0200 Subject: [PATCH 027/185] Xiphos: upgrade to 4.0.0 --- pkgs/applications/misc/xiphos/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/xiphos/default.nix b/pkgs/applications/misc/xiphos/default.nix index d2739dbec50..78d49939677 100644 --- a/pkgs/applications/misc/xiphos/default.nix +++ b/pkgs/applications/misc/xiphos/default.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { name = "xiphos-${version}"; - version = "3.2.2"; + version = "4.0.0"; src = fetchurl { url = "http://downloads.sourceforge.net/project/gnomesword/Xiphos/${version}/${name}.tar.gz"; - sha256 = "1imd3v8knb5y3kddlfzp67p927zpfy0adjri89n7vcnipb9fy9i3"; + sha256 = "0rk9xhnaqm17af9ppjf2yqpy9p8s0z7m5ax586b7p16lylcqjh68"; }; buildInputs = [ pkgconfig python intltool docbook2x docbook_xml_dtd_412 libxslt From 8bde40359a2504dd6bc02cccebe3099ba305c22b Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Fri, 2 Jan 2015 19:10:16 -0500 Subject: [PATCH 028/185] gnubg: initial package at 1.04.000 --- pkgs/games/gnubg/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/games/gnubg/default.nix diff --git a/pkgs/games/gnubg/default.nix b/pkgs/games/gnubg/default.nix new file mode 100644 index 00000000000..00ae4e28860 --- /dev/null +++ b/pkgs/games/gnubg/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, glib, python, gtk2 }: + +let version = "1.04.000"; in +stdenv.mkDerivation { + name = "gnubg-"+version; + + src = fetchurl { + url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz"; + sha256 = "0gsfl6qbj529d1jg3bkyj9m7bvb566wd7pq5fslgg5yn6c6rbjk6"; + }; + + buildInputs = [ pkgconfig python glib gtk2 ]; + + configureFlags = [ "--with-gtk" "--with--board3d" ]; + + meta = with stdenv.lib; + { description = "World class backgammon application."; + homepage = http://www.gnubg.org/; + license = licenses.gpl3; + maintainers = [ maintainers.emery ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c7813320b14..72179852211 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11567,6 +11567,8 @@ let gltron = callPackage ../games/gltron { }; + gnubg = callPackage ../games/gnubg { }; + gnuchess = callPackage ../games/gnuchess { }; gnugo = callPackage ../games/gnugo { }; From d792ee95985c657a678b447d77b380a95a3ce4da Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 30 Dec 2014 05:20:17 +0100 Subject: [PATCH 029/185] perl: Glib 1.306 -> 1.307, Gtk2 1.2923 -> 1.2494 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 6e70a76f470..16a326f144c 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -4010,10 +4010,10 @@ let self = _self // overrides; _self = with self; { }; Glib = buildPerlPackage rec { - name = "Glib-1.306"; + name = "Glib-1.307"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "0j4kf707vy9vhpifwl6icc7rqyf75z2lhc626af7ag8srqva81ic"; + sha256 = "1km4261a5kaazz77qplpqj2yv91p0bqcjjvd6xdvdgdd4rib7ngr"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.glib ]; meta = { @@ -4090,10 +4090,10 @@ let self = _self // overrides; _self = with self; { }; Gtk2 = buildPerlPackage rec { - name = "Gtk2-1.2493"; + name = "Gtk2-1.2494"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "1zhrvwl584yrf0b1rrkli0k2ly221xhdyix8ykmm9zs674gain0z"; + sha256 = "1kkm1z1xqnrfdfjric5y3935dbi9qnhcd6c1z58g4m0y95mwpv9v"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Pango pkgs.gtk2 ]; meta = { From 369f04ac96cd13ea489cb8389b676bfd99fa154f Mon Sep 17 00:00:00 2001 From: Maurizio De Santis Date: Sat, 10 Jan 2015 19:25:12 +0100 Subject: [PATCH 030/185] ruby: update RVM patchsets --- pkgs/development/interpreters/ruby/rvm-patchsets.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/ruby/rvm-patchsets.nix b/pkgs/development/interpreters/ruby/rvm-patchsets.nix index da1328fd948..7685bafddc9 100644 --- a/pkgs/development/interpreters/ruby/rvm-patchsets.nix +++ b/pkgs/development/interpreters/ruby/rvm-patchsets.nix @@ -3,6 +3,6 @@ fetchFromGitHub { owner = "skaes"; repo = "rvm-patchsets"; - rev = "fb6b427f71e756900184d1b6eaeb10245ec8405a"; - sha256 = "10k7p3nymj7y5a0az8v1aks2w5w190zfqv9kiiafcx0a3qfswnck"; + rev = "da2e5b4d81e18154befef1448e037b844cb5a326"; + sha256 = "0fslnkpirgsm7gjd6g194vd24i3y7kl0ihbq5gr94cgvdzzjgad0"; } From 5bcd29466e27621c0b33c50665c9d712ebc54b78 Mon Sep 17 00:00:00 2001 From: Maurizio De Santis Date: Sat, 10 Jan 2015 19:25:37 +0100 Subject: [PATCH 031/185] ruby: add 2.2.0 package --- .../interpreters/ruby/ruby-2.2.0.nix | 105 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 107 insertions(+) create mode 100644 pkgs/development/interpreters/ruby/ruby-2.2.0.nix diff --git a/pkgs/development/interpreters/ruby/ruby-2.2.0.nix b/pkgs/development/interpreters/ruby/ruby-2.2.0.nix new file mode 100644 index 00000000000..908d8a566b6 --- /dev/null +++ b/pkgs/development/interpreters/ruby/ruby-2.2.0.nix @@ -0,0 +1,105 @@ +{ stdenv, fetchurl, fetchgit, fetchFromGitHub +, zlib, zlibSupport ? true +, openssl, opensslSupport ? true +, gdbm, gdbmSupport ? true +, ncurses, readline, cursesSupport ? false +, groff, docSupport ? false +, libyaml, yamlSupport ? true +, libffi, fiddleSupport ? true +, ruby_2_2_0, autoreconfHook, bison, useRailsExpress ? true +}: + +let + op = stdenv.lib.optional; + ops = stdenv.lib.optionals; + patchSet = import ./rvm-patchsets.nix { inherit fetchFromGitHub; }; + config = import ./config.nix fetchgit; + baseruby = ruby_2_2_0.override { useRailsExpress = false; }; +in + +stdenv.mkDerivation rec { + version = with passthru; "${majorVersion}.${minorVersion}.${teenyVersion}-p${patchLevel}"; + + name = "ruby-${version}"; + + src = if useRailsExpress then fetchFromGitHub { + owner = "ruby"; + repo = "ruby"; + rev = "v2_2_0"; + sha256 = "1w7rr2nq1bbw6aiagddzlrr3rl95kk33x4pv6570nm072g55ybpi"; + } else fetchurl { + url = "http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.0.tar.gz"; + sha256 = "1z2092fbpc2qkv1j3yj7jdz7qwvqpxqpmcnkphpjcpgvmfaf6wbn"; + }; + + # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds. + NROFF = "${groff}/bin/nroff"; + + buildInputs = ops useRailsExpress [ autoreconfHook bison ] + ++ (op fiddleSupport libffi) + ++ (ops cursesSupport [ ncurses readline ]) + ++ (op docSupport groff) + ++ (op zlibSupport zlib) + ++ (op opensslSupport openssl) + ++ (op gdbmSupport gdbm) + ++ (op yamlSupport libyaml) + # Looks like ruby fails to build on darwin without readline even if curses + # support is not enabled, so add readline to the build inputs if curses + # support is disabled (if it's enabled, we already have it) and we're + # running on darwin + ++ (op (!cursesSupport && stdenv.isDarwin) readline); + + enableParallelBuilding = true; + + patches = ops useRailsExpress [ + "${patchSet}/patches/ruby/2.2.0/railsexpress/01-zero-broken-tests.patch" + "${patchSet}/patches/ruby/2.2.0/railsexpress/02-improve-gc-stats.patch" + "${patchSet}/patches/ruby/2.2.0/railsexpress/03-display-more-detailed-stack-trace.patch" + "${patchSet}/patches/ruby/2.2.0/railsexpress/04-backport-401c8bb.patch" + "${patchSet}/patches/ruby/2.2.0/railsexpress/05-fix-packed-bitfield-compat-warning-for-older-gccs.patch" + ]; + + # Ruby >= 2.1.0 tries to download config.{guess,sub} + postPatch = '' + rm tool/config_files.rb + cp ${config}/config.guess tool/ + cp ${config}/config.sub tool/ + ''; + + configureFlags = ["--enable-shared" ] + ++ op useRailsExpress "--with-baseruby=${baseruby}/bin/ruby" + # on darwin, we have /usr/include/tk.h -- so the configure script detects + # that tk is installed + ++ ( if stdenv.isDarwin then [ "--with-out-ext=tk " ] else [ ]); + + installFlags = stdenv.lib.optionalString docSupport "install-doc"; + # Bundler tries to create this directory + postInstall = '' + # Bundler tries to create this directory + mkdir -pv $out/${passthru.gemPath} + mkdir -p $out/nix-support + cat > $out/nix-support/setup-hook < Date: Sat, 10 Jan 2015 19:51:54 -0500 Subject: [PATCH 032/185] gnuplot: bump to 5.0.0, allow choosing qt version default to qt5 --- pkgs/tools/graphics/gnuplot/default.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix index b1d02149d37..f8dd35576ff 100644 --- a/pkgs/tools/graphics/gnuplot/default.nix +++ b/pkgs/tools/graphics/gnuplot/default.nix @@ -14,18 +14,18 @@ , fontconfig ? null , gnused ? null , coreutils ? null -, withQt ? false, qt4 }: +, withQt ? false, qt }: assert libX11 != null -> (fontconfig != null && gnused != null && coreutils != null); let withX = libX11 != null && !aquaterm && !stdenv.isDarwin; in stdenv.mkDerivation rec { - name = "gnuplot-4.6.6"; + name = "gnuplot-5.0.0"; src = fetchurl { url = "mirror://sourceforge/gnuplot/${name}.tar.gz"; - sha256 = "0x022d7psl9g6q389x5rjlfsvfciz88yrgxg4lig4ichs1pmj68z"; + sha256 = "1bqg6zbsin9w9m53rbf6adzv0j2gs66z2p5pkd060jlipk2lnza1"; }; buildInputs = @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { ++ lib.optional withTeXLive texLive ++ lib.optional withLua lua ++ lib.optionals withX [ libX11 libXpm libXt libXaw ] - ++ lib.optional withQt [ qt4 ] + ++ lib.optional withQt [ qt ] # compiling with wxGTK causes a malloc (double free) error on darwin ++ lib.optional (withWxGTK && !stdenv.isDarwin) wxGTK; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 66dba26f70c..f39d3f20605 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1338,7 +1338,7 @@ let gnupg = gnupg20; - gnuplot = callPackage ../tools/graphics/gnuplot { }; + gnuplot = callPackage ../tools/graphics/gnuplot { qt = qt5; }; gnuplot_qt = gnuplot.override { withQt = true; }; From 6cba6dc61bb0530ad03419364c19b299c6c9c6d4 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 12 Jan 2015 03:45:48 -0500 Subject: [PATCH 033/185] command-not-found: Add ZSH Support --- nixos/modules/module-list.nix | 2 +- .../command-not-found.nix | 20 +++++++++++++++++++ .../command-not-found.pl | 0 3 files changed, 21 insertions(+), 1 deletion(-) rename nixos/modules/programs/{bash => command-not-found}/command-not-found.nix (68%) rename nixos/modules/programs/{bash => command-not-found}/command-not-found.pl (100%) diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 844fae536e9..c74ba7557e3 100755 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -54,8 +54,8 @@ ./misc/version.nix ./programs/atop.nix ./programs/bash/bash.nix - ./programs/bash/command-not-found.nix ./programs/blcr.nix + ./programs/command-not-found/command-not-found.nix ./programs/dconf.nix ./programs/environment.nix ./programs/info.nix diff --git a/nixos/modules/programs/bash/command-not-found.nix b/nixos/modules/programs/command-not-found/command-not-found.nix similarity index 68% rename from nixos/modules/programs/bash/command-not-found.nix rename to nixos/modules/programs/command-not-found/command-not-found.nix index 8c86d48b080..bead2dcdcf9 100644 --- a/nixos/modules/programs/bash/command-not-found.nix +++ b/nixos/modules/programs/command-not-found/command-not-found.nix @@ -44,6 +44,26 @@ in } ''; + programs.zsh.interactiveShellInit = + '' + # This function is called whenever a command is not found. + command_not_found_handler() { + local p=/run/current-system/sw/bin/command-not-found + if [ -x $p -a -f /nix/var/nix/profiles/per-user/root/channels/nixos/programs.sqlite ]; then + # Run the helper program. + $p "$1" + + # Retry the command if we just installed it. + if [ $? = 126 ]; then + "$@" + fi + else + # Indicate than there was an error so ZSH falls back to its default handler + return 127 + fi + } + ''; + environment.systemPackages = [ commandNotFound ]; # TODO: tab completion for uninstalled commands! :-) diff --git a/nixos/modules/programs/bash/command-not-found.pl b/nixos/modules/programs/command-not-found/command-not-found.pl similarity index 100% rename from nixos/modules/programs/bash/command-not-found.pl rename to nixos/modules/programs/command-not-found/command-not-found.pl From 5d36b300bdc8258be1ba15d7e90809fd73c50511 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 12 Jan 2015 19:22:23 +0100 Subject: [PATCH 034/185] Add gdrivefs (Google Drive FUSE client) & dependecies --- pkgs/top-level/python-packages.nix | 92 +++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 357aa8d7383..da1e7c30e2b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4381,6 +4381,34 @@ let }; }); + fusepy = buildPythonPackage rec { + name = "fusepy-2.0.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/fusepy/${name}.tar.gz"; + sha256 = "1z0va3z1hzjw167skl21k9dsklbmr46k66j80qadibjc8vajjnda"; + }; + + propagatedBuildInputs = [ pkgs.fuse ]; + + patchPhase = '' + substituteInPlace fuse.py --replace \ + "find_library('fuse')" "'${pkgs.fuse}/lib/libfuse.so'" + ''; + + meta = with stdenv.lib; { + description = "Simple ctypes bindings for FUSE"; + longDescription = '' + Python module that provides a simple interface to FUSE and MacFUSE. + It's just one file and is implemented using ctypes. + ''; + homepage = http://github.com/terencehonles/fusepy; + license = with licenses; isc; + platforms = with platforms; linux; + maintainers = with maintainers; [ nckx ]; + }; + }; + future = buildPythonPackage rec { version = "v0.14.3"; name = "future-${version}"; @@ -4444,6 +4472,42 @@ let }; }; + gdrivefs = buildPythonPackage rec { + version = "0.14.2"; + name = "gdrivefs-${version}"; + disabled = !isPy27; + + src = pkgs.fetchurl { + url = "https://github.com/dsoprea/GDriveFS/archive/${version}.tar.gz"; + sha256 = "0cfx9y1kqikrn3ngyl93k9f939hf1h7adqv0lpfri8m8glszhchz"; + }; + + buildInputs = with self; [ gipc greenlet httplib2 six ]; + propagatedBuildInputs = with self; [ dateutil fusepy google_api_python_client ]; + + patchPhase = '' + substituteInPlace gdrivefs/resources/requirements.txt \ + --replace "==" ">=" + ''; + + meta = with stdenv.lib; { + description = "Mount Google Drive as a local file system"; + longDescription = '' + GDriveFS is a FUSE wrapper for Google Drive developed. Design goals: + - Thread for monitoring changes via "changes" functionality of API. + - Complete stat() implementation. + - Seamlessly work around duplicate-file allowances in Google Drive. + - Seamlessly manage file-type versatility in Google Drive + (Google Doc files do not have a particular format). + - Allow for the same file at multiple paths. + ''; + homepage = https://github.com/dsoprea/GDriveFS; + license = with licenses; gpl2; + platforms = with platforms; linux; + maintainers = with maintainers; [ nckx ]; + }; + }; + genshi = buildPythonPackage { name = "genshi-0.7"; @@ -4567,6 +4631,32 @@ let }; }; + gipc = buildPythonPackage rec { + name = "gipc-0.5.0"; + disabled = !isPy26 && !isPy27; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/g/gipc/${name}.zip"; + sha256 = "08c35xzv7nr12d9xwlywlbyzzz2igy0yy6y52q2nrkmh5d4slbpc"; + }; + + propagatedBuildInputs = with self; [ gevent ]; + + meta = with stdenv.lib; { + description = "gevent-cooperative child processes and IPC"; + longDescription = '' + Usage of Python's multiprocessing package in a gevent-powered + application may raise problems and most likely breaks the application + in various subtle ways. gipc (pronunciation "gipsy") is developed with + the motivation to solve many of these issues transparently. With gipc, + multiprocessing. Process-based child processes can safely be created + anywhere within your gevent-powered application. + ''; + homepage = http://gehrcke.de/gipc; + license = with licenses; mit; + maintainers = with maintainers; [ nckx ]; + }; + }; glance = buildPythonPackage rec { name = "glance-0.1.7"; @@ -4662,7 +4752,7 @@ let }; }; - google_apputils = buildPythonPackage rec { + google_apputils = buildPythonPackage rec { name = "google-apputils-0.4.0"; disabled = isPy3k; From 5ff81fd0ae8632a64d336ad7ec2c8ca9dd9bf0e8 Mon Sep 17 00:00:00 2001 From: Ben Ford Date: Wed, 31 Dec 2014 20:30:06 +0000 Subject: [PATCH 035/185] Haskell: Bump 'mvc' to 1.0.3 --- pkgs/development/libraries/haskell/mvc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/mvc/default.nix b/pkgs/development/libraries/haskell/mvc/default.nix index 5373062a6da..0068beb9bc3 100644 --- a/pkgs/development/libraries/haskell/mvc/default.nix +++ b/pkgs/development/libraries/haskell/mvc/default.nix @@ -6,8 +6,8 @@ cabal.mkDerivation (self: { pname = "mvc"; - version = "1.0.2"; - sha256 = "1hah38hzy0d12b3vk7m6wfzx6hbm79zl4a9mx8bk9825c0g9qy0z"; + version = "1.0.3"; + sha256 = "1b1342qxyn2jxb3a5c9bp6ai7iwhbjxgfpbh2kjm7v75444lx78g"; buildDepends = [ async contravariant managed mmorph pipes pipesConcurrency transformers From 79e901e3e1d4d7c0af0f278ce3f3f74a9bd28539 Mon Sep 17 00:00:00 2001 From: muflax Date: Fri, 9 Jan 2015 22:23:51 +0000 Subject: [PATCH 036/185] botocore: update to 0.81.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 47160cb6be1..77489c5c72f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1088,12 +1088,12 @@ let }; botocore = buildPythonPackage rec { - version = "0.80.0"; + version = "0.81.0"; name = "botocore-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; - sha256 = "1zmsg0n21wq25v1dgnmf3hvw8yszxyryiylmp4alybcsg8nkg5fz"; + sha256 = "0mdkkk0038ng6557cw5520xy624sqgv0avjx387bc3fbgxi8bksj"; }; propagatedBuildInputs = From 6180d4498289abaf6becf5d85b3d9b6d59429578 Mon Sep 17 00:00:00 2001 From: muflax Date: Fri, 9 Jan 2015 22:27:10 +0000 Subject: [PATCH 037/185] awscli: update to 1.7.0 --- pkgs/tools/admin/awscli/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index 334e7f6ce1d..e03403284f1 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -1,13 +1,13 @@ -{ stdenv, fetchurl, pythonPackages }: +{ stdenv, fetchzip, pythonPackages }: pythonPackages.buildPythonPackage rec { name = "awscli-${version}"; - version = "1.6.10"; + version = "1.7.0"; namePrefix = ""; - src = fetchurl { + src = fetchzip { url = "https://github.com/aws/aws-cli/archive/${version}.tar.gz"; - sha256 = "1g25yqxpcjrwjiibwgjrlqdyx6hpdlcb6zr2s05w592gr9gpbwpm"; + sha256 = "14cbfvwx18vs2l8hhvamy1mbvjwa3xrm58l8yyalhrh5pqq952mi"; }; propagatedBuildInputs = [ From 4451de5c521a91a624023dfe9548330d317c38b8 Mon Sep 17 00:00:00 2001 From: muflax Date: Fri, 9 Jan 2015 22:35:59 +0000 Subject: [PATCH 038/185] awscli: fix missing groff runtime dependency --- pkgs/tools/admin/awscli/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index e03403284f1..a37aa26cf7c 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchzip, pythonPackages }: +{ stdenv, fetchzip, pythonPackages, groff }: pythonPackages.buildPythonPackage rec { name = "awscli-${version}"; @@ -18,6 +18,7 @@ pythonPackages.buildPythonPackage rec { pythonPackages.docutils pythonPackages.rsa pythonPackages.pyasn1 + groff ]; meta = { From 3e5a0dcf5568215c4392f145b180d022dffc0068 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 14 Jan 2015 11:59:34 -0500 Subject: [PATCH 039/185] plan9port: fix acme font loading --- pkgs/tools/system/plan9port/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix index 709f83d3cbe..ca248da56cf 100644 --- a/pkgs/tools/system/plan9port/default.nix +++ b/pkgs/tools/system/plan9port/default.nix @@ -7,6 +7,11 @@ stdenv.mkDerivation rec { name = "plan9port-20140306"; patches = [ ./fontsrv.patch ]; + postPatch = + '' + substituteInPlace src/cmd/acme/acme.c \ + --replace /lib/font/bit $out/plan9/font + ''; builder = ./builder.sh; From cf22b82b6cba5e95c6452fdd301af37bd21ab169 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 14 Jan 2015 23:31:47 +0100 Subject: [PATCH 040/185] Add jfbview 0.4.2: framebuffer PDF/image viewer --- pkgs/os-specific/linux/jfbview/default.nix | 44 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 46 insertions(+) create mode 100644 pkgs/os-specific/linux/jfbview/default.nix diff --git a/pkgs/os-specific/linux/jfbview/default.nix b/pkgs/os-specific/linux/jfbview/default.nix new file mode 100644 index 00000000000..b497784861f --- /dev/null +++ b/pkgs/os-specific/linux/jfbview/default.nix @@ -0,0 +1,44 @@ +{ stdenv, fetchFromGitHub, freetype, imlib2, jbig2dec, libjpeg, libX11, mujs +, mupdf, ncurses, openjpeg, openssl }: + +stdenv.mkDerivation rec { + version = "0.4.2"; # TODO: update to 0.5 or later when nixpkgs has caught up + name = "jfbview-${version}"; + + src = fetchFromGitHub { + repo = "JFBView"; + owner = "jichu4n"; + rev = version; + sha256 = "1hhlzvs0jhygd3mqpzg5zymrbay9c8ilc4wjnwg00lvxhv3rwswr"; + }; + + buildInputs = [ freetype imlib2 jbig2dec libjpeg libX11 mujs mupdf ncurses + openjpeg openssl ]; + + enableParallelBuilding = true; + + makeFlags = "jfbpdf jfbview"; + + installPhase = '' + mkdir -p $out/bin + install jfbpdf jfbview $out/bin + ''; + + meta = with stdenv.lib; { + description = "PDF and image viewer for the Linux framebuffer"; + longDescription = '' + PDF and image viewer for the Linux framebuffer. Very fast with a number + of advanced and unique features including: + - Reads PDFs (MuPDF) and common image formats (Imlib2). + - Supports arbitrary zoom (10% - 1000%) and rotation. + - Table of Contents (TOC) viewer for PDF documents. + - Multi-threaded rendering on multi-core machines. + - Asynchronous background rendering of the next page. + - Customizable multi-threaded caching. + ''; + homepage = http://seasonofcode.com/pages/jfbview.html; + license = with licenses; asl20; + platforms = with platforms; linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7fe6b9f53fe..898fc33fd70 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8345,6 +8345,8 @@ let iwlegacy = callPackage ../os-specific/linux/firmware/iwlegacy { }; + jfbview = callPackage ../os-specific/linux/jfbview { }; + jujuutils = callPackage ../os-specific/linux/jujuutils { }; kbd = callPackage ../os-specific/linux/kbd { }; From 9d2cf54c6acc462d5baebc65d1f4727eb1a39e77 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 14 Jan 2015 22:37:22 +0900 Subject: [PATCH 041/185] firefox-bin: update to version 35.0; thunderbird-bin: update to version 31.4.0 --- .../browsers/firefox-bin/sources.nix | 356 +++++++++--------- .../mailreaders/thunderbird-bin/sources.nix | 222 +++++------ 2 files changed, 288 insertions(+), 290 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index dbb93b69019..db69301044a 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,183 @@ # ruby generate_source.rb > source.nix { - version = "34.0.5"; + version = "35.0"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha1 = "2122f58004eec918c2a6f30e6d8a35fcee793f8d"; } - { locale = "ach"; arch = "linux-x86_64"; sha1 = "c304799de726df6c6c99aa4d7b2cc2ae552b92c1"; } - { locale = "af"; arch = "linux-i686"; sha1 = "1e367d63ab86049ba4f3f4121fd3a9531a9cd00f"; } - { locale = "af"; arch = "linux-x86_64"; sha1 = "1e2d3e17bed3aac9e53493f25d1e9a22a70f2710"; } - { locale = "an"; arch = "linux-i686"; sha1 = "cba77e9401b2ce16030cc46e7083c0a87c244165"; } - { locale = "an"; arch = "linux-x86_64"; sha1 = "adc7bb9a86596332c37a3cab118942c4953ec7e9"; } - { locale = "ar"; arch = "linux-i686"; sha1 = "59a85dcbc756752ff2ba07ffb12fecf10beb2bf9"; } - { locale = "ar"; arch = "linux-x86_64"; sha1 = "0c9b4c4ef3d39e3e44885359e1a85e03c47b57e3"; } - { locale = "as"; arch = "linux-i686"; sha1 = "69633541cad0a8fbf1798d4b47047adc2ac23cf3"; } - { locale = "as"; arch = "linux-x86_64"; sha1 = "b628ace403803425ab5f8e485f1107ace00e36a4"; } - { locale = "ast"; arch = "linux-i686"; sha1 = "adefb5324db5cb21ed46c2edee4b476e451d39d5"; } - { locale = "ast"; arch = "linux-x86_64"; sha1 = "734cbe739065246084cc452ca60e79248b3abada"; } - { locale = "az"; arch = "linux-i686"; sha1 = "12a7a57784563982df4fa9c7da1e0ff830afe81f"; } - { locale = "az"; arch = "linux-x86_64"; sha1 = "b8713205b616a81cea2675e477ef29db576f1ab0"; } - { locale = "be"; arch = "linux-i686"; sha1 = "cb60c04c2abab2ad59d6e19a08a425744f0135a9"; } - { locale = "be"; arch = "linux-x86_64"; sha1 = "b1bd0faf18a2f1cb7617d7c1946d586ec7db2fd1"; } - { locale = "bg"; arch = "linux-i686"; sha1 = "c260de634b14ed00a2396f09871fa726c5b24d09"; } - { locale = "bg"; arch = "linux-x86_64"; sha1 = "0a723d9d1b5abadb8250b9be5e6af8b7615231c4"; } - { locale = "bn-BD"; arch = "linux-i686"; sha1 = "292e7f58b2ca6b603949cc22965de0e568811dfb"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "c6f8afcd2e2269c5092dce8779e6068fd2e09540"; } - { locale = "bn-IN"; arch = "linux-i686"; sha1 = "3d93fbcb16a6161740cdee5c91fb2b9e6d5de77a"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "570cb383c4dcd09f90a02aa6898504295cad25e6"; } - { locale = "br"; arch = "linux-i686"; sha1 = "92fb316eae04d94320dd623d22d7b8c2a76018f6"; } - { locale = "br"; arch = "linux-x86_64"; sha1 = "a7410ed0ec67ae9746f652177664c292b727fdfc"; } - { locale = "bs"; arch = "linux-i686"; sha1 = "7f08e9920875f59b6df051acc68d1bb508615396"; } - { locale = "bs"; arch = "linux-x86_64"; sha1 = "654d90383abc26272d017b914627516b3aa33147"; } - { locale = "ca"; arch = "linux-i686"; sha1 = "645133ed542917fa32518279b375cf9dc4149dd7"; } - { locale = "ca"; arch = "linux-x86_64"; sha1 = "3eaff9df7e51971f9c1e37028430f0159ddcda9c"; } - { locale = "cs"; arch = "linux-i686"; sha1 = "4b283d1393fe06c80f412848b146295519e1957d"; } - { locale = "cs"; arch = "linux-x86_64"; sha1 = "5830a2bc46234d1adac6127fd470223ff750f5e7"; } - { locale = "csb"; arch = "linux-i686"; sha1 = "36c7bd7ccafdd5225d6f6dcde6928e4ca9aff603"; } - { locale = "csb"; arch = "linux-x86_64"; sha1 = "e5070bc33436df13e68e9ce63f091b1f60a96b5d"; } - { locale = "cy"; arch = "linux-i686"; sha1 = "7f6e35e997082406036864fb1cfc4bfd9380d156"; } - { locale = "cy"; arch = "linux-x86_64"; sha1 = "2c2ac492181ccdf10ae88c6cf1ec14a9d81c6019"; } - { locale = "da"; arch = "linux-i686"; sha1 = "cf2be147f015d40d0eecc1f00326856b06acdedd"; } - { locale = "da"; arch = "linux-x86_64"; sha1 = "01804683989d0731826d7dda67d6d7a46fb8de48"; } - { locale = "de"; arch = "linux-i686"; sha1 = "be8909ee0a9cf86869479c9173ea20f27d6e841a"; } - { locale = "de"; arch = "linux-x86_64"; sha1 = "377f54230cbe9d8dfd6242043fc8e9e43e392688"; } - { locale = "dsb"; arch = "linux-i686"; sha1 = "d50f0fca6b2036aca565a694bf70112121acc009"; } - { locale = "dsb"; arch = "linux-x86_64"; sha1 = "f532c3ac7f45682aa916f5cde32c5921a83fe9cf"; } - { locale = "el"; arch = "linux-i686"; sha1 = "2cf025815a5b9d7c1b7f353a592b700377797ff2"; } - { locale = "el"; arch = "linux-x86_64"; sha1 = "2a3c3b79072d6196cfcd00d4ffe546415e5c3c2b"; } - { locale = "en-GB"; arch = "linux-i686"; sha1 = "c638ac1b0f94d7afdf52b580108d9d9f0fbb4642"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "3a89c58a1a391268de63de380f379cf47956873c"; } - { locale = "en-US"; arch = "linux-i686"; sha1 = "9f83d949c426b798268a038c1173bad1efb8076f"; } - { locale = "en-US"; arch = "linux-x86_64"; sha1 = "e9f99d0fd1fadd62ba44606f0fe67cc829b64da3"; } - { locale = "en-ZA"; arch = "linux-i686"; sha1 = "a84f15bb02673c849721290858de31ca9697448f"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "28984e2a5d91f27247eb40db48f3055a24e77f3c"; } - { locale = "eo"; arch = "linux-i686"; sha1 = "9951a09c2132d468ff1b8c647af195ddb3ecb050"; } - { locale = "eo"; arch = "linux-x86_64"; sha1 = "ec90facdeced4b969547a8193dc9f196a13a5c0c"; } - { locale = "es-AR"; arch = "linux-i686"; sha1 = "a4df107f065e950fe2702871fb10d1d7ddc704dc"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "6cd0464702921be32a70eb5b68be45f5f6a65ff4"; } - { locale = "es-CL"; arch = "linux-i686"; sha1 = "21325f12a6ed59c471a86a8273efd76fdc9dc3bd"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha1 = "b6660728d8ac2ba89a9bb522a8fd7552c7b0fd84"; } - { locale = "es-ES"; arch = "linux-i686"; sha1 = "00b2c86d3f7f6431760e2bdf6228090b46703b21"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "d75ee1d75eb8c1d7f43fd082575cdb9d5657a719"; } - { locale = "es-MX"; arch = "linux-i686"; sha1 = "6e7d188ae57eeb457a5af93cef77a3e0fd3e4138"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha1 = "905ae336894a4d7efdfd5890c43579fcbc4f63e6"; } - { locale = "et"; arch = "linux-i686"; sha1 = "49f5495d4fe4166f46f3d2cc784b0adadad40973"; } - { locale = "et"; arch = "linux-x86_64"; sha1 = "80706f89b23dd019718888c2308596ec63c0cd6c"; } - { locale = "eu"; arch = "linux-i686"; sha1 = "2531d3d157aee3c20616fd94606668cc78ce71f5"; } - { locale = "eu"; arch = "linux-x86_64"; sha1 = "6c84eab337a4b43d604f34e7ea2b563500a52f37"; } - { locale = "fa"; arch = "linux-i686"; sha1 = "61fe70954eca24f1d7fa8908f6cfaab1b4abfad2"; } - { locale = "fa"; arch = "linux-x86_64"; sha1 = "f43b28a2b0af9ba18da35c69824370cec628d056"; } - { locale = "ff"; arch = "linux-i686"; sha1 = "2c1f4c5a2f3639328af873e59afd6c6a479f69ae"; } - { locale = "ff"; arch = "linux-x86_64"; sha1 = "8737e7d4263e66fafbf372568587173e58816f6a"; } - { locale = "fi"; arch = "linux-i686"; sha1 = "3a5b5171449e3629b0e22d08a9bf9a5bb0428a19"; } - { locale = "fi"; arch = "linux-x86_64"; sha1 = "1c901117715d8ac9d869bd79d7ffda778562b4bd"; } - { locale = "fr"; arch = "linux-i686"; sha1 = "3962280160df7f786cc26275025976df9c267174"; } - { locale = "fr"; arch = "linux-x86_64"; sha1 = "cc2f1f433b88b5f73e5c7e4683d85e5275720734"; } - { locale = "fy-NL"; arch = "linux-i686"; sha1 = "ed2b578e76aa9e56a85d3a02a3d9d6d25e07d624"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "110741b45050dbc896424a6e9cf32b9f8555d657"; } - { locale = "ga-IE"; arch = "linux-i686"; sha1 = "32fa55c45a7fbd57a7823135e87c288d463440ee"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "4d0c00130026b892cfc259d8ffb6c57338e8398d"; } - { locale = "gd"; arch = "linux-i686"; sha1 = "2fbafdbe1218eb34ec48a5d92904c0bd07b23690"; } - { locale = "gd"; arch = "linux-x86_64"; sha1 = "90810697ad8206eced9e4c4330c9242c4f3baafa"; } - { locale = "gl"; arch = "linux-i686"; sha1 = "2be76249fc1afde7ed156beb5df2d2eef50a485e"; } - { locale = "gl"; arch = "linux-x86_64"; sha1 = "d400c5692a767b14dabce47303aa195bc17af3c5"; } - { locale = "gu-IN"; arch = "linux-i686"; sha1 = "15704df5ff619aa6818521904d557eea65165206"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "c19923c4e9d5ae89bf9f1aa441b9f92d6f2fd02c"; } - { locale = "he"; arch = "linux-i686"; sha1 = "39694a4f966ad488ff77592dc490302449104df3"; } - { locale = "he"; arch = "linux-x86_64"; sha1 = "deb058d0798eadc5fe3920996421d86d446ca82e"; } - { locale = "hi-IN"; arch = "linux-i686"; sha1 = "8d28e60f8920001184dc20cc1f381f9474c9a6fd"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "3e9c18fc995fc013d3bd8bc87f8accc951599e79"; } - { locale = "hr"; arch = "linux-i686"; sha1 = "6ced9bd6614b921600cca7520c8698f265087a31"; } - { locale = "hr"; arch = "linux-x86_64"; sha1 = "8ef625b32212c387a367b8059c4d0bf62d5814da"; } - { locale = "hsb"; arch = "linux-i686"; sha1 = "49ecea386737f963db43f8c13c8d7e9b036523f3"; } - { locale = "hsb"; arch = "linux-x86_64"; sha1 = "7aba537cb8ffc7b7106dba4b378024c5a0356652"; } - { locale = "hu"; arch = "linux-i686"; sha1 = "1d406c76c8846b4ec81e62a958d662b582f75357"; } - { locale = "hu"; arch = "linux-x86_64"; sha1 = "4f582fd196573f5ab1c93dc6652a2e86617a0be7"; } - { locale = "hy-AM"; arch = "linux-i686"; sha1 = "d71daf124c8a16d4bd1d9d17df47cf10d5a5137c"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "b8f124244441a6ce474860731452760e92e575c4"; } - { locale = "id"; arch = "linux-i686"; sha1 = "8e4c0ec82aaeee6fdcf7541f6fd0bab8811ec5ae"; } - { locale = "id"; arch = "linux-x86_64"; sha1 = "3b6a5ff08f1c7f81c0da50fa7d2ed17e7d7da645"; } - { locale = "is"; arch = "linux-i686"; sha1 = "0aa678cd3b58706ac7d9a36399abcc3a8f05a894"; } - { locale = "is"; arch = "linux-x86_64"; sha1 = "e2a815e45fd6c20b37085aea0b2fe6e23848fde7"; } - { locale = "it"; arch = "linux-i686"; sha1 = "8213e082043b61872df49709732d0f209956f858"; } - { locale = "it"; arch = "linux-x86_64"; sha1 = "f411672ad5fb62ddc6cc2f9e89fea611de0d6356"; } - { locale = "ja"; arch = "linux-i686"; sha1 = "a540dd09786c0701a1ec22adbd1a19d6cbf0eb60"; } - { locale = "ja"; arch = "linux-x86_64"; sha1 = "decfa3a81bd81c0d04c62d1ff70858bcbfe505c2"; } - { locale = "kk"; arch = "linux-i686"; sha1 = "bfda7cdf57eafd6248bd5f32cf6ba84a3a05f202"; } - { locale = "kk"; arch = "linux-x86_64"; sha1 = "6a12ec04401251b9382a8b8b927f4684f7268971"; } - { locale = "km"; arch = "linux-i686"; sha1 = "06dc00c095690aa1eabd87d3dd425d3481349a09"; } - { locale = "km"; arch = "linux-x86_64"; sha1 = "901e1755688474d888ebcc524ca6912280fa5c11"; } - { locale = "kn"; arch = "linux-i686"; sha1 = "ccc86b5b46f3444f0a09b8d70ba804a9245e55f4"; } - { locale = "kn"; arch = "linux-x86_64"; sha1 = "b84394b314bd99a0bf856e0330d537f14dc624f1"; } - { locale = "ko"; arch = "linux-i686"; sha1 = "3e3d97975c5c67db99785ccca608ad170e870523"; } - { locale = "ko"; arch = "linux-x86_64"; sha1 = "1575641404e5b6239745eeae202ddbb5b8ede6d0"; } - { locale = "lij"; arch = "linux-i686"; sha1 = "4abdf303280a82ededf5cb2a8433f169a4d2959a"; } - { locale = "lij"; arch = "linux-x86_64"; sha1 = "974f1c26ee02e3eb20daf8cb7a991e83dbeb8c60"; } - { locale = "lt"; arch = "linux-i686"; sha1 = "18cdb106a6866bb1ce33c3712011602e2503799e"; } - { locale = "lt"; arch = "linux-x86_64"; sha1 = "fbf52dab19307bf8f8b7d84e32d7bcddfcb4693b"; } - { locale = "lv"; arch = "linux-i686"; sha1 = "a383ddf03d269575eee7b7fe44ae334aa8d648e9"; } - { locale = "lv"; arch = "linux-x86_64"; sha1 = "91f4b3cfbd5651e0227e2d9c40cbc1eda94e3413"; } - { locale = "mai"; arch = "linux-i686"; sha1 = "62318920bdcb6aa26fb31e2b80e861eeef0f4da6"; } - { locale = "mai"; arch = "linux-x86_64"; sha1 = "1811f361ed1b6d2864f0e7cc3950668ba8633288"; } - { locale = "mk"; arch = "linux-i686"; sha1 = "9b2f802e0543719a3fa13027b283af062278466e"; } - { locale = "mk"; arch = "linux-x86_64"; sha1 = "5b22cb28cfd1390dce8534674fcecb201f431ebd"; } - { locale = "ml"; arch = "linux-i686"; sha1 = "25862ddddd1d9f7ddcbff8780a39ab2609fdff74"; } - { locale = "ml"; arch = "linux-x86_64"; sha1 = "eb5fa58184b6bd10434c5371834eaf2ee343bb6e"; } - { locale = "mr"; arch = "linux-i686"; sha1 = "b4dc26f1d52da326046173765832c8e06eb27adb"; } - { locale = "mr"; arch = "linux-x86_64"; sha1 = "d8e5968afee45607b2874845f2782add083f3d0a"; } - { locale = "ms"; arch = "linux-i686"; sha1 = "fce3550b0e03cf6c78d55f1e89afe27bea3ed0fa"; } - { locale = "ms"; arch = "linux-x86_64"; sha1 = "7bc8f231ac82827d9095ce896cb16f60c92b1053"; } - { locale = "nb-NO"; arch = "linux-i686"; sha1 = "7d077713f9cf02833fa9e3ef69a5dac11d88f59e"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "642851c8ead7a0e673d9d8d0329a551cd9282337"; } - { locale = "nl"; arch = "linux-i686"; sha1 = "f0cd799d98840d8ca7825caac582035761347a94"; } - { locale = "nl"; arch = "linux-x86_64"; sha1 = "beaa7e385b655c82999dc38eb39af31e7e9de69a"; } - { locale = "nn-NO"; arch = "linux-i686"; sha1 = "04ed2d080ef687b0504f3d42bea97b2e56876795"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "857fbeef81cf00def5eaaa02effb1731eac15a1f"; } - { locale = "or"; arch = "linux-i686"; sha1 = "a208556246b7574d5e71eec8a56d8a2ab3c43767"; } - { locale = "or"; arch = "linux-x86_64"; sha1 = "f7b223bfe82d2ab7a0f2dba0b93e682ef5c833e3"; } - { locale = "pa-IN"; arch = "linux-i686"; sha1 = "b67c2aa36065ece0526a280cbe33adcb38a20843"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "73aef7a4e318625d18cade40090ec112667de295"; } - { locale = "pl"; arch = "linux-i686"; sha1 = "3446a41365fb0852684d0808d1fa85ddabcf0958"; } - { locale = "pl"; arch = "linux-x86_64"; sha1 = "0c1b1f1279e1639e71acdccaa4a687bf26aca19f"; } - { locale = "pt-BR"; arch = "linux-i686"; sha1 = "a3ec0b02796f67a798bbb895cf926f9bd7ccbe8d"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "e3b74fcb0ec26c440acedfe282a3ef0902a10d2b"; } - { locale = "pt-PT"; arch = "linux-i686"; sha1 = "0b942ec4a8fee50595a7b34e76636bfa83d2dfc0"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "d20698edd8193185342c2487433af4ea39fb6a3a"; } - { locale = "rm"; arch = "linux-i686"; sha1 = "442b8ac786b05e655b415a76427cca7ee0aa1abf"; } - { locale = "rm"; arch = "linux-x86_64"; sha1 = "250cb2a8e3fe869ae150de97b15e6d8f8fd30da3"; } - { locale = "ro"; arch = "linux-i686"; sha1 = "3a796ab446e77064ad3a094464c54d578b5ca910"; } - { locale = "ro"; arch = "linux-x86_64"; sha1 = "a512c2bd2cdd21f108ff1f77a747c606f28f8621"; } - { locale = "ru"; arch = "linux-i686"; sha1 = "2a907a348dd1f61e2ee8b6027e2085ee2e7e71bf"; } - { locale = "ru"; arch = "linux-x86_64"; sha1 = "228cad14512e25a445c1a5a92262ddf8fbb2f5c5"; } - { locale = "si"; arch = "linux-i686"; sha1 = "69ad63bfa75e1279bdcfe3d4127d83bb49b134b4"; } - { locale = "si"; arch = "linux-x86_64"; sha1 = "851e02e6ab551af88f41655cb3fe15883e536a62"; } - { locale = "sk"; arch = "linux-i686"; sha1 = "56c439e0dca6d75aa218e995187d10c0f88d3390"; } - { locale = "sk"; arch = "linux-x86_64"; sha1 = "43b69972b4e785069eba3ca7db1d8563f5ea76d8"; } - { locale = "sl"; arch = "linux-i686"; sha1 = "64bad6a92fa3eb1c98e2ce038e4fafdddb699690"; } - { locale = "sl"; arch = "linux-x86_64"; sha1 = "ace07b787362d893be563c9d59ec7e616f3a1d11"; } - { locale = "son"; arch = "linux-i686"; sha1 = "6a027929d81d9c36f62d0f092d4d7f1451713077"; } - { locale = "son"; arch = "linux-x86_64"; sha1 = "ebb4fd0f3dcabefd3d5e19a67d3e0e02a70918fa"; } - { locale = "sq"; arch = "linux-i686"; sha1 = "3048cc7c6837dbad7c654b37b44ee1c3a588633c"; } - { locale = "sq"; arch = "linux-x86_64"; sha1 = "d4ef1a51d0bf973fe4bfc614f8878f021ec46f5b"; } - { locale = "sr"; arch = "linux-i686"; sha1 = "d10e7c6619d2a2879eaab9d8c3a1a7f7458f60bb"; } - { locale = "sr"; arch = "linux-x86_64"; sha1 = "5b140de3d590ea84f91165396b7e154acc247172"; } - { locale = "sv-SE"; arch = "linux-i686"; sha1 = "57efc1f16710acd31a6db186673995f0713dba6f"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "d65d51b861eb62a5cdc99491f3c91dbb02638511"; } - { locale = "ta"; arch = "linux-i686"; sha1 = "aead4b55accc679c8fd49a099d12de95410bc480"; } - { locale = "ta"; arch = "linux-x86_64"; sha1 = "fcca6081e4fa248f86d77bc8d7aad658e82ef4c7"; } - { locale = "te"; arch = "linux-i686"; sha1 = "dbcdd1cc740d82f075c71bb6e3d087312ab7700d"; } - { locale = "te"; arch = "linux-x86_64"; sha1 = "901df9c92377dec49e66b17c7efd5a3d8f8ea5d5"; } - { locale = "th"; arch = "linux-i686"; sha1 = "a150db665c6a1e5ceb3d6a27896431890b5631c5"; } - { locale = "th"; arch = "linux-x86_64"; sha1 = "144489c6c53d1fdc32a42d2ebb6905946369c70a"; } - { locale = "tr"; arch = "linux-i686"; sha1 = "ccfc01ef15ee5345a2f0e07b1c4bcf8ac4459554"; } - { locale = "tr"; arch = "linux-x86_64"; sha1 = "563862e9a8b355b12c3dca36fc4d8c219707820a"; } - { locale = "uk"; arch = "linux-i686"; sha1 = "9885b14de8ca7d1a25adec103e245dc6d54c226d"; } - { locale = "uk"; arch = "linux-x86_64"; sha1 = "8d9d3e4a14d0288dc6d82cb652752712e0e4b577"; } - { locale = "vi"; arch = "linux-i686"; sha1 = "a70b8c7d9a7bbda992faf8f3762e55412b12a08d"; } - { locale = "vi"; arch = "linux-x86_64"; sha1 = "17661185644f68902eb946a3cd179c77f9681881"; } - { locale = "xh"; arch = "linux-i686"; sha1 = "1f1c9a8c1a614e5855d7303d808e661e54536de9"; } - { locale = "xh"; arch = "linux-x86_64"; sha1 = "17490957c9f3064ea5ea35562c0d669a557ea1ae"; } - { locale = "zh-CN"; arch = "linux-i686"; sha1 = "5140d26ab69f0645ae512d8a9d277ae6efc7dc45"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "cc09fcde7062e5bac4952b239354152855b8c52a"; } - { locale = "zh-TW"; arch = "linux-i686"; sha1 = "e923cb157faa256852ead1aef8e1c5e420e4fb27"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "d801a229474eaee5229137f2e69629abdf60e36b"; } + { locale = "ach"; arch = "linux-i686"; sha1 = "171c24f002bceacbe7a29ca807f3e13cab20cb09"; } + { locale = "ach"; arch = "linux-x86_64"; sha1 = "4b9936b23e3a14603a87fbc3ca3ffdf6cac51ab3"; } + { locale = "af"; arch = "linux-i686"; sha1 = "2ec4b773acddb8b7ca6edd77c87d7f6018eebe6a"; } + { locale = "af"; arch = "linux-x86_64"; sha1 = "3ff150a7956464802550de974901d77f8fdeaa2c"; } + { locale = "an"; arch = "linux-i686"; sha1 = "c87ab9f8d6ff800b8d4524fbb31f5eda93f04d0b"; } + { locale = "an"; arch = "linux-x86_64"; sha1 = "4424f5a5ee97ef17786242c0ed8fbd235892792c"; } + { locale = "ar"; arch = "linux-i686"; sha1 = "626055151dbd2b6324b9a78f0d52f908d851ef27"; } + { locale = "ar"; arch = "linux-x86_64"; sha1 = "46eb6f9a7d79ab0935e53f8adcbb39ef9eb23958"; } + { locale = "as"; arch = "linux-i686"; sha1 = "5bdb6329d9b87e844f54c76e6a1d3a01bb549a47"; } + { locale = "as"; arch = "linux-x86_64"; sha1 = "c3d9a75ed9624f55b28be6537e66d3d008f2f8e0"; } + { locale = "ast"; arch = "linux-i686"; sha1 = "afdef9abc432e29db0105359436feb799cf4b4d8"; } + { locale = "ast"; arch = "linux-x86_64"; sha1 = "6bc04d5d929b6e8c507080d7d9c6a38cdbd8cdfc"; } + { locale = "az"; arch = "linux-i686"; sha1 = "08c01dbc10d092dd1bed279b61a718494f306934"; } + { locale = "az"; arch = "linux-x86_64"; sha1 = "7cd459c801cb13a632bf8dbe0e935924731378be"; } + { locale = "be"; arch = "linux-i686"; sha1 = "1086d708700b1e78943aff8b5525fefdc57f6b4b"; } + { locale = "be"; arch = "linux-x86_64"; sha1 = "61ef1b7d3e7f10024a688940177906094504375e"; } + { locale = "bg"; arch = "linux-i686"; sha1 = "63c097425c56a2aebd6519013bd39719e22b8869"; } + { locale = "bg"; arch = "linux-x86_64"; sha1 = "d2f27d7c96ff11b03f44f7d1aee9b2f0b042946e"; } + { locale = "bn-BD"; arch = "linux-i686"; sha1 = "cf9368ef310017d68c06eb1cbb14e83656adb94f"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "c45797b2747cf9688250c3b9816b31333c76218c"; } + { locale = "bn-IN"; arch = "linux-i686"; sha1 = "a664464f41b2bc8cdcb6f9cbf2945da66743f923"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "4b17670ee1204fe6fc99ac60466b630a67fb377d"; } + { locale = "br"; arch = "linux-i686"; sha1 = "004c18d0270d0964b69b9d574ee0085f95f79d5f"; } + { locale = "br"; arch = "linux-x86_64"; sha1 = "974c674138cdfd4983ee89e11d9b8ea905318e07"; } + { locale = "bs"; arch = "linux-i686"; sha1 = "3c76d0e794a9f90313438a77cc71c4917e6d0963"; } + { locale = "bs"; arch = "linux-x86_64"; sha1 = "de062d16baa844bef4d46278b922e55c24446013"; } + { locale = "ca"; arch = "linux-i686"; sha1 = "1fc3fd7ff88fa47be3e63c6d18fb7ea0f96ea182"; } + { locale = "ca"; arch = "linux-x86_64"; sha1 = "034e54f38b3905afa9265adcd7028ecaeef0b0ea"; } + { locale = "cs"; arch = "linux-i686"; sha1 = "da6c2109d0749e3fb02d39608bfc097e0d4b7e94"; } + { locale = "cs"; arch = "linux-x86_64"; sha1 = "564dfbadd8a4da4d27a5980be2c037c38f798be3"; } + { locale = "cy"; arch = "linux-i686"; sha1 = "4e601b99d70c68884efa386cd7d9e73d27f58fcc"; } + { locale = "cy"; arch = "linux-x86_64"; sha1 = "6d8b101a0cf704501f737867ec139481457d4925"; } + { locale = "da"; arch = "linux-i686"; sha1 = "bf228d3a5a62fbdb1169029722fa0e3b5ed88b32"; } + { locale = "da"; arch = "linux-x86_64"; sha1 = "cdd695b5e0983c6602d9a351b3b132c4063c0b4b"; } + { locale = "de"; arch = "linux-i686"; sha1 = "117fc06f022e5508a0d15be0e1a7a3db4745c8d6"; } + { locale = "de"; arch = "linux-x86_64"; sha1 = "85d4ab75a06eefb41bcd16c9eb870f704cc41d69"; } + { locale = "dsb"; arch = "linux-i686"; sha1 = "8518aa683ae83d230067a72ed541e3d190933548"; } + { locale = "dsb"; arch = "linux-x86_64"; sha1 = "ed174cf13bd4ea448e4c86e1c05632728da2138e"; } + { locale = "el"; arch = "linux-i686"; sha1 = "3d78f1b8b814da0f9b64e06275a46675e52baee7"; } + { locale = "el"; arch = "linux-x86_64"; sha1 = "4ceca57c924cbd80dbd6578c0fbcfdc0dbedad36"; } + { locale = "en-GB"; arch = "linux-i686"; sha1 = "b96227ce0f152eb901ca9cdfa579634d943e8ee1"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "d8ebb59b19d1bab937b53cd7af14a07537688218"; } + { locale = "en-US"; arch = "linux-i686"; sha1 = "80b63f903b0182f939436e8ec7a54b0c7bcfddad"; } + { locale = "en-US"; arch = "linux-x86_64"; sha1 = "1e5d88aa9fade0f39be239d4fc88a63be7fba1fb"; } + { locale = "en-ZA"; arch = "linux-i686"; sha1 = "f16c3e3d6904ee327002788e2374bf126c40d5b5"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "f4a411e5ab5ad73b524ef92c5ed465f25d9411e3"; } + { locale = "eo"; arch = "linux-i686"; sha1 = "dd9ba1358f4359ce0e686c9f04f2603398cc70e7"; } + { locale = "eo"; arch = "linux-x86_64"; sha1 = "e7c5a2688c9ec3cca5005caa25fa7d8d97044a3a"; } + { locale = "es-AR"; arch = "linux-i686"; sha1 = "7bf4fc268ef16dbac4bf1697aeb127b00f024b23"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "de4b641021139e2a3a14db6ae9ccd0202d36380e"; } + { locale = "es-CL"; arch = "linux-i686"; sha1 = "afc1ee57a9eb78d53fdf9416fdde4ed519482810"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha1 = "e91d0e394bf54562297dbfcf79cd2998d3824292"; } + { locale = "es-ES"; arch = "linux-i686"; sha1 = "c7c1f11f1767116b1a3f0ed7a72cbfe5ec72f4ad"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "e02cf16977b0ad6b76e1f50b8dce6634e7688740"; } + { locale = "es-MX"; arch = "linux-i686"; sha1 = "8e5462e20a5f7916bb2db78d438573f7d0da9706"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha1 = "7337351eb8bd38f010c805ce1e00d74b9379d8c1"; } + { locale = "et"; arch = "linux-i686"; sha1 = "ea958109c28d185d250a199d935285edb7099e8c"; } + { locale = "et"; arch = "linux-x86_64"; sha1 = "fa5fd96f8ebe24ec343c2bd834dce571153c0e73"; } + { locale = "eu"; arch = "linux-i686"; sha1 = "66b24e265d01d1775dab8edc4e6b3e2f2566ba22"; } + { locale = "eu"; arch = "linux-x86_64"; sha1 = "e8be6ebbd667459206c8f66bd069ded86784d8ab"; } + { locale = "fa"; arch = "linux-i686"; sha1 = "824ce366ab30abd33e9a7c2f5d57cfde4d60c00d"; } + { locale = "fa"; arch = "linux-x86_64"; sha1 = "12b4a0bfb18f893a0eecdec56a4eda02372396ce"; } + { locale = "ff"; arch = "linux-i686"; sha1 = "218082c202a7699a162901d9093f519811a5f378"; } + { locale = "ff"; arch = "linux-x86_64"; sha1 = "93d3acad0e144b884d3a1a30ac6336fca4e17e77"; } + { locale = "fi"; arch = "linux-i686"; sha1 = "c74d417d4f26061008a9cbd7c7f121fb1e656cfc"; } + { locale = "fi"; arch = "linux-x86_64"; sha1 = "e0da9d2c6cdd1b5c3b26bef6b3401e4fa6452e4b"; } + { locale = "fr"; arch = "linux-i686"; sha1 = "830599b504839b9995414982ba655331619609ec"; } + { locale = "fr"; arch = "linux-x86_64"; sha1 = "4a5c334689e844358e22aba8389849594b6a1891"; } + { locale = "fy-NL"; arch = "linux-i686"; sha1 = "1e9a7b2e57802850c1efb3046b4913499fad07d2"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "ae86e5252bd7b2a4422bc8c6f777ade07242176e"; } + { locale = "ga-IE"; arch = "linux-i686"; sha1 = "4c94ec105da0f91a2b87ba8013eb7b832c2fee12"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "dab8398e904f8392c01313314bbaf76bd0decd8f"; } + { locale = "gd"; arch = "linux-i686"; sha1 = "7d3c9ebcb0ee1aec567d0676c78038a35faf746f"; } + { locale = "gd"; arch = "linux-x86_64"; sha1 = "4b4c20766fe95c6dd69c8e29a2ffcea007940b74"; } + { locale = "gl"; arch = "linux-i686"; sha1 = "eb960637873424213035846cee85dc5cd3bcffaa"; } + { locale = "gl"; arch = "linux-x86_64"; sha1 = "c467354f5c4197880c42205c5385cfd62a115413"; } + { locale = "gu-IN"; arch = "linux-i686"; sha1 = "a25db0f49e9ca9b8238a321480cc6913195ab000"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "8241b15c08fa66e05da25a5d0ad5ffbc50cc6388"; } + { locale = "he"; arch = "linux-i686"; sha1 = "9c6e3df8063a8c4ee859dc0e58ac6f36c2f26659"; } + { locale = "he"; arch = "linux-x86_64"; sha1 = "ec00dfcaf552aa94322b2bcdec1ec8bfc6b5fb6a"; } + { locale = "hi-IN"; arch = "linux-i686"; sha1 = "5165b5ebfa7af89fa61d994ecf5d77087d455828"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "3c52f08951f65d45a5623bc3f88cf7c8e10140c1"; } + { locale = "hr"; arch = "linux-i686"; sha1 = "2b8e12856d5ac25ae101fd717713c46f02836567"; } + { locale = "hr"; arch = "linux-x86_64"; sha1 = "0e3848584959c4123d40da34d6ed25b749cebd15"; } + { locale = "hsb"; arch = "linux-i686"; sha1 = "9a290473f24f9f2347ab64a5851a1f14aed713f7"; } + { locale = "hsb"; arch = "linux-x86_64"; sha1 = "95a66e9f36b6984a341cd801297db84f4ed0c0f3"; } + { locale = "hu"; arch = "linux-i686"; sha1 = "bf1ba19941a5f51c32ac4ac58886165ac258d47e"; } + { locale = "hu"; arch = "linux-x86_64"; sha1 = "710cc727bad72b0f7e85ba84171983b5729e3ea7"; } + { locale = "hy-AM"; arch = "linux-i686"; sha1 = "914e85645210db9f3887751ca8dd68011dc35afc"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "1253e742d911defc9d4cc6334f9eefdc33ac594b"; } + { locale = "id"; arch = "linux-i686"; sha1 = "a3775040046ec7170fecc0a76f97a1c1ebf77097"; } + { locale = "id"; arch = "linux-x86_64"; sha1 = "ae66b28ea0ba09d4f6fa43efd13db774a3e196c7"; } + { locale = "is"; arch = "linux-i686"; sha1 = "6a36025b57fc9ffcf136d377d4b8b0da0ad70561"; } + { locale = "is"; arch = "linux-x86_64"; sha1 = "f2e31c725ee85e70be0aa04fe10463c0e93ab403"; } + { locale = "it"; arch = "linux-i686"; sha1 = "640db9133bd8dad4c0317f1ca47570aedbac6f05"; } + { locale = "it"; arch = "linux-x86_64"; sha1 = "ab4782eb61e9aab81b899b355416a7cac1434fc5"; } + { locale = "ja"; arch = "linux-i686"; sha1 = "3306c8a43d605d43a459915cbe537fd96d38fc1f"; } + { locale = "ja"; arch = "linux-x86_64"; sha1 = "49b7be7d6237cde197daa9dc6eed39f27eb8afda"; } + { locale = "kk"; arch = "linux-i686"; sha1 = "f8c201f166bd7a11b118bd16a9056e386c8a6fb1"; } + { locale = "kk"; arch = "linux-x86_64"; sha1 = "e4e970289b0370e1c7fac171e0c704f089a7daef"; } + { locale = "km"; arch = "linux-i686"; sha1 = "5f5e99bdd7d0581bdbf866ea4e11a7ceab11633e"; } + { locale = "km"; arch = "linux-x86_64"; sha1 = "a1c7adaf6986d96119f4ee5941b8e37eb7a5eb99"; } + { locale = "kn"; arch = "linux-i686"; sha1 = "cc54a5fd8b361bb64e74cb25c886b3f7acec564b"; } + { locale = "kn"; arch = "linux-x86_64"; sha1 = "72159be6e48f786ae3c3393ddac54f38d26a5b78"; } + { locale = "ko"; arch = "linux-i686"; sha1 = "e4ec61472d4abe31cbced6077edd091a5905f0da"; } + { locale = "ko"; arch = "linux-x86_64"; sha1 = "1f8297062d8898a288e11dfb8acfdaaa47add0ee"; } + { locale = "lij"; arch = "linux-i686"; sha1 = "78c3a4d2caf84ccf89cf8da4fc3ef183bc9cf70a"; } + { locale = "lij"; arch = "linux-x86_64"; sha1 = "ab9ac9e5f0e29e5380c09256f10eb69767ced505"; } + { locale = "lt"; arch = "linux-i686"; sha1 = "bb8f2a6ecba549fac49337a057e9a4db4129b79d"; } + { locale = "lt"; arch = "linux-x86_64"; sha1 = "fe5c477631d72f8ccee29177431d3dea0be9f180"; } + { locale = "lv"; arch = "linux-i686"; sha1 = "2c2d06266a4d98ec20bf2f5e52b9c3c0bb609c76"; } + { locale = "lv"; arch = "linux-x86_64"; sha1 = "8dfed7ad4f1783e6760221373358f231f4f0da0f"; } + { locale = "mai"; arch = "linux-i686"; sha1 = "757b62b448f83e9d69c66d1615da966107c931a3"; } + { locale = "mai"; arch = "linux-x86_64"; sha1 = "713c610d63083ea8021f01d321b930b0c847f780"; } + { locale = "mk"; arch = "linux-i686"; sha1 = "366089fb3c938ea35a5dffe7f7ca760054f567b0"; } + { locale = "mk"; arch = "linux-x86_64"; sha1 = "efdd56a4cc63066096446ad360549447647348de"; } + { locale = "ml"; arch = "linux-i686"; sha1 = "3c2e550f836f0cefcfb5c38411b1ac2f3a637bcf"; } + { locale = "ml"; arch = "linux-x86_64"; sha1 = "36a2ec196849c1f469e74b3053c3f12396b01504"; } + { locale = "mr"; arch = "linux-i686"; sha1 = "be2e5712afc9d4cc4c7f1934e596f7c1957544c2"; } + { locale = "mr"; arch = "linux-x86_64"; sha1 = "e73b9d865474ffa5acbeb231d4e685937be1975f"; } + { locale = "ms"; arch = "linux-i686"; sha1 = "4fbc2a641867d394f28a4742b5c5133731f546d5"; } + { locale = "ms"; arch = "linux-x86_64"; sha1 = "87631ece4d7b74baedd781d1f6b2a57b2eeda412"; } + { locale = "nb-NO"; arch = "linux-i686"; sha1 = "68f83785a6df96389cf76870d98090c786fdfc31"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "8e2d292250b23dd76e5661fe52de979d0c5d9205"; } + { locale = "nl"; arch = "linux-i686"; sha1 = "f0d738d05df36c876882f8c301331869d83f7294"; } + { locale = "nl"; arch = "linux-x86_64"; sha1 = "eea2560db78a13f0c04aad6825d328b8bc55eb08"; } + { locale = "nn-NO"; arch = "linux-i686"; sha1 = "c6034e46de8466295d0e359274b6a55d55d0184a"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "10ec7c2904189566a938325ea815723e0bb0b2cb"; } + { locale = "or"; arch = "linux-i686"; sha1 = "0df41d06162817cd34b1bb53515c90cfad3de511"; } + { locale = "or"; arch = "linux-x86_64"; sha1 = "3c12b50d07447911fc0f509ad00e385124bf7ec3"; } + { locale = "pa-IN"; arch = "linux-i686"; sha1 = "0ce146883573be7eb5daed17699230da82ada4cf"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "c01aa06a17bd8d621ed6aded5e74e71370e9e4c8"; } + { locale = "pl"; arch = "linux-i686"; sha1 = "2164863aa00224f593290194767f3996811e638a"; } + { locale = "pl"; arch = "linux-x86_64"; sha1 = "567697d04976120296727b8a3ea4c26b747a4588"; } + { locale = "pt-BR"; arch = "linux-i686"; sha1 = "9d157740a17808968351dc8adec6aa537cec0a44"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "d4bd135c4e13f82a8a2809e3e1d8e09cf7f80f42"; } + { locale = "pt-PT"; arch = "linux-i686"; sha1 = "3dbf64a4e9ed9900f2ac9581f89f0df723129a14"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "e3d930beb3fb127d9528b4ff296fbbeeebb14bb8"; } + { locale = "rm"; arch = "linux-i686"; sha1 = "a579c6c9a0564add3bda66a003318fe2947f69cc"; } + { locale = "rm"; arch = "linux-x86_64"; sha1 = "030cfc69fa37be23b88b70d4ac80e459efb5a059"; } + { locale = "ro"; arch = "linux-i686"; sha1 = "47d39cfef7f363504a626ac82f913e41742be0e8"; } + { locale = "ro"; arch = "linux-x86_64"; sha1 = "bc5d110d4ce4953d213bea29e1052b7ca1718410"; } + { locale = "ru"; arch = "linux-i686"; sha1 = "8944e82080ac7371dba99e3e602b7ad03e589655"; } + { locale = "ru"; arch = "linux-x86_64"; sha1 = "6c224dc91d8fd60056a6c72dc54de8c68a279b6d"; } + { locale = "si"; arch = "linux-i686"; sha1 = "baee23301b0d140248030b1fd68fc04e5c10f939"; } + { locale = "si"; arch = "linux-x86_64"; sha1 = "828160c350a4dd71f88b0d1f17c8692e6d4b14d1"; } + { locale = "sk"; arch = "linux-i686"; sha1 = "5ef8b1e005286bbf3e2e1f7eefa4addf8f3767d0"; } + { locale = "sk"; arch = "linux-x86_64"; sha1 = "30bcc039ccd95b1a0c488b1b805ae0a767856b16"; } + { locale = "sl"; arch = "linux-i686"; sha1 = "8352a59403334665bc88604e6a40581a3eb7aac0"; } + { locale = "sl"; arch = "linux-x86_64"; sha1 = "3e0939fe78cd88350748690598b786dd4e335855"; } + { locale = "son"; arch = "linux-i686"; sha1 = "09f0bb79c4c9c1a865a5e14c7e621c3fc2d416cc"; } + { locale = "son"; arch = "linux-x86_64"; sha1 = "86e4c2fb90a17b068a5c62843ab16803c1b101e9"; } + { locale = "sq"; arch = "linux-i686"; sha1 = "016fe63fcaa5a6a1335d27c4e7ad97dd5aaad9e4"; } + { locale = "sq"; arch = "linux-x86_64"; sha1 = "1c4d68de1b8a6d29dd9b9d3433ffb7859832c4ed"; } + { locale = "sr"; arch = "linux-i686"; sha1 = "011eaee136b1e34d0a0b2eeab2e0a53edecece88"; } + { locale = "sr"; arch = "linux-x86_64"; sha1 = "2d54163e9219d192908f162b338bbc7cce43569a"; } + { locale = "sv-SE"; arch = "linux-i686"; sha1 = "3616fdf8cb30580246243b42efcd11dc13ee0bc4"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "33139dfd37b085fe77b48a0b7f3f9ad6ce12bf05"; } + { locale = "ta"; arch = "linux-i686"; sha1 = "a043b01750615c594d0d079681e47c523601419e"; } + { locale = "ta"; arch = "linux-x86_64"; sha1 = "16650e9b5c34faa71fe597e5a86eac16a85b8a63"; } + { locale = "te"; arch = "linux-i686"; sha1 = "e565fe7184e4c1e60804c1258d241af4d8f989cc"; } + { locale = "te"; arch = "linux-x86_64"; sha1 = "e0cd4d67f800b86c7f84a816adfd4c94c4e4ec3c"; } + { locale = "th"; arch = "linux-i686"; sha1 = "069e3a10f95d0d5abd9f44548e482523ba688728"; } + { locale = "th"; arch = "linux-x86_64"; sha1 = "f8678da72a388623718a2ea0b9e8e7df735c87b4"; } + { locale = "tr"; arch = "linux-i686"; sha1 = "cef7ea6c46da2fb39802b5ed6d6626addd0842e1"; } + { locale = "tr"; arch = "linux-x86_64"; sha1 = "a1476e81269f11fd966b74ddadf009356d7d8811"; } + { locale = "uk"; arch = "linux-i686"; sha1 = "694d8dc5aa067ed1efbe6912f38ddcb501692741"; } + { locale = "uk"; arch = "linux-x86_64"; sha1 = "68e4329c7ffc622d5e98923348c0eebde3d0a05d"; } + { locale = "vi"; arch = "linux-i686"; sha1 = "421289cfe38233038c6b67c341779997cb0f7e91"; } + { locale = "vi"; arch = "linux-x86_64"; sha1 = "5d6b9ed16a8cefe6ec79716d43f9d984270da12d"; } + { locale = "xh"; arch = "linux-i686"; sha1 = "ac7648d08f55449fa4c7833edf3ac229290b3b56"; } + { locale = "xh"; arch = "linux-x86_64"; sha1 = "29bce5966c7ed1b806706855611329c857ce0c89"; } + { locale = "zh-CN"; arch = "linux-i686"; sha1 = "7f8867dc3839573234685355965490c600c3c73e"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "2f9df8cb2c6d5de83f4c77aa6938a16d93d70020"; } + { locale = "zh-TW"; arch = "linux-i686"; sha1 = "dd5abdc714ce34b3999e9f021b26131dfabcaece"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "b5f9f4b7cdce79b0627069318fc9a0bacd251980"; } ]; } diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix index e51c3f68d7f..595272b900a 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix @@ -4,117 +4,117 @@ # ruby generate_source.rb > source.nix { - version = "31.3.0"; + version = "31.4.0"; sources = [ - { locale = "ar"; arch = "linux-i686"; sha1 = "2579ce59d7c26bdd345732d6ab164fbf6e531b0a"; } - { locale = "ar"; arch = "linux-x86_64"; sha1 = "55b912f4424b06972cc9d3b14cab3eaa75abdff0"; } - { locale = "ast"; arch = "linux-i686"; sha1 = "101de138543ae46b667cc9800e45d30a59c31ea0"; } - { locale = "ast"; arch = "linux-x86_64"; sha1 = "0e290b8222ec3085d2848eb219fa2a950ab38f96"; } - { locale = "be"; arch = "linux-i686"; sha1 = "80db08139076f5e2810edd931af353bc3c9f6326"; } - { locale = "be"; arch = "linux-x86_64"; sha1 = "0569479306e0e5fbaa9b87d9f547eec875cdc673"; } - { locale = "bg"; arch = "linux-i686"; sha1 = "072900fc768486d525fa89ef4a289b3135ec7d1e"; } - { locale = "bg"; arch = "linux-x86_64"; sha1 = "b99da8534a06e89380b8a9c62e7ac848995cd648"; } - { locale = "bn-BD"; arch = "linux-i686"; sha1 = "89303e18aa4bc22b1cb91f4d990eb2e3896336e9"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "142a507fd977c81e18580acea9dc3e60fb6e6cca"; } - { locale = "br"; arch = "linux-i686"; sha1 = "987b861d55d333d552e22fd6ce4d5d8fa3031e95"; } - { locale = "br"; arch = "linux-x86_64"; sha1 = "8c088d8f374e4cab6477ed5e071861d3875513fb"; } - { locale = "ca"; arch = "linux-i686"; sha1 = "0517ffca37a556548a9b8ded4d7084df0ad70d53"; } - { locale = "ca"; arch = "linux-x86_64"; sha1 = "a617ae22a924d458ed633e5728f44838d0b42c64"; } - { locale = "cs"; arch = "linux-i686"; sha1 = "9ae7115dfc0c11528ec276d62925815f93f49dd0"; } - { locale = "cs"; arch = "linux-x86_64"; sha1 = "2155ef2017e5411a9279b66142306f5d5b9b2b0d"; } - { locale = "da"; arch = "linux-i686"; sha1 = "dfb5ee11a096128f53cebe016156e34aa762a5be"; } - { locale = "da"; arch = "linux-x86_64"; sha1 = "8549835e2c3a120aea39c274d7cb1c7f54035649"; } - { locale = "de"; arch = "linux-i686"; sha1 = "3032a8b87835781d919cab8862057a2612a52af3"; } - { locale = "de"; arch = "linux-x86_64"; sha1 = "6a9a99636cbfbff3950c5f31681ed2aefbb170b9"; } - { locale = "el"; arch = "linux-i686"; sha1 = "33bd8a4a7cdaab9937a7880f17c27177a667f1f5"; } - { locale = "el"; arch = "linux-x86_64"; sha1 = "e32d2382a8322cb65ed3b2b4d634cc818bf94d58"; } - { locale = "en-GB"; arch = "linux-i686"; sha1 = "2e85dcaa7450e2cd605ab41849693c6eb94aa4b8"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "5a229b46fca9bfe736254bc9a65259c5722dac37"; } - { locale = "en-US"; arch = "linux-i686"; sha1 = "40d0e9a5530812d2ffc471f9c1e9c64ec39bc3aa"; } - { locale = "en-US"; arch = "linux-x86_64"; sha1 = "5dc64b9a0fa7e4df1ed232b56478d52986c3b4ad"; } - { locale = "es-AR"; arch = "linux-i686"; sha1 = "5b3cec2e5ddfd9a12eadc5ac270aba85acfe0051"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "bceb273367d49b927f5de022009fdd27b707d4eb"; } - { locale = "es-ES"; arch = "linux-i686"; sha1 = "9911086185272ac2a5c6ee9b36170f1a7352b5a4"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "df164ccdb2ec8ac50c663fe5771a63cb51b991a8"; } - { locale = "et"; arch = "linux-i686"; sha1 = "1e98b4c19dc16e52a65e66a0b518626924a098b1"; } - { locale = "et"; arch = "linux-x86_64"; sha1 = "2153b56a7336fdba78797025ebba8deb0c5796ed"; } - { locale = "eu"; arch = "linux-i686"; sha1 = "864ae993a8e87b09ba2ebfa5d12a8cc9b36c9c27"; } - { locale = "eu"; arch = "linux-x86_64"; sha1 = "ad4a01b18e2c9d38d048f9ee28a19c00dd1dc122"; } - { locale = "fi"; arch = "linux-i686"; sha1 = "d2ebe588dda618a29de4af0fbadbdd1daddd059c"; } - { locale = "fi"; arch = "linux-x86_64"; sha1 = "3c5eb0bb4dec968678c812eda5d723b50ca2f150"; } - { locale = "fr"; arch = "linux-i686"; sha1 = "c71f67ab5942cb49add9a044d6eeb69523f416c9"; } - { locale = "fr"; arch = "linux-x86_64"; sha1 = "60c5a7037de5439ffebc39980c87e5e1065e2d8c"; } - { locale = "fy-NL"; arch = "linux-i686"; sha1 = "09d4f2786ede2aff43250d4ed8f151f73c1cb983"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "839bea8234ccc71f9402487f022a3fcee13da341"; } - { locale = "ga-IE"; arch = "linux-i686"; sha1 = "07635c04802c1023a9c6ec6d66c2d9ed9c210800"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "ff584fe726ca1be184c453d2eec250577d7747b4"; } - { locale = "gd"; arch = "linux-i686"; sha1 = "3cbb34e8eba1ad0db2f25b51390b6b66efbdbd6b"; } - { locale = "gd"; arch = "linux-x86_64"; sha1 = "78703fbf8e9c7cf4db1522baaea837450972f568"; } - { locale = "gl"; arch = "linux-i686"; sha1 = "1aab34a16224d84c958aa65f4a0e8100a96003f4"; } - { locale = "gl"; arch = "linux-x86_64"; sha1 = "a8beb35a764b040a1d495e8e34623a884c1911c8"; } - { locale = "he"; arch = "linux-i686"; sha1 = "73fe49520af05bb79e20c202836fce347466c957"; } - { locale = "he"; arch = "linux-x86_64"; sha1 = "1780d0a0f342fc6c64e9365a548c13770f9d02f3"; } - { locale = "hr"; arch = "linux-i686"; sha1 = "f2c570b88fe3368fa30a53f42357a02b610acb36"; } - { locale = "hr"; arch = "linux-x86_64"; sha1 = "b3bb417879fd039222062f2df8f64811c1472cd6"; } - { locale = "hu"; arch = "linux-i686"; sha1 = "3369f82671a7e56ca24161ac2a1dd7cd0ae9ba85"; } - { locale = "hu"; arch = "linux-x86_64"; sha1 = "996b00fb13c2cfd826597eb817bdf8098b523f1b"; } - { locale = "hy-AM"; arch = "linux-i686"; sha1 = "c805817f9463d74bb73cad273d91c15d04ef1786"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "20abe54c61fa4760a507da630c1b919cfe36cf6a"; } - { locale = "id"; arch = "linux-i686"; sha1 = "76e1659be7d8fbfcd2a6b0bcefdc3988d59e81fa"; } - { locale = "id"; arch = "linux-x86_64"; sha1 = "cff15be3455dcf7ed714e8e69d34dc2ad016b60f"; } - { locale = "is"; arch = "linux-i686"; sha1 = "be8238cddd980bbd7de2a21541b260fd6689a8d7"; } - { locale = "is"; arch = "linux-x86_64"; sha1 = "1fcabd1b1b43ac25f7f5d2eca896ba7d5ea82102"; } - { locale = "it"; arch = "linux-i686"; sha1 = "df18fd291ffbb80323dfd823aa04692bcf6f251f"; } - { locale = "it"; arch = "linux-x86_64"; sha1 = "196fae349e7b06029e9738a12fb78f24ca691598"; } - { locale = "ja"; arch = "linux-i686"; sha1 = "a888ba62981b73d96ba39892a3372b36f0ffb2b3"; } - { locale = "ja"; arch = "linux-x86_64"; sha1 = "00e2be4b037a37429ee708d49c82af5ffafe8ca1"; } - { locale = "ko"; arch = "linux-i686"; sha1 = "634ea25e7246ff1c23a0d57bdf928372ca867cd6"; } - { locale = "ko"; arch = "linux-x86_64"; sha1 = "cfa4acb0970ab87f44e3bbfe46717d1664c63e99"; } - { locale = "lt"; arch = "linux-i686"; sha1 = "50d2764febdfb206c704cc0eb14e0679e42dffc3"; } - { locale = "lt"; arch = "linux-x86_64"; sha1 = "1a975a34ddcb0637957def46bd6cc3785a9630df"; } - { locale = "nb-NO"; arch = "linux-i686"; sha1 = "c0cf3563e2322724447d1c6730a7d4674c9bad7a"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "0c7267858bf95345dc09f9b03b56283e3198f8a4"; } - { locale = "nl"; arch = "linux-i686"; sha1 = "8c8db046ca1f21c11d00914613010836e0c5aefc"; } - { locale = "nl"; arch = "linux-x86_64"; sha1 = "acd50182d4e1f255ef70bf3d7dfc9ef963535def"; } - { locale = "nn-NO"; arch = "linux-i686"; sha1 = "ca1728b39e052bd9975d2b2ec8cffa6290098316"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "05a3bed8b8c0ccea66ceef02184f4ecd95e141f8"; } - { locale = "pa-IN"; arch = "linux-i686"; sha1 = "e0aa8fca5e1df6adf5b5bf41d9c8f2a195e5b598"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "fd4f63140ffc56095c7b66a3ff560409a43ad018"; } - { locale = "pl"; arch = "linux-i686"; sha1 = "9dc57337681fd57c5eb51240463e25543385d23d"; } - { locale = "pl"; arch = "linux-x86_64"; sha1 = "2c27721db5b96a8d488ce7a74e3ebf350f71f76a"; } - { locale = "pt-BR"; arch = "linux-i686"; sha1 = "c4d3e3f02375533bfb734155327832b4bcddbbe5"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "81d1cfacaf3f6a2830af0fceda7ac463867afa90"; } - { locale = "pt-PT"; arch = "linux-i686"; sha1 = "f59639147c77344d7fbe49c8c3320ec382ce261c"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "76d04ef5ac5ce644c04621adcc08059f4d509cdd"; } - { locale = "rm"; arch = "linux-i686"; sha1 = "a9d4485e9740572e1c5b8579a171c381797c3f97"; } - { locale = "rm"; arch = "linux-x86_64"; sha1 = "9d699390b577ec97842e75118ee6f0579c386fe0"; } - { locale = "ro"; arch = "linux-i686"; sha1 = "e03991f23cd9da6e5f14e37a4f84faee64f529b1"; } - { locale = "ro"; arch = "linux-x86_64"; sha1 = "7137b302ed8c1079ed8f7efa2eaaeaeeb900cc28"; } - { locale = "ru"; arch = "linux-i686"; sha1 = "7cc98ffeebf3f450c5f29b177eca3e127184c89d"; } - { locale = "ru"; arch = "linux-x86_64"; sha1 = "c087c970e9456d60265f7f9f6be83100b3990ef9"; } - { locale = "si"; arch = "linux-i686"; sha1 = "4197c63d5669be0cd6856d17883f5dbb9690438f"; } - { locale = "si"; arch = "linux-x86_64"; sha1 = "753e858aba8212d86ce9a6855dfaa2223d2ce3bd"; } - { locale = "sk"; arch = "linux-i686"; sha1 = "64ca38cce9a99b7cf281faf0c53e5b646cb8e7f7"; } - { locale = "sk"; arch = "linux-x86_64"; sha1 = "78e10824e31d2aee74d852d7b657dd3239cfbaa2"; } - { locale = "sl"; arch = "linux-i686"; sha1 = "6d38031ef73b82a11193fe2333ba7bfc31e0da49"; } - { locale = "sl"; arch = "linux-x86_64"; sha1 = "c1ba73354f662da9f541978b5611acc41ee60356"; } - { locale = "sq"; arch = "linux-i686"; sha1 = "3bc7482b81a754abc01e4c1face0aa4e65aa3ea6"; } - { locale = "sq"; arch = "linux-x86_64"; sha1 = "2463ac4d17d95c41e5bfebf31c3127e3404caa02"; } - { locale = "sr"; arch = "linux-i686"; sha1 = "28f762f06a526f93b9a3ff3bd5a52a1bd4c6b314"; } - { locale = "sr"; arch = "linux-x86_64"; sha1 = "69bbca2b8cea57a76cb3791029f0d55da8383594"; } - { locale = "sv-SE"; arch = "linux-i686"; sha1 = "ddbfd64533c198deeb3e56cb137af3707cc22912"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "992b3a896d619393a829b0b404f6c69bc6d11263"; } - { locale = "ta-LK"; arch = "linux-i686"; sha1 = "dcc7382a20d316eabd500c9d7cfaa84b9e406d43"; } - { locale = "ta-LK"; arch = "linux-x86_64"; sha1 = "4202e74f6cb4e7bb22ae08a5e28d02cac8dd4861"; } - { locale = "tr"; arch = "linux-i686"; sha1 = "1cb9db5a71df0990758a93728d1cccc229797aaa"; } - { locale = "tr"; arch = "linux-x86_64"; sha1 = "8406829869881ed3228f44531c32106f51ef8671"; } - { locale = "uk"; arch = "linux-i686"; sha1 = "e9d259c9872336d96e854208d08d0d09aeb98f47"; } - { locale = "uk"; arch = "linux-x86_64"; sha1 = "3a65b5a21c2310dcb243abbf1cfdc7ec097a6018"; } - { locale = "vi"; arch = "linux-i686"; sha1 = "60070b3d0488aa80aa331cfb0ea1f37301d074d4"; } - { locale = "vi"; arch = "linux-x86_64"; sha1 = "ffe662b33db700fe795972a08320370592de365b"; } - { locale = "zh-CN"; arch = "linux-i686"; sha1 = "9722b296495a4ac01bb80952df97a1f1a92eed27"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "014e0cd18afceeb662d7c2e9f4541e7a4ef0260a"; } - { locale = "zh-TW"; arch = "linux-i686"; sha1 = "f5174db5a7852d27bdfcca4b57fdf5ffd5294680"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "0014eea1f648f9ddcf977f56f7a82044b41c136e"; } + { locale = "ar"; arch = "linux-i686"; sha1 = "5e6592c5f0569fb56613ed34db895a2fa6c77f66"; } + { locale = "ar"; arch = "linux-x86_64"; sha1 = "7f270aebf5de8c2f4a988d87b37cbdf12542a86a"; } + { locale = "ast"; arch = "linux-i686"; sha1 = "611bbfb96b6f2b39c9a7b83311ba7f96e0294501"; } + { locale = "ast"; arch = "linux-x86_64"; sha1 = "5b8dbb29e1dfce40d0414b75a2e889e40ba62b1b"; } + { locale = "be"; arch = "linux-i686"; sha1 = "8aef167276d82e3243912f1773ce42bc5831d6a8"; } + { locale = "be"; arch = "linux-x86_64"; sha1 = "81448779fcdcace457e7b3e37262345df9b100ec"; } + { locale = "bg"; arch = "linux-i686"; sha1 = "4f82e7bfd24086e98721c6283156781a0a65e23f"; } + { locale = "bg"; arch = "linux-x86_64"; sha1 = "c3ddd6613f7591ff7d4aad1e39358f7107e56b5d"; } + { locale = "bn-BD"; arch = "linux-i686"; sha1 = "68340eea06073ddf2c64f2808d5136295962ebb5"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "c080fda6eb86414e3157a54befcd9bf7e5a87148"; } + { locale = "br"; arch = "linux-i686"; sha1 = "087a853427912f6aef3802851cf61d8c36aaad93"; } + { locale = "br"; arch = "linux-x86_64"; sha1 = "b574ee98d1771d4a4be77a5e1f7573d03329d497"; } + { locale = "ca"; arch = "linux-i686"; sha1 = "4e56ed5b93e8aede015b4ba3b86d0121f5225e21"; } + { locale = "ca"; arch = "linux-x86_64"; sha1 = "8ca5266e9ad8c1f24a9426cd41b4f9af764308b1"; } + { locale = "cs"; arch = "linux-i686"; sha1 = "3e612559375de82f227fbdfad847bef58392ed64"; } + { locale = "cs"; arch = "linux-x86_64"; sha1 = "3aeb7ca07b82258353b1085705e6f0f18c3a3813"; } + { locale = "da"; arch = "linux-i686"; sha1 = "7d09b5f73738ea9ea16c515434299df8654bbc1e"; } + { locale = "da"; arch = "linux-x86_64"; sha1 = "3c7b5dafca343afa0be3d107078c42d525149ab7"; } + { locale = "de"; arch = "linux-i686"; sha1 = "5273088e2ad5278fbec29a3d80ff81123807bdb1"; } + { locale = "de"; arch = "linux-x86_64"; sha1 = "d18893827828640ff83df8b3d340ed96312d4bfb"; } + { locale = "el"; arch = "linux-i686"; sha1 = "dc0f3ecb015568805634ee78f5ec314d2502ae63"; } + { locale = "el"; arch = "linux-x86_64"; sha1 = "ca7c336b9902c7f109c58e20d944c019cc3003dd"; } + { locale = "en-GB"; arch = "linux-i686"; sha1 = "a7164e94562e7c711e0a8ca98cb9994c75aa4538"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "f53acad0af7a080e310b7a875b6cb6776d691fcd"; } + { locale = "en-US"; arch = "linux-i686"; sha1 = "7c31b23b0dfe89c17c0eef61cc605f2ea6a5fca3"; } + { locale = "en-US"; arch = "linux-x86_64"; sha1 = "f837d7d1916d687e4482abb87b74de90c4131b4d"; } + { locale = "es-AR"; arch = "linux-i686"; sha1 = "80d6ad181ba25b3b65eb9fd990f03a1aadd68a7b"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "f40f6514a2357aecabdc34708bbc819fb6546a70"; } + { locale = "es-ES"; arch = "linux-i686"; sha1 = "7c0d9500321fe5c854ba7f1f11cd1cfcec895919"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "afa2780e35a8fb95b26f43595c2e7729e7d37360"; } + { locale = "et"; arch = "linux-i686"; sha1 = "711bf1da10758f784e5c31b3673eb612604775b9"; } + { locale = "et"; arch = "linux-x86_64"; sha1 = "02ee282d0b54ad6490e742f7a3b29763bf1d0545"; } + { locale = "eu"; arch = "linux-i686"; sha1 = "940125468f0129138e20a048fe09d3d489bab478"; } + { locale = "eu"; arch = "linux-x86_64"; sha1 = "357a64c3b49e3d058ed715de24296fa6533dbe59"; } + { locale = "fi"; arch = "linux-i686"; sha1 = "abe4633376f244efffbd3faa7be4381a5dce0dcc"; } + { locale = "fi"; arch = "linux-x86_64"; sha1 = "f401ae0b0e51603249f6a7b925166bf287023dc7"; } + { locale = "fr"; arch = "linux-i686"; sha1 = "f563e7f6638da931c3e8b3b8055d8ea1923af204"; } + { locale = "fr"; arch = "linux-x86_64"; sha1 = "5ebfc7889ad5fa147c50e70a66b42238dc289ffd"; } + { locale = "fy-NL"; arch = "linux-i686"; sha1 = "a7c6c74459ac9ecae0b325765ae9fb3e2adab1c5"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "923de165c7eb693316d4a81ad13e32636c1de990"; } + { locale = "ga-IE"; arch = "linux-i686"; sha1 = "6685e21a2b20ebb35da479604dfbf719b0822c3e"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "35d4f00f26c3bc18c7a6ebcc6d6d2ccd0a4499d4"; } + { locale = "gd"; arch = "linux-i686"; sha1 = "7ad9d25363f3b98085758fb2815d4fbf0b898b28"; } + { locale = "gd"; arch = "linux-x86_64"; sha1 = "ddb0b68b311e51f602248924b4b49481a64ac175"; } + { locale = "gl"; arch = "linux-i686"; sha1 = "216df56d5dde4f27d0f14cfaafd7af08a2732bf2"; } + { locale = "gl"; arch = "linux-x86_64"; sha1 = "4c30c0ba4bbe22522565679b49b06d62673fbd74"; } + { locale = "he"; arch = "linux-i686"; sha1 = "7f67f2fe2166d207f7fa39feb85faae4595cbdbc"; } + { locale = "he"; arch = "linux-x86_64"; sha1 = "f5949cb31f01b11cb6a43a045798da64abea52af"; } + { locale = "hr"; arch = "linux-i686"; sha1 = "c6d784d2cd3f3baf6737dfd2d28c03f9b1c37623"; } + { locale = "hr"; arch = "linux-x86_64"; sha1 = "b5598bc5a19b45ee17cfd259f7da581735f90430"; } + { locale = "hu"; arch = "linux-i686"; sha1 = "21699446dbcc9e0fb53e06dafec8efdbf6ab484b"; } + { locale = "hu"; arch = "linux-x86_64"; sha1 = "e64a219956f4aa017ee742cc1768567052593282"; } + { locale = "hy-AM"; arch = "linux-i686"; sha1 = "a60b5d60e8436355ee24029a4398168108ce8aea"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "583af341312ea29b50a7eaa86d2c9758ce2f5735"; } + { locale = "id"; arch = "linux-i686"; sha1 = "2471ebfc64a84e8711d7bc26783a16d6300ada07"; } + { locale = "id"; arch = "linux-x86_64"; sha1 = "d67b28477e36501a03ce8fd79a23090d068a696e"; } + { locale = "is"; arch = "linux-i686"; sha1 = "f53018a38f84c7e4fc8d5a3ee952478d4a1c9ebe"; } + { locale = "is"; arch = "linux-x86_64"; sha1 = "f886bcdb98af1c217a837c10a5e0737cbd357ef0"; } + { locale = "it"; arch = "linux-i686"; sha1 = "000d8e56b62768aee6dba9cb14b733f78908e751"; } + { locale = "it"; arch = "linux-x86_64"; sha1 = "27ffbd773f977b67903a62b9131b1dcda27dd7f2"; } + { locale = "ja"; arch = "linux-i686"; sha1 = "cd743c00682001094d3a7decd8396b6ce9b1e67e"; } + { locale = "ja"; arch = "linux-x86_64"; sha1 = "64b8ba26bb1f85788321bd2ba38b4813859ebede"; } + { locale = "ko"; arch = "linux-i686"; sha1 = "445731309b578c262547f22364dfe1fd0eaf68d5"; } + { locale = "ko"; arch = "linux-x86_64"; sha1 = "9bc2efd19b17c0e09b55e6ae310e59147212d726"; } + { locale = "lt"; arch = "linux-i686"; sha1 = "35a275d39c2a780b86749891c14ee77ca36f03bf"; } + { locale = "lt"; arch = "linux-x86_64"; sha1 = "c70f2f57e1fd8c40da949a18314c30380728f7bd"; } + { locale = "nb-NO"; arch = "linux-i686"; sha1 = "c94ace97f23a6fce1e736bb334ddf6af3d5a0ff4"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "b00717ab99a47ef3477fecb79d55dc5817c60c1e"; } + { locale = "nl"; arch = "linux-i686"; sha1 = "a5864e976675278cb9fb7e65c1edb88f704557f1"; } + { locale = "nl"; arch = "linux-x86_64"; sha1 = "dba80bc2bc1ec67ba932525d05253803292bc9d8"; } + { locale = "nn-NO"; arch = "linux-i686"; sha1 = "161e1361b1ecc5f1ee31227b7e65705ab5355432"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "8051e55e5f7fbc42c7d75b5ad28834d11b699833"; } + { locale = "pa-IN"; arch = "linux-i686"; sha1 = "91c8812e39baaa1974d4d1c316c7c08022f3408f"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "948a679c843cee3f8da80f0a45b5416c7cc3b37c"; } + { locale = "pl"; arch = "linux-i686"; sha1 = "43005f6337f33171f745f2e493d8cf2a8371d143"; } + { locale = "pl"; arch = "linux-x86_64"; sha1 = "78fea3bc7e24eb96aefb2e52b01657437fc9dfd6"; } + { locale = "pt-BR"; arch = "linux-i686"; sha1 = "0a5b4e14446c0f8f44004178f873bb289176e1b6"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "727d4a82754118749ea48e4b7ab6d182570957ad"; } + { locale = "pt-PT"; arch = "linux-i686"; sha1 = "8b4418f18b3569991ff2aca4528e70dd49247d81"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "0ffbee08f3e43fde37913679037d59b68a47d49b"; } + { locale = "rm"; arch = "linux-i686"; sha1 = "79606026969e837b4b9a1be73b71b0b183757504"; } + { locale = "rm"; arch = "linux-x86_64"; sha1 = "0680dfa0417688e2ad6307b10f90c766db139789"; } + { locale = "ro"; arch = "linux-i686"; sha1 = "d06f4e7f748ffa8202bfc1dc0c4bc94894feb223"; } + { locale = "ro"; arch = "linux-x86_64"; sha1 = "a998af6413eec1123c9e4698ce217dc856c2bb4e"; } + { locale = "ru"; arch = "linux-i686"; sha1 = "062a1ba9c8a5c06972895ebb11e12d90a50c450d"; } + { locale = "ru"; arch = "linux-x86_64"; sha1 = "fd149bdbdc4a697cfab1d04b818b09718a3b945c"; } + { locale = "si"; arch = "linux-i686"; sha1 = "50105a554db09e57ad99aee5c3b9c9f35eef3431"; } + { locale = "si"; arch = "linux-x86_64"; sha1 = "ed360ef7cbf2ecc70b08922c27cdf3525c392137"; } + { locale = "sk"; arch = "linux-i686"; sha1 = "34dee72d71916209a3cad28e6adfa1b3270567c6"; } + { locale = "sk"; arch = "linux-x86_64"; sha1 = "cfe76d345c17ab8711a723779d263c3baa0016ff"; } + { locale = "sl"; arch = "linux-i686"; sha1 = "391a923ff56ba6adf15817b12eec4555ede578fe"; } + { locale = "sl"; arch = "linux-x86_64"; sha1 = "b6c3ad0b50610fd2470a2366c58a2e4947a96698"; } + { locale = "sq"; arch = "linux-i686"; sha1 = "f422d3adca0f15b70d53c9c9b9bae09d651ef535"; } + { locale = "sq"; arch = "linux-x86_64"; sha1 = "d3c8c82a0531a20480ac93dc6e0c981068a327fc"; } + { locale = "sr"; arch = "linux-i686"; sha1 = "9d7ab49903107da8cd9859d09ae62dea661130a9"; } + { locale = "sr"; arch = "linux-x86_64"; sha1 = "24f770326910db0ebd3d521b7573f57c4db2afdd"; } + { locale = "sv-SE"; arch = "linux-i686"; sha1 = "b93a538462e364202cf0a7ef9867f3bcaad5256d"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "b2c6c917b6575002f2f9f548ba1ae0aa3bd7a064"; } + { locale = "ta-LK"; arch = "linux-i686"; sha1 = "e0d34774514f264bb02a2c5db76270bc228e80a8"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha1 = "8119ba8f521da39af4d729fe52841c76e6a9c6f1"; } + { locale = "tr"; arch = "linux-i686"; sha1 = "76b9c748286ac40cb77b2dfe98e44b1ebadc6d9b"; } + { locale = "tr"; arch = "linux-x86_64"; sha1 = "779ed971dac93d55e45a63e0ff4d3f6118317116"; } + { locale = "uk"; arch = "linux-i686"; sha1 = "784a6432f04dc12f6abb405e4375540bb3c1bfac"; } + { locale = "uk"; arch = "linux-x86_64"; sha1 = "d6ec1ca2015c723d05e4f7a6e6006cb0f5f45667"; } + { locale = "vi"; arch = "linux-i686"; sha1 = "e494cb50a3c99b4e96794544b1a7948663d0ae28"; } + { locale = "vi"; arch = "linux-x86_64"; sha1 = "e9a8d6fb2b9328f7ea80c0d7be9943daaf37e71d"; } + { locale = "zh-CN"; arch = "linux-i686"; sha1 = "14624e631eb3bdfb9cde339dbf132e048f68f1c3"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "1197fa99680d978b10c41ccac7183117c264f375"; } + { locale = "zh-TW"; arch = "linux-i686"; sha1 = "78c73c73363b41b3ae36cea01cc64bc715602278"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "76faeef7919eb2fb594773502ee5202ed11b67e4"; } ]; } From 54f3b501319b9fb73800fd30aa4b7d41f8a9f3b9 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Wed, 14 Jan 2015 21:24:06 -0500 Subject: [PATCH 042/185] prefetch-scripts: improve purity Set HOME to /homeless-shelter to prevent things like git hooks from running Closes #5777 --- pkgs/tools/package-management/nix-prefetch-scripts/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix index 84439136d49..07cbd99a10b 100644 --- a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix +++ b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix @@ -17,6 +17,7 @@ stdenv.mkDerivation { wrapArgs="$wrapArgs --prefix PATH : $dep/bin" done wrapArgs="$wrapArgs --prefix PATH : ${gnused}/bin" + wrapArgs="$wrapArgs --set HOME : /homeless-shelter" wrapProgram $out/bin/$name $wrapArgs } From f9a5ad039becc021110db09f8f5daeee400dc907 Mon Sep 17 00:00:00 2001 From: Eduard Bachmakov Date: Wed, 14 Jan 2015 20:20:22 -0500 Subject: [PATCH 043/185] Add package pshs-0.2.5 Announcement blog post: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/ --- pkgs/servers/http/pshs/default.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/servers/http/pshs/default.nix diff --git a/pkgs/servers/http/pshs/default.nix b/pkgs/servers/http/pshs/default.nix new file mode 100644 index 00000000000..2977aa819fd --- /dev/null +++ b/pkgs/servers/http/pshs/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl, pkgconfig, libevent, file, qrencode }: + +let + version = "0.2.5"; +in stdenv.mkDerivation { + name = "pshs-${version}"; + + src = fetchurl { + url = "https://www.bitbucket.org/mgorny/pshs/downloads/pshs-${version}.tar.bz2"; + sha256 = "1lbybww9b74a9ssrii15w6qby0d66j367kara7kmfhakpv8jsvyh"; + }; + + buildInputs = [ pkgconfig libevent file qrencode ]; + + # TODO: enable ssl once dependencies + # (libssl libcrypto libevent >= 2.1 libevent_openssl) can be met + configureFlags = "--disable-ssl"; + + meta = { + description = "Pretty small HTTP server - a command-line tool to share files"; + homepage = "https://bitbucket.org/mgorny/pshs/"; + license = stdenv.lib.licenses.bsd3; + maintainers = [ stdenv.lib.maintainers.eduarrrd ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d0cb0c8901c..8d8b18627a6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7837,6 +7837,8 @@ let postfix = postfix211; + pshs = callPackage ../servers/http/pshs { }; + pulseaudio = callPackage ../servers/pulseaudio { gconf = gnome.GConf; # The following are disabled in the default build, because if this From dda7ea5dd8d491194899b3b288057201a06fa43c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 14 Jan 2015 07:24:50 +0100 Subject: [PATCH 044/185] Python: jedi: update 0.8.0-final0 -> 0.8.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 47160cb6be1..38d9a2a67cd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5080,11 +5080,11 @@ let }; jedi = buildPythonPackage (rec { - name = "jedi-0.8.0-final0"; + name = "jedi-0.8.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/j/jedi/${name}.tar.gz"; - sha256 = "0jnhwh0b1hy5cssi3n5a4j7z9pgpcckyv5s52ba4jnq5bwgdpbcf"; + sha256 = "1a7bg159mc1la5p1zsblzpr9hmypa7nz0mpvf7dww57cgi2sw8sd"; }; meta = { From 3aaec79aedac6318870852dad9e74f829dc31c6c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 14 Jan 2015 07:09:47 +0100 Subject: [PATCH 045/185] Python: click: upgrade 2.1 -> 3.3 (!) --- pkgs/top-level/python-packages.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 47160cb6be1..7e421e14b77 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1465,21 +1465,26 @@ let }; }; + click = buildPythonPackage rec { + name = "click-3.3"; - click = buildPythonPackage { - name = "click-2.1"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/c/click/click-2.1.tar.gz; - md5 = "0ba97ba09af82c56e2d35f3412d0aa6e"; + url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz"; + sha256 = "1rfn8ml80rw3hkgpm1an5p3vdyhh7hzx4zynr8dhfl7bsw28r77p"; }; - meta = { - homepage = "http://click.pocoo.org/"; - description = "A Python package for creating beautiful command line interfaces in a composable way with as little code as necessary"; - license = stdenv.lib.licenses.bsd3; + + meta = with stdenv.lib; { + homepage = http://click.pocoo.org/; + description = "Create beautiful command line interfaces in Python"; + longDescription = '' + A Python package for creating beautiful command line interfaces in a + composable way, with as little code as necessary. + ''; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ nckx ]; }; }; - clepy = buildPythonPackage rec { name = "clepy-0.3.20"; From e8b14bd78399244a7563df8bb3f5fc603b3fde20 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 14 Jan 2015 14:28:28 +0100 Subject: [PATCH 046/185] hackage-packages.nix: update from Hackage 2015-01-14T14:28:46+0100 --- pkgs/development/haskell-modules/hackage-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index fdcc32bf3b0..32a6f259db6 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -69583,8 +69583,8 @@ self: { }: mkDerivation { pname = "lambdacms-core"; - version = "0.0.7.2"; - sha256 = "1b7x43bpi6nz8ff3dj4kj23zzzxb94kja7pyr3lzxmfjxbmgr3y6"; + version = "0.0.7.3"; + sha256 = "1a5i0jvqsvi0jvz1v3mvj6ip1fxi6000fzw4jl7qb87b0y3cggxm"; buildDepends = [ base blaze-html bytestring containers data-default esqueleto file-embed friendly-time gravatar lists mime-mail old-locale @@ -69602,8 +69602,8 @@ self: { }: mkDerivation { pname = "lambdacms-media"; - version = "0.0.1"; - sha256 = "1ga1k86h2azccq90216hx47xf4qh0wjp9wfvzdm8232dcb0d28y5"; + version = "0.0.2"; + sha256 = "1cbgbkj22pj1nv6k5vcqzfwc2wrdkhr3966pl13d99jj7sfb5jw5"; buildDepends = [ base directory filepath lambdacms-core persistent shakespeare text time yesod yesod-form From 841b829fcd941fbbbf8c5c98233e3ea4e6af5fff Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 14 Jan 2015 15:38:28 +0100 Subject: [PATCH 047/185] haskell-ng: bump cabal2nix to latest Git version --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3ae1e0d9d29..f219c785ee2 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -166,8 +166,8 @@ self: super: { version = "2.0"; src = pkgs.fetchgit { url = "git://github.com/NixOS/cabal2nix.git"; - sha256 = "b9dde970f8e64fd5faff9402f5788ee832874d7584a67210f59f2c5e504ce631"; - rev = "6398667f4ad670eb3aa3334044a65a06971494d0"; + rev = "2a1a10f38f21f27e6555b399db131380af1cf7ff"; + sha256 = "51c96e5a089396c34bfa27e76778743161504e04d6220b2bb7e0fbcde80430fa"; }; isLibrary = false; isExecutable = true; From 5bb103b4b261a3eca3d014fd651abe0ce37c6986 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 14 Jan 2015 16:02:51 +0100 Subject: [PATCH 048/185] haskell-vector: fix test suite on i686 --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f219c785ee2..9aa3ad849c7 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -158,6 +158,9 @@ self: super: { ]; })); + # https://github.com/haskell/vector/issues/47 + vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector; + } // { # Not on Hackage yet. From ee158bf659700a94363c444d7fb977dec58fc6fa Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 14 Jan 2015 21:27:06 +0100 Subject: [PATCH 049/185] Cabal-1.18.x: remove unnecessary jailbreak --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9aa3ad849c7..3243f2b1b06 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -5,7 +5,7 @@ with import ./lib.nix { inherit pkgs; }; self: super: { # Some packages need a non-core version of Cabal. - Cabal_1_18_1_6 = doJailbreak (dontCheck super.Cabal_1_18_1_6); + Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6; Cabal_1_20_0_3 = doJailbreak (dontCheck super.Cabal_1_20_0_3); Cabal_1_22_0_0 = dontCheck super.Cabal_1_22_0_0; cabal-install = dontCheck (super.cabal-install.override { Cabal = self.Cabal_1_22_0_0; }); From 02caf57ceefff6c3890208782bcdae864d393175 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 14 Jan 2015 21:27:30 +0100 Subject: [PATCH 050/185] jailbreak-cabal: build with Cabal 1.18.x on GHC 7.6.x --- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index 55d2395cdcb..78ee237fd8d 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -42,4 +42,8 @@ self: super: { # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; + + # Needs Cabal >= 1.18.x. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + } From 0e6fd630a4296eb57c375e5461030350fdfef2b8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 15 Jan 2015 00:18:34 +0100 Subject: [PATCH 051/185] hackage-packages.nix: drop hard-coded configureFlags and add automatic jailbreaks The new version of hackage2nix adds an automatic jailbreak=true attribute to all builds that are known to fail because of unsatisfied dependency version constraints. Of course, hackage2nix is only able to detect these problems for the default package set -- "haskellngPackages" -- that's built with GHC 7.8.4. It cannot know problems that might arise if you build a package with a different version of GHC, which comes with different versions of the core libraries. This change "fixed" 806 builds: http://hydra.cryp.to/eval/85620. Please pay attention to possible jailbreaks when reporting build errors upstream! If a build was run with jailbreaking enabled, the build log says | Running jailbreak-cabal to lift version restrictions on build inputs. at the very top. Upstream bug reports about build errors should contain that information, i.e. the package author should know that you're building with different (newer!) library versions than they're specifying. Furthermore, build expressions no longer contain an explicit list of every Cabal flag setting. Instead, we trust that Cabal figures out an appropriate configuration at build time. This makes the build expressions more space to adapt to different configuration at the cost of being slightly less deterministic. --- .../haskell-modules/hackage-packages.nix | 3551 ++++++++++------- 1 file changed, 2105 insertions(+), 1446 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 32a6f259db6..628133d9f62 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -13,6 +13,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base GLUT OpenGL random ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/3d-graphics-examples"; description = "Examples of 3D graphics programming with OpenGL"; license = stdenv.lib.licenses.bsd3; @@ -25,6 +26,7 @@ self: { version = "0.3.0"; sha256 = "00pp8g1b59950i5ik9ycimxd284vsv1hnfgxgg1mjvxwaj2pbyhr"; buildDepends = [ attoparsec base bytestring linear packer ]; + jailbreak = true; homepage = "https://github.com/capsjac/3dmodels"; description = "3D model parsers"; license = stdenv.lib.licenses.gpl3; @@ -39,6 +41,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cairo containers gtk haskell98 mtl ]; + jailbreak = true; homepage = "http://lambdacolyte.wordpress.com/2009/08/06/tetris-in-haskell/"; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = stdenv.lib.licenses.bsd3; @@ -178,6 +181,7 @@ self: { version = "1.1.2"; sha256 = "044kiwc5g2irky0k3fg9l2qqnvcnh9vdx0yz8m1awnkab6mk0i3v"; buildDepends = [ base ghc-prim ]; + jailbreak = true; description = "Immutable arrays with plain integer indicies"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -251,6 +255,7 @@ self: { base containers criterion deepseq directory QuickCheck random test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://code.google.com/p/aern/"; description = "foundational type classes for approximating exact real numbers"; license = stdenv.lib.licenses.bsd3; @@ -267,6 +272,7 @@ self: { buildDepends = [ AERN-Real AERN-RnToRm base binary containers html stm time ]; + jailbreak = true; homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "Compositional lazy dataflow networks for exact real number computation"; license = stdenv.lib.licenses.bsd3; @@ -284,6 +290,7 @@ self: { AERN-Basics base criterion QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -304,6 +311,7 @@ self: { AERN-Basics AERN-Real AERN-Real-Interval base criterion ieee-utils QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -321,6 +329,7 @@ self: { AERN-Basics AERN-Real base deepseq QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -338,6 +347,7 @@ self: { AERN-Real base binary containers directory filepath html QuickCheck time ]; + jailbreak = true; homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = stdenv.lib.licenses.bsd3; @@ -356,6 +366,7 @@ self: { AERN-Real AERN-RnToRm base binary containers directory filepath glade glib gtk gtkglext mtl OpenGL stm time ]; + jailbreak = true; homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "GL plotting of polynomial function enclosures (PFEs)"; license = stdenv.lib.licenses.bsd3; @@ -384,7 +395,6 @@ self: { version = "1.3"; sha256 = "1h0hcdvdjs635inq96fpyh2g3d482ilpqn474vk1xkycww0xgsnv"; buildDepends = [ base mtl network parsec random syb unix ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://src.seereason.com/haskell-agi"; description = "A library for writing AGI scripts for Asterisk"; license = stdenv.lib.licenses.bsd3; @@ -398,7 +408,6 @@ self: { sha256 = "02kfyb4g7sfjfzqlddxqbjffrj4a0gfrzkisdpbj2lw67j1gq5dp"; buildDepends = [ base OpenAL OpenGL ]; extraLibraries = [ freealut ]; - configureFlags = [ "-fusenativewindowslibraries" ]; homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding for the OpenAL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; @@ -443,7 +452,6 @@ self: { buildDepends = [ base containers HUnit mtl NewBinary old-time pretty QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://www.haskell.org/asn1"; description = "ASN.1 support for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -508,6 +516,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "http://github.com/gcross/AbortT-transformers"; description = "A monad and monadic transformer providing \"abort\" functionality"; license = stdenv.lib.licenses.bsd3; @@ -528,6 +537,7 @@ self: { template-haskell ]; testDepends = [ base hspec ]; + jailbreak = true; homepage = "https://github.com/egonSchiele/actionkid"; description = "An easy-to-use video game framework for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -568,6 +578,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base haskell98 mtl ]; + jailbreak = true; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -584,6 +595,7 @@ self: { aeson attoparsec base bson unordered-containers vector ]; testDepends = [ aeson base bson hspec HUnit text ]; + jailbreak = true; homepage = "https://github.com/nh2/AesonBson"; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; @@ -600,6 +612,7 @@ self: { buildDepends = [ base containers mtl QuickCheck tagged template-haskell ]; + jailbreak = true; description = "Generator-generator for QuickCheck"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -626,7 +639,7 @@ self: { unordered-containers xhtml zlib ]; buildTools = [ alex cpphs emacs happy ]; - configureFlags = [ "-f-epic" "-fcpphs" ]; + jailbreak = true; postInstall = '' $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) $out/bin/agda-mode compile @@ -645,6 +658,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ Agda base ]; + jailbreak = true; homepage = "http://wiki.portal.chalmers.se/agda/"; description = "Command-line program for type-checking and compiling Agda programs"; license = "unknown"; @@ -695,7 +709,6 @@ self: { base containers enummapset-th filepath LambdaHack template-haskell text ]; - configureFlags = [ "-frelease" ]; homepage = "http://allureofthestars.com"; description = "Near-future Sci-Fi roguelike and tactical squad game"; license = "AGPL"; @@ -716,6 +729,7 @@ self: { base bytestring cmdtheline containers mtl network opml pretty process QuickCheck split transformers xml ]; + jailbreak = true; description = "Android view hierarchy importer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -739,6 +753,7 @@ self: { version = "0.2"; sha256 = "0i6qicmvz1jryv4zkdcpclfwxg20yvwgx6vhf46mxjzs3kw1a6z3"; buildDepends = [ base mtl multirec parsec ]; + jailbreak = true; description = "Constructing, analyzing and destructing annotated trees"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -826,6 +841,7 @@ self: { base bytestring containers QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://bitbucket.org/FlorianHartwig/attobencode"; description = "Fast Bencode encoding and parsing library"; license = stdenv.lib.licenses.bsd3; @@ -857,6 +873,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base colour GLUT OpenGL random ]; + jailbreak = true; homepage = "http://patch-tag.com/r/rhz/StrangeAttractors"; description = "Visualisation of Strange Attractors in 3-Dimensions"; license = stdenv.lib.licenses.bsd3; @@ -961,6 +978,7 @@ self: { sha256 = "0mgxq8zqyfmwkvn91y91c2vjhrni3br0vgiih2ynlafnas1ji0bc"; editedCabalFile = "654cbc7a4109bf3baaa2491f10a7f49d1831008129d4d5ef9e0e558a5a374098"; buildDepends = [ base cairo containers mtl ]; + jailbreak = true; homepage = "http://pageperso.lif.univ-mrs.fr/~pierre-etienne.meunier/Baggins"; description = "Tools for self-assembly"; license = stdenv.lib.licenses.gpl3; @@ -1012,6 +1030,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base mtl random ]; + jailbreak = true; homepage = "http://coder.bsimmons.name/blog/2010/05/befunge-93-interpreter-on-hackage"; description = "An interpreter for the Befunge-93 Programming Language"; license = stdenv.lib.licenses.bsd3; @@ -1053,6 +1072,7 @@ self: { version = "0.1.0.0"; sha256 = "14wjpfr9d8fpgl1jkpm2123lprr3hf3a6smkaflzkgxqlgcrkmyr"; buildDepends = [ base besout ]; + jailbreak = true; description = "Factorization of polynomials over finite field"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -1099,6 +1119,7 @@ self: { ParsecTools primitive PrimitiveArray split tuple utility-ht vector vector-read-instances zlib ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Base library for bioinformatics"; license = stdenv.lib.licenses.gpl3; @@ -1139,6 +1160,7 @@ self: { buildDepends = [ base BiobaseXNA bytestring containers filemanip iteratee tuple ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Importer for FR3D resources"; license = stdenv.lib.licenses.gpl3; @@ -1157,6 +1179,7 @@ self: { buildDepends = [ base biocore bytestring cmdargs conduit containers transformers ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "conduit-based FASTA parser"; license = stdenv.lib.licenses.gpl3; @@ -1177,6 +1200,7 @@ self: { bytestring-lexing conduit containers either-unwrap lens primitive PrimitiveArray repa transformers tuple vector ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Infernal data structures and tools"; license = stdenv.lib.licenses.gpl3; @@ -1208,6 +1232,7 @@ self: { base BiobaseDotP BiobaseFR3D BiobaseXNA bytestring cmdargs either-unwrap iteratee vector ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "RNA folding training data"; license = stdenv.lib.licenses.gpl3; @@ -1238,6 +1263,7 @@ self: { version = "0.0.2.2"; sha256 = "03h7a95njbsl67bbg7wfxjjlibsqhkm62f04hhv6s14cgrvh0b3g"; buildDepends = [ base primitive vector ]; + jailbreak = true; description = "(deprecated) Ring class, with several instances"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -1287,6 +1313,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base haskell98 ]; + jailbreak = true; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; }) {}; @@ -1375,6 +1402,7 @@ self: { hscolour lens mtl pandoc pandoc-citeproc pandoc-types parsec process split strict temporary transformers utf8-string ]; + jailbreak = true; homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; @@ -1406,7 +1434,6 @@ self: { version = "0.1"; sha256 = "0ryjgi70isgfv3nw3djzvb1saky40xqy536h6sr3mfpy2iqnim0c"; buildDepends = [ base mtl ]; - configureFlags = [ "-f-blaze" "-f-hsx" ]; homepage = "http://git.ierton.ru/?p=BluePrint.git;a=summary"; description = "Html document layout library"; license = stdenv.lib.licenses.bsd3; @@ -1477,7 +1504,7 @@ self: { base haskell-src-exts haskell-src-meta mtl parsec syb template-haskell ]; - configureFlags = [ "-fnewth" "-fbase4" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Bravo"; description = "Static text template generation library"; license = stdenv.lib.licenses.bsd3; @@ -1503,6 +1530,7 @@ self: { base bytestring errors hslogger hspec hspec-expectations http-conduit http-types string-qq temporary unix yaml ]; + jailbreak = true; homepage = "http://github.com/michaelxavier/Buster"; description = "Hits a set of urls periodically to bust caches"; license = stdenv.lib.licenses.mit; @@ -1661,6 +1689,7 @@ self: { buildDepends = [ array base BiobaseInfernal BiobaseXNA cmdargs containers lens ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/software/cmcompare/"; description = "Infernal covariance model comparison"; license = stdenv.lib.licenses.gpl3; @@ -1716,7 +1745,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base containers mtl parsec readline ]; - configureFlags = [ "-fhaskeline" "-freadline" ]; description = "An interpreter of Hagino's Categorical Programming Language (CPL)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -1744,7 +1772,6 @@ self: { base containers CSPM-CoreLanguage mtl parallel-tree-search tree-monad ]; - configureFlags = [ "-f-quickcheck" ]; description = "Firing rules semantic of CSPM"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -1857,7 +1884,7 @@ self: { opencv_flann opencv_gpu opencv_highgui opencv_imgproc opencv_legacy opencv_ml opencv_objdetect opencv_video ]; - configureFlags = [ "-f-opencv24" "-fopencv23" ]; + jailbreak = true; homepage = "http://aleator.github.com/CV/"; description = "OpenCV based machine vision library"; license = "GPL"; @@ -1911,6 +1938,7 @@ self: { process QuickCheck regex-posix test-framework test-framework-hunit test-framework-quickcheck2 unix ]; + jailbreak = true; preCheck = "unset GHC_PACKAGE_PATH; export HOME=$NIX_BUILD_TOP"; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; @@ -1956,6 +1984,7 @@ self: { buildDepends = [ base bytestring directory filepath HDBC HDBC-sqlite3 process unix ]; + jailbreak = true; homepage = "http://github.com/brinchj/cabalsearch"; description = "Search cabal packages by name"; license = stdenv.lib.licenses.bsd3; @@ -1968,6 +1997,7 @@ self: { version = "0.1.0.0"; sha256 = "0nd5yvhbxmabs0890y9gjjiq37h8c3blpplv2m13k29zkijwad04"; buildDepends = [ base compdata directory free unix ]; + jailbreak = true; homepage = "https://github.com/Icelandjack/Capabilities"; description = "Separate and contain effects of IO monad"; license = stdenv.lib.licenses.bsd3; @@ -2018,6 +2048,7 @@ self: { version = "0.1.0.0"; sha256 = "1ih8ydc29axckgidc5xvsdac5558gprscw667msh8qh41j9sshng"; buildDepends = [ base comonad ghc-prim mtl void ]; + jailbreak = true; homepage = "http://github.com/rampion/Cascade"; description = "Playing with reified categorical composition"; license = stdenv.lib.licenses.publicDomain; @@ -2046,6 +2077,7 @@ self: { array base colour data-default-class lens mtl old-locale operational time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; @@ -2063,6 +2095,7 @@ self: { array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; @@ -2083,6 +2116,7 @@ self: { data-default-class diagrams-core diagrams-lib diagrams-postscript diagrams-svg lens mtl old-locale operational SVGFonts text time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; @@ -2157,6 +2191,7 @@ self: { version = "0.0.0.2"; sha256 = "1mr323rhh3lr6a5ni60n2kxz2k57763a3rrf7c6i18hxs9d4w2s4"; buildDepends = [ base text ]; + jailbreak = true; description = "Inbuilt checking for ultra reliable computing"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2186,6 +2221,7 @@ self: { buildDepends = [ base containers fgl template-haskell TTTAS uulib ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/TTTAS"; description = "Alternative approach of 'read' that composes grammars instead of parsers"; license = "LGPL"; @@ -2198,6 +2234,7 @@ self: { version = "0.3.1.0"; sha256 = "1277vn384hpxd7xnzg0gpr7ilnw5cqhsi11c24g9zsfqa36llwgk"; buildDepends = [ base ChasingBottoms mtl QuickCheck ]; + jailbreak = true; homepage = "http://wiki.portal.chalmers.se/cse/pmwiki.php/FP/ClassLaws"; description = "Stating and checking laws for type class methods"; license = stdenv.lib.licenses.bsd3; @@ -2221,6 +2258,7 @@ self: { version = "0.6"; sha256 = "0kr9i13ch2wbcnxchrnx562r8ar7kb84gmk3cqxc40x5w416205f"; buildDepends = [ base containers ]; + jailbreak = true; description = "A light, clean and powerful utility library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2263,6 +2301,7 @@ self: { array base bytestring bytestring-csv containers directory fgl filepath mtl old-time pretty pureMD5 safe utf8-string ]; + jailbreak = true; homepage = "http://iki.fi/matti.niemenmaa/coadjute/"; description = "A generic build tool"; license = stdenv.lib.licenses.bsd3; @@ -2312,7 +2351,6 @@ self: { random-shuffle stm test-framework test-framework-hunit test-framework-quickcheck2 time ]; - configureFlags = [ "-f-threadscope" "-f-debug" ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2324,7 +2362,6 @@ self: { version = "0.0.7"; sha256 = "043dwvjkc1m2cz0rgiib7gv19ds1vn4cmf27lyw68nmc0lcm2v3d"; buildDepends = [ base directory process ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/command"; description = "A replacement for System.Exit and System.Process"; license = stdenv.lib.licenses.bsd3; @@ -2344,6 +2381,7 @@ self: { base data-default fsnotify optparse-applicative process system-fileio system-filepath text ]; + jailbreak = true; homepage = "https://github.com/sordina/Commando"; description = "Watch some files; Rerun a command"; license = stdenv.lib.licenses.mit; @@ -2395,6 +2433,7 @@ self: { testDepends = [ base binary Cabal containers glider-nlp HUnit text ]; + jailbreak = true; homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; @@ -2409,7 +2448,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers MissingH mtl parsec ]; - configureFlags = [ "-f-buildtests" ]; homepage = "http://software.complete.org/configfile"; description = "Configuration file reading & writing"; license = stdenv.lib.licenses.bsd3; @@ -2444,6 +2482,7 @@ self: { version = "0.1.0.0"; sha256 = "1if0hff6fn7zjj1vh16gxf2kldibh1dkscm8n33d1admvpjpw9sb"; buildDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/tel/Configurable"; description = "Declare types as Configurable then specialize them all in one place"; license = stdenv.lib.licenses.mit; @@ -2470,6 +2509,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base process ]; + jailbreak = true; homepage = "https://github.com/sordina/Conscript"; description = "Restart a command on STDIN activity"; license = stdenv.lib.licenses.mit; @@ -2482,6 +2522,7 @@ self: { version = "1.3.0"; sha256 = "0rhy5wq3v5hdryjn8pcsgqy4k772agj1rgq3021pjki7n3zm3dza"; buildDepends = [ base dlist ghc-prim vector ]; + jailbreak = true; description = "Repackages standard type classes with the ConstraintKinds extension"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2505,6 +2546,7 @@ self: { version = "0.0.5"; sha256 = "1paj8wx2k86i5xb11scbyca4fb2fnxgln5d661mcwxvs0i91jj1b"; buildDepends = [ arrows base ]; + jailbreak = true; description = "Control.Arrow.Transformer.Cont"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2577,7 +2619,6 @@ self: { version = "0.0.2"; sha256 = "1wiwk4947h5x2swi9k6bh4zyhp849ibxhc5458kn5vipngrp4k78"; buildDepends = [ base parsec pretty ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://github.com/amtal/CoreErlang"; description = "Manipulating Core Erlang source code"; license = stdenv.lib.licenses.bsd3; @@ -2597,6 +2638,7 @@ self: { tagged text time transformers vector ]; buildTools = [ c2hs ]; + jailbreak = true; homepage = "https://github.com/reinerp/CoreFoundation"; description = "Bindings to Mac OSX's CoreFoundation framework"; license = stdenv.lib.licenses.bsd3; @@ -2627,6 +2669,7 @@ self: { testDepends = [ base bytestring containers HTTP HUnit json mtl network utf8-string ]; + jailbreak = true; homepage = "http://github.com/arjunguha/haskell-couchdb/"; description = "CouchDB interface"; license = stdenv.lib.licenses.bsd3; @@ -2655,7 +2698,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base HUnit pretty QuickCheck random ]; - configureFlags = [ "-fsmall_base" ]; description = "Collects together existing Haskell cryptographic functions into a package"; license = "unknown"; }) {}; @@ -2726,7 +2768,6 @@ self: { network network-uri optparse-applicative transformers transformers-base utf8-string xml-conduit xml-hamlet ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://floss.scru.org/hDAV"; description = "RFC 4918 WebDAV support"; license = stdenv.lib.licenses.gpl3; @@ -2741,6 +2782,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers parsec ]; + jailbreak = true; homepage = "http://projects.haskell.org/DBlimited/"; description = "A command-line SQL interface for flat files (tdf,csv,etc.)"; license = stdenv.lib.licenses.bsd3; @@ -2774,9 +2816,7 @@ self: { distributed-process-simplelocalnet hint MuCheck network-transport-tcp unix ]; - configureFlags = [ - "-f-hspec" "-f-hunit" "-f-smallcheck" "-f-quickcheck" - ]; + jailbreak = true; homepage = "https://bitbucket.com/osu-testing/d-mucheck"; description = "Distributed Mutation Analysis framework for MuCheck"; license = stdenv.lib.licenses.gpl2; @@ -2789,6 +2829,7 @@ self: { version = "2.0.1"; sha256 = "13zj4jg78y5s05gfi3j83izxw6d2csbvznd7mq900zlv4xwddw2b"; buildDepends = [ base mtl WebBits ]; + jailbreak = true; description = "DOM Level 2 bindings for the WebBits package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2804,6 +2845,7 @@ self: { buildDepends = [ array base containers list-tries mtl QuickCheck safe semiring ]; + jailbreak = true; homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Pragmatic framework for dynamic programming"; license = stdenv.lib.licenses.bsd3; @@ -2827,7 +2869,7 @@ self: { regex-posix split syb time unix ]; buildTools = [ alex happy ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; description = "Darcs Patch Manager"; license = "GPL"; }) {}; @@ -2851,7 +2893,6 @@ self: { crypto-api-tests cryptohash-cryptoapi entropy HUnit mtl parallel prettyclass QuickCheck tagged test-framework test-framework-hunit ]; - configureFlags = [ "-f-test" ]; description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2878,7 +2919,6 @@ self: { base containers HDBC HDBC-postgresql HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; - configureFlags = [ "-f-debuggraph" "-f-debugcomp" ]; description = "Database Supported Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -2953,6 +2993,7 @@ self: { version = "0.1"; sha256 = "02nqaphxd3xlh191wxpx3rcixms70v8d6h4a3lxg24d7lcyf82n3"; buildDepends = [ base HaXml mtl parsec safe xml-parsec ]; + jailbreak = true; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; }) {}; @@ -2968,7 +3009,6 @@ self: { buildDepends = [ base bytestring digest utf8-string vector vector-algorithms ]; - configureFlags = [ "-fsplitbase" ]; homepage = "https://github.com/bradclawsie/haskell-Data.Hash.Consistent"; description = "Provide a simple consistent hashing mechanism"; license = stdenv.lib.licenses.bsd3; @@ -3105,7 +3145,6 @@ self: { version = "0.0.4"; sha256 = "0ywipcmnr3ysmx8m61yrymyn10lnizjfkk2q2scdfkrkgh7ayj7v"; buildDepends = [ base containers xmonad xmonad-contrib ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://bitbucket.org/dibblego/descriptive-keys/"; description = "A library for specifying xmonad key bindings with functionality"; license = stdenv.lib.licenses.bsd3; @@ -3134,7 +3173,6 @@ self: { version = "0.3.0"; sha256 = "0k7fj4icnh25x21cmrnbqq0sjgxrr2ffhn8bz89qmy5h9dznvy98"; buildDepends = [ array base pretty ]; - configureFlags = [ "-fsmall-base" ]; description = "O(ND) diff algorithm in haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -3146,6 +3184,7 @@ self: { version = "0.1.0.4"; sha256 = "0ylpn6bksf6alxzk45cg88ff8xgffh88x3csvjlhb6zn8ik0w99a"; buildDepends = [ base containers fgl FirstOrderTheory HUnit ]; + jailbreak = true; homepage = "https://github.com/dillonhuff/DifferenceLogic"; description = "A theory solver for conjunctions of literals in difference logic"; license = stdenv.lib.licenses.bsd3; @@ -3162,6 +3201,7 @@ self: { buildDepends = [ base deepseq fclabels mtl mwc-random parallel primitive vector ]; + jailbreak = true; homepage = "http://yousource.it.jyu.fi/optimization-with-haskell"; description = "Global optimization using Differential Evolution"; license = stdenv.lib.licenses.mit; @@ -3179,7 +3219,6 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/digit"; description = "A data-type representing digits 0-9"; license = stdenv.lib.licenses.bsd3; @@ -3222,7 +3261,6 @@ self: { sha256 = "1x78y1na375nwgk4izsjprj3yrg0xbrhqv6nrzfbvbfdyqlf5kyz"; buildDepends = [ base Win32 ]; extraLibraries = [ dsound ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Partial binding to the Microsoft DirectSound API"; license = stdenv.lib.licenses.bsd3; @@ -3258,6 +3296,7 @@ self: { sha256 = "0iqcv3b06r9sqj1adxfq08vq5mlq4b7z88c2cw4qa7l9xw2p2js3"; buildDepends = [ base blaze-html blaze-markup html parsers ]; testDepends = [ base doctest ]; + jailbreak = true; homepage = "https://github.com/minamiyama1994/DiscussionSupportSystem"; description = "Discussion support system"; license = stdenv.lib.licenses.gpl3; @@ -3272,6 +3311,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://github.com/zcourts/Dish"; description = "Hash modules (currently Murmur3)"; license = stdenv.lib.licenses.bsd3; @@ -3340,6 +3380,7 @@ self: { buildDepends = [ base containers ghc ghc-paths haddock HUnit process ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/DocTest"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; @@ -3371,7 +3412,7 @@ self: { array base containers haskell-src-exts mtl pointless-haskell pretty syb ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://haskell.di.uminho.pt/wiki/DrHylo"; description = "A tool for deriving hylomorphisms"; license = stdenv.lib.licenses.bsd3; @@ -3637,6 +3678,7 @@ self: { buildDepends = [ base monad-control transformers transformers-base ]; + jailbreak = true; description = "EitherT monad transformer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -3670,6 +3712,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text transformers union-find unordered-containers ]; + jailbreak = true; homepage = "http://elm-lang.org"; description = "The Elm language module"; license = stdenv.lib.licenses.bsd3; @@ -3710,6 +3753,7 @@ self: { version = "0.1"; sha256 = "14ckpgaviny3c0d1jn3blkkpri0cm8ac264y7kak965knjccq0k8"; buildDepends = [ base containers deepseq ]; + jailbreak = true; description = "Simple Enum-class-based int containers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -3721,6 +3765,7 @@ self: { version = "0.0.2"; sha256 = "1v3jp1l95kybvdlpvp6bd0ryihxrvlnpkqz7fl1n4vazhkqk6zjz"; buildDepends = [ base containers ]; + jailbreak = true; description = "More general IntMap replacement"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -3739,7 +3784,7 @@ self: { array base containers filepath HaXml mtl parsec template-haskell transformers ]; - configureFlags = [ "-foptimize" "-f-staticlinking" "-f-debug" ]; + jailbreak = true; description = "Render math formula in ASCII, and perform some simplifications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -3751,6 +3796,7 @@ self: { version = "0.1.0.2"; sha256 = "0ynzzl9mmn5hxkcndx60lnxn455nm065v7nk7rhpq1yigwz0cl1g"; buildDepends = [ base containers HUnit mtl union-find-array ]; + jailbreak = true; description = "A theory solver for conjunctions of literals in the theory of uninterpreted functions with equality"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -3770,7 +3816,7 @@ self: { base base-unicode-symbols bindings-EsounD monad-control network regions safer-file-handles storablevector transformers unix ]; - configureFlags = [ "-f-build-examples" ]; + jailbreak = true; homepage = "http://cielonegro.org/EsounD.html"; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; @@ -3793,7 +3839,6 @@ self: { unordered-containers vector ]; extraLibraries = [ pcre ]; - configureFlags = [ "-f-llvm" ]; homepage = "https://github.com/verement/etamoo"; description = "A new implementation of the LambdaMOO server"; license = stdenv.lib.licenses.bsd3; @@ -3828,6 +3873,7 @@ self: { buildDepends = [ array base containers deepseq Etage fgl mtl parallel random time ]; + jailbreak = true; homepage = "http://mitar.tnode.com"; description = "Data-flow based graph algorithms"; license = stdenv.lib.licenses.gpl3; @@ -3891,6 +3937,7 @@ self: { syb template-haskell UISF ]; testDepends = [ ansi-terminal base Cabal QuickCheck ]; + jailbreak = true; homepage = "http://haskell.cs.yale.edu/"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; @@ -3926,7 +3973,6 @@ self: { network-uri old-locale old-time pretty process pureMD5 QuickCheck random regex-compat time unix Unixutils zlib ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/ddssff/haskell-extra"; description = "A grab bag of modules"; license = stdenv.lib.licenses.bsd3; @@ -3948,7 +3994,7 @@ self: { instant-generics ListLike midi mtl QuickCheck random template-haskell time uu-parsinglib ]; - configureFlags = [ "-fquickcheck2" ]; + jailbreak = true; description = "Compose music"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -4049,6 +4095,7 @@ self: { buildDepends = [ AC-Angle base containers digits QuickCheck template-haskell ]; + jailbreak = true; description = "A collection of facts about the real world"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4141,7 +4188,6 @@ self: { buildDepends = [ base bytestring directory extensible-exceptions filepath mtl unix ]; - configureFlags = [ "-fsplitbase" ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4157,7 +4203,6 @@ self: { buildDepends = [ base bytestring directory filepath mtl unix-compat ]; - configureFlags = [ "-fsplitbase" ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4174,7 +4219,6 @@ self: { base comonad comonad-transformers data-lens directory filepath mtl transformers ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/filepather"; description = "Functions on System.FilePath"; license = stdenv.lib.licenses.bsd3; @@ -4191,6 +4235,7 @@ self: { buildDepends = [ base binary bytestring directory filepath mtl old-time ]; + jailbreak = true; homepage = "http://ddiaz.asofilak.es/packages/FileSystem"; description = "File system data structure and monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -4224,7 +4269,6 @@ self: { base containers HTTP HTTP-Simple hxt hxt-filter network old-locale time ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.ecoin.net/haskell/Finance-Treasury.html"; description = "Obtain Treasury yield curve data"; license = stdenv.lib.licenses.bsd3; @@ -4260,6 +4304,7 @@ self: { version = "0.1.0.6"; sha256 = "1941ickx8aj3qbkry4gz8ni6snh26gkdrgabpx9z588518q4x27i"; buildDepends = [ base containers Proper ]; + jailbreak = true; description = "Grammar and typeclass for first order theories"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4361,6 +4406,7 @@ self: { version = "0.1.0.1"; sha256 = "1qw4qyfpax8y3pmb0sx717a294aamjb2mgvqhrkbqx2yi5d8jl66"; buildDepends = [ base monad-control mtl resourcet ]; + jailbreak = true; homepage = "https://github.com/exFalso/ForkableT/"; description = "Forkable monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -4423,7 +4469,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base freetype2 OpenGL ]; - configureFlags = [ "-f-examples" "-f-use_font_config" ]; + jailbreak = true; description = "Loadable texture fonts for OpenGL"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4437,6 +4483,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base GLUT OpenGL random ]; + jailbreak = true; homepage = "http://joyful.com/fungen"; description = "A lightweight, cross-platform, OpenGL/GLUT-based game engine"; license = stdenv.lib.licenses.bsd3; @@ -4480,7 +4527,6 @@ self: { version = "0.0.4"; sha256 = "0ab6dngl8gjkj8wvjvrjijgqb59aq88c1ra2z92iqky2d0plrfca"; buildDepends = [ array base process ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.cs.kent.ac.uk/people/staff/cr3/toolbox/haskell/GHood"; description = "A graphical viewer for Hood"; license = stdenv.lib.licenses.bsd3; @@ -4494,7 +4540,6 @@ self: { sha256 = "0yqvfkg9p5h5bv3ak6b89am9kan9lbcq26kg1wk53xl6mz1aaijf"; buildDepends = [ base OpenGL ]; extraLibraries = [ libX11 mesa ]; - configureFlags = [ "-f-dynamic" ]; homepage = "http://haskell.org/haskellwiki/GLFW"; description = "A Haskell binding for GLFW"; license = stdenv.lib.licenses.bsd3; @@ -4541,6 +4586,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base GLFW-b mtl OpenGL pretty stm transformers ]; + jailbreak = true; description = "GLFW-b demo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4577,6 +4623,7 @@ self: { version = "0.1.0.1"; sha256 = "13n80rplyl73ahk8cxgvs9gf655l063sd55spx0zvhw774vvxwv4"; buildDepends = [ base OpenGLRaw ]; + jailbreak = true; homepage = "https://github.com/fiendfan1/GLMatrix"; description = "Utilities for working with OpenGL matrices"; license = stdenv.lib.licenses.gpl3; @@ -4590,7 +4637,6 @@ self: { sha256 = "10sy0zag1wfrrq137azv3xazcgs21zb6bp84xzh518qbhiiycjhg"; buildDepends = [ base OpenGLRaw ]; extraLibraries = [ freeglut mesa ]; - configureFlags = [ "-fusenativewindowslibraries" ]; homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; @@ -4606,7 +4652,6 @@ self: { sha256 = "1j298vs4wly29d972w106l0ra44gsbpjwrrjhk3qm5ql25i12pvh"; buildDepends = [ array base containers OpenGL OpenGLRaw ]; extraLibraries = [ freeglut libICE libSM libXi libXmu mesa ]; - configureFlags = [ "-fusenativewindowslibraries" ]; homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; @@ -4644,7 +4689,7 @@ self: { base comonad comonad-transformers containers data-lens hxt newtype xsd ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "https://github.com/tonymorris/geo-gpx"; description = "Parse GPX files"; license = stdenv.lib.licenses.bsd3; @@ -4662,6 +4707,7 @@ self: { base Boolean containers GLUT list-tries OpenGL transformers Vec Vec-Boolean ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "A functional graphics API for programmable GPUs"; license = stdenv.lib.licenses.bsd3; @@ -4674,6 +4720,7 @@ self: { version = "0.1.4"; sha256 = "0aqvyv50gx0qx7icp70pw73gr3p6y05dkn347nqx82jc9dyxjghw"; buildDepends = [ array base containers GPipe HaXml mtl Vec ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe meshes from Collada files"; license = stdenv.lib.licenses.bsd3; @@ -4720,6 +4767,7 @@ self: { base containers deepseq parallel template-haskell ]; testDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://bitbucket.org/emoto/gtalib"; description = "A library for GTA programming"; license = stdenv.lib.licenses.bsd3; @@ -4740,6 +4788,7 @@ self: { filepath GLFW-b ListZipper mtl OpenGLRaw parsec pretty-show StateVar time unordered-containers utility-ht Vec zlib ]; + jailbreak = true; description = "Some kind of game library or set of utilities"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4757,6 +4806,7 @@ self: { buildDepends = [ base containers directory filepath mtl parsec transformers ]; + jailbreak = true; homepage = "https://github.com/BMeph/Ganymede"; description = "An Io interpreter in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -4782,6 +4832,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base directory random wx wxcore ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GeBoP"; description = "Several games"; license = stdenv.lib.licenses.bsd3; @@ -4811,7 +4862,7 @@ self: { test-framework-quickcheck2 test-framework-smallcheck text transformers ]; - configureFlags = [ "-f-static" ]; + jailbreak = true; homepage = "http://projects.haskell.org/GenI"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; @@ -4877,7 +4928,6 @@ self: { version = "0.4"; sha256 = "1nb0q5hs9qqgygw35rbvanbjf9l6vjxrl6l4jp9dqwlnl1kdd88q"; buildDepends = [ base ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.google.com/p/geodetic/"; description = "Geodetic calculations"; license = stdenv.lib.licenses.bsd3; @@ -4912,6 +4962,7 @@ self: { version = "0.0.1"; sha256 = "0ykvsjqpi7pd81857n2gqycgpnm0j8dxnpf345h7pgzrkz10qi9f"; buildDepends = [ base text ]; + jailbreak = true; description = "A Haskell implementation of a Generalized Search Tree (GiST)"; license = "GPL"; }) {}; @@ -5126,7 +5177,6 @@ self: { version = "1.0.4"; sha256 = "1wbcx3wb02adb7l4nchxla3laliz0h5q074vfw4z0ic833k977bq"; buildDepends = [ array base containers ]; - configureFlags = [ "-f-use-maps" ]; description = "Tarjan's algorithm for computing the strongly connected components of a graph"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5144,6 +5194,7 @@ self: { array base bktrees containers directory fgl filepath graphviz old-locale pandoc process random text time ]; + jailbreak = true; description = "Graph-Theoretic Analysis library"; license = "unknown"; }) {}; @@ -5159,7 +5210,6 @@ self: { buildDepends = [ array base containers mtl QuickCheck template-haskell th-lift ]; - configureFlags = [ "-ftest" ]; description = "Embedded grammar DSL and LALR parser generator"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5171,6 +5221,7 @@ self: { version = "0.5"; sha256 = "1a43iig84bvmgpjmk6lqzhm3fq5p5hac36icwj4yfyrvzyfn0x7m"; buildDepends = [ base mtl parsec QuickCheck ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GroteTrap"; description = "Parser and selection library for expression languages"; license = stdenv.lib.licenses.bsd3; @@ -5192,6 +5243,7 @@ self: { definitive-filesystem definitive-parser definitive-reactive directory filepath old-locale primitive process time unix vector ]; + jailbreak = true; homepage = "http://coiffier.net/projects/grow.html"; description = "A declarative make-like interpreter"; license = "unknown"; @@ -5311,7 +5363,7 @@ self: { base binary bytestring containers HAppS-Util HaXml mtl pretty syb syb-with-class template-haskell ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; description = "HAppS data manipulation libraries"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5328,7 +5380,6 @@ self: { base containers HAppS-Data HAppS-State HAppS-Util hslogger mtl syb syb-with-class template-haskell ]; - configureFlags = [ "-fbase4" ]; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5348,7 +5399,7 @@ self: { old-locale old-time parsec process random syb template-haskell unix xhtml ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5368,7 +5419,7 @@ self: { HAppS-Util HaXml hslogger hspread mtl network old-locale old-time random stm syb template-haskell unix ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5385,7 +5436,6 @@ self: { array base bytestring directory hslogger mtl old-time process template-haskell ]; - configureFlags = [ "-fbase4" ]; description = "Web framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5409,6 +5459,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers mtl QuickCheck random ]; + jailbreak = true; homepage = "http://github.com/m4dc4p/hcl/tree/master"; description = "High-level library for building command line interfaces"; license = stdenv.lib.licenses.bsd3; @@ -5453,7 +5504,6 @@ self: { base bytestring containers convertible mtl old-locale old-time text time utf8-string ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; homepage = "https://github.com/hdbc/hdbc"; description = "Haskell Database Connectivity"; license = stdenv.lib.licenses.bsd3; @@ -5483,7 +5533,6 @@ self: { isExecutable = true; buildDepends = [ base bytestring HDBC mtl time utf8-string ]; extraLibraries = [ unixODBC ]; - configureFlags = [ "-f-buildstresstest" "-f-buildtests" ]; homepage = "https://github.com/hdbc/hdbc-odbc"; description = "ODBC driver for HDBC"; license = stdenv.lib.licenses.bsd3; @@ -5504,7 +5553,6 @@ self: { time utf8-string ]; extraLibraries = [ postgresql ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; homepage = "http://github.com/hdbc/hdbc-postgresql"; description = "PostgreSQL driver for HDBC"; license = stdenv.lib.licenses.bsd3; @@ -5517,6 +5565,7 @@ self: { version = "0.0.1.2"; sha256 = "0657a1qy51bihh9gvpwpqpm4gch68rw32plnjcfdbc37yjq5dj1d"; buildDepends = [ attoparsec base containers HDBC text ]; + jailbreak = true; homepage = "https://bitbucket.org/dpwiz/hdbc-postgresql-hstore"; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = stdenv.lib.licenses.mit; @@ -5545,7 +5594,6 @@ self: { isExecutable = true; buildDepends = [ base bytestring HDBC mtl utf8-string ]; extraLibraries = [ sqlite ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; homepage = "http://software.complete.org/hdbc-sqlite3"; description = "Sqlite v3 driver for HDBC"; license = stdenv.lib.licenses.bsd3; @@ -5561,6 +5609,7 @@ self: { sha256 = "0rkykxmqpqiclvxlvfd0v9rrvkkb25shyajdmajxisfqxl684y0g"; buildDepends = [ array base colour containers mtl unix ]; extraLibraries = [ pfstools ]; + jailbreak = true; homepage = "http://vis.renci.org/jeff/pfs"; description = "Utilities for reading, manipulating, and writing HDR images"; license = stdenv.lib.licenses.bsd3; @@ -5587,7 +5636,6 @@ self: { isExecutable = true; buildDepends = [ base bytestring unix ]; extraLibraries = [ fuse ]; - configureFlags = [ "-f-developer" ]; preConfigure = '' sed -i -e "s@ Extra-Lib-Dirs: /usr/local/lib@ Extra-Lib-Dirs: ${fuse}/lib@" HFuse.cabal ''; @@ -5603,7 +5651,6 @@ self: { version = "3.2.0.5"; sha256 = "0z8dfxg2x530lawx7gyv9d25wcfpwvbfmknq17d5wgkxz47j95wb"; buildDepends = [ array base X11 ]; - configureFlags = [ "-fsplit-base" ]; description = "A simple graphics library based on X11 or Win32"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5638,6 +5685,7 @@ self: { base haskell98 HGamer3D-Data HGamer3D-Ogre-Binding HGamer3D-SFML-Binding ]; + jailbreak = true; homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; @@ -5680,6 +5728,7 @@ self: { sha256 = "1q69ffhnnh4iaghb1g8s6bqlsry7jy5sbp5vpg4lprnr4wna5ya1"; buildDepends = [ base haskell98 HGamer3D-Data ]; extraLibraries = [ HGamer3DCAudio015 ]; + jailbreak = true; homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; @@ -5758,6 +5807,7 @@ self: { buildDepends = [ base HGamer3D-CEGUI-Binding HGamer3D-Data HGamer3D-WinEvent split ]; + jailbreak = true; homepage = "http://www.hgamer3d.org"; description = "GUI Functionality for HGamer3D"; license = "unknown"; @@ -5828,6 +5878,7 @@ self: { base haskell98 HGamer3D-Data HGamer3D-Ogre-Binding ]; extraLibraries = [ HGamer3DOIS015 ]; + jailbreak = true; homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; @@ -5896,6 +5947,7 @@ self: { version = "0.4.0"; sha256 = "0d3vjlgpzzb473dmhllxvi05lnh010vgfdbizlj4yxywrp6aas9a"; buildDepends = [ base HGamer3D-Data HGamer3D-SDL2-Binding text ]; + jailbreak = true; homepage = "http://www.hgamer3d.org"; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; @@ -5914,6 +5966,7 @@ self: { base containers HGamer3D HGamer3D-Audio HGamer3D-Data HGamer3D-GUI HGamer3D-InputSystem HGamer3D-WinEvent mtl netwire transformers ]; + jailbreak = true; homepage = "http://www.hgamer3d.org"; description = "Wire Functionality for HGamer3D"; license = "unknown"; @@ -5926,6 +5979,7 @@ self: { version = "0.1.0.0"; sha256 = "1215nz6l3bbkld2fqqsc494xw4qw4vqavznaqxgja2p60w9mwg0q"; buildDepends = [ base containers mtl template-haskell ]; + jailbreak = true; homepage = "http://thesz.mskhug.ru/svn/hhdl/hackage/hhdl/"; description = "Hardware Description Language embedded in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -5990,6 +6044,7 @@ self: { base ConstraintKinds containers deepseq hashable MonadRandom parallel random template-haskell vector vector-heterogenous ]; + jailbreak = true; homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Algebraic foundation for homomorphic learning"; license = stdenv.lib.licenses.bsd3; @@ -6028,6 +6083,7 @@ self: { math-functions MonadRandom normaldistribution parsec primitive QuickCheck statistics vector vector-th-unbox ]; + jailbreak = true; homepage = "http://github.com/mikeizbicki/HLearn/"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -6110,6 +6166,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base old-locale time ]; + jailbreak = true; homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; @@ -6213,6 +6270,7 @@ self: { base Cabal containers directory filepath haskell-src-exts mtl parsec utf8-string ]; + jailbreak = true; homepage = "http://github.com/solidsnack/HPath"; description = "Extract Haskell declarations by name"; license = stdenv.lib.licenses.bsd3; @@ -6225,6 +6283,7 @@ self: { version = "0.4.0"; sha256 = "0d0r89a92lavbaf6svkqwd7fvc1q4kwbdvr0jvxarx2xgrhl342a"; buildDepends = [ base bytestring ]; + jailbreak = true; homepage = "https://github.com/WJWH/HPi"; description = "GPIO and I2C functions for the Raspberry Pi"; license = stdenv.lib.licenses.bsd3; @@ -6241,6 +6300,7 @@ self: { buildDepends = [ base glade glib gtk ]; buildTools = [ c2hs ]; pkgconfigDepends = [ plplotd-gnome2 ]; + jailbreak = true; homepage = "http://yakov.cc/HPlot.html"; description = "A minimal monadic PLplot interface for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -6369,6 +6429,7 @@ self: { buildDepends = [ array base Cabal containers directory filepath parsec process unix ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/HSFFIG"; description = "Generate FFI import declarations from C include files"; license = stdenv.lib.licenses.bsd3; @@ -6408,7 +6469,6 @@ self: { base bytestring directory filepath hslogger MissingH mtl process regex-base regex-compat regex-posix unix ]; - configureFlags = [ "-f-buildtests" ]; homepage = "http://software.complete.org/hsh"; description = "Library to mix shell scripting with Haskell programs"; license = "LGPL"; @@ -6427,6 +6487,7 @@ self: { base bytestring DebugTraceHelpers directory filepath HSH HStringTemplateHelpers MissingH mtl regex-pcre unix ]; + jailbreak = true; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; }) {}; @@ -6438,6 +6499,7 @@ self: { version = "2.2"; sha256 = "17n1kpva97lwhwg2vs7875bfqlwcq6xpl2agqc53qb7j4153p559"; buildDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/j4/HSlippyMap"; description = "OpenStreetMap Slippy Map"; license = stdenv.lib.licenses.bsd3; @@ -6456,6 +6518,7 @@ self: { unordered-containers vector ]; testDepends = [ aeson attoparsec base HTF text ]; + jailbreak = true; homepage = "https://github.com/agrafix/HSmarty"; description = "Small template engine"; license = stdenv.lib.licenses.bsd3; @@ -6472,7 +6535,6 @@ self: { buildDepends = [ base binary bytestring filepath haskell98 mtl parallel ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://mml.music.utexas.edu/jwlato/HSoundFile"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; @@ -6511,6 +6573,7 @@ self: { filepath mtl parsec pretty syb template-haskell text time utf8-string void ]; + jailbreak = true; description = "StringTemplate implementation in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -6527,7 +6590,6 @@ self: { base containers directory FileManipCompat filepath HSH HStringTemplate mtl safe strict ]; - configureFlags = [ "-fbase4" ]; homepage = "http://patch-tag.com/tphyahoo/r/tphyahoo/HStringTemplateHelpers"; description = "Convenience functions and instances for HStringTemplate"; license = "GPL"; @@ -6591,10 +6653,6 @@ self: { http-types httpd-shed HUnit mtl network network-uri pureMD5 split test-framework test-framework-hunit wai warp ]; - configureFlags = [ - "-fnetwork-uri" "-fwarp-tests" "-f-conduit10" "-f-network23" - "-f-warn-as-error" "-f-mtl1" - ]; homepage = "https://github.com/haskell/HTTP"; description = "A library for client-side HTTP"; license = stdenv.lib.licenses.bsd3; @@ -6625,7 +6683,6 @@ self: { buildDepends = [ base cmdargs containers deepseq hylolib mtl strict ]; - configureFlags = [ "-f-static" ]; homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; @@ -6653,7 +6710,6 @@ self: { version = "1.2.5.2"; sha256 = "0hcs6qh8bqhip1kkjjnw7ccgcsmawdz5yvffjj5y8zd2vcsavx8a"; buildDepends = [ base deepseq ]; - configureFlags = [ "-fbase4" ]; homepage = "http://hunit.sourceforge.net/"; description = "A unit testing framework for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -6666,6 +6722,7 @@ self: { version = "0.1"; sha256 = "0dlsx6qicnrqkhb52jbgh31f0y6lxh32yl5gr6bg3fnqr36vc6x6"; buildDepends = [ ansi-terminal base Diff groom HUnit ]; + jailbreak = true; homepage = "https://github.com/dag/HUnit-Diff"; description = "Assertions for HUnit with difference reporting"; license = stdenv.lib.licenses.bsd3; @@ -6723,6 +6780,7 @@ self: { network pureMD5 random regex-posix text transformers utf8-string xml-enumerator xml-types ]; + jailbreak = true; homepage = "http://www.pontarius.org/sub-projects/hxmpp/"; description = "A (prototyped) easy to use XMPP library"; license = stdenv.lib.licenses.bsd3; @@ -6740,7 +6798,6 @@ self: { array base haskeline haskell98 HTTP mtl regex-base regex-compat template-haskell ]; - configureFlags = [ "-f-base3" "-f-sqlite" "-f-mysql" ]; homepage = "http://lambda.uta.edu/HXQ/"; description = "A Compiler from XQuery to Haskell"; license = stdenv.lib.licenses.bsd3; @@ -6767,6 +6824,7 @@ self: { version = "0.1.0.0"; sha256 = "0q7fq5z0wrk2qg9n715033yp25dpl73g6iqkbvxbg2ahp9caq458"; buildDepends = [ base bytestring serialport stm ]; + jailbreak = true; homepage = "https://github.com/Zigazou/HaMinitel"; description = "An Haskell library to drive the french Minitel through a serial port"; license = stdenv.lib.licenses.gpl3; @@ -6779,6 +6837,7 @@ self: { version = "0.1.1.0"; sha256 = "1gxxhyidcn3lcvmbjby364cypk6xmmsv5qdd0m16d06688cl9mq7"; buildDepends = [ base template-haskell th-lift ]; + jailbreak = true; homepage = "https://github.com/sakana/HaPy"; description = "Haskell bindings for Python"; license = stdenv.lib.licenses.mit; @@ -6811,6 +6870,7 @@ self: { rosezipper semigroups silently Strafunski-StrategyLib stringbuilder syb syz time transformers ]; + jailbreak = true; homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; license = stdenv.lib.licenses.bsd3; @@ -6849,6 +6909,7 @@ self: { base Cabal containers directory filepath ghc haddock haskell-src-exts mtl parsec ]; + jailbreak = true; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -6867,6 +6928,7 @@ self: { base HUnit logict QuickCheck test-framework test-framework-hunit test-framework-quickcheck ]; + jailbreak = true; description = "An implementation of the Version Space Algebra learning framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -6885,7 +6947,6 @@ self: { base bytestring containers directory filepath polyparse pretty random ]; - configureFlags = [ "-f-bytestringinbase" "-fsplitbase" ]; homepage = "http://projects.haskell.org/HaXml/"; description = "Utilities for manipulating XML documents"; license = "LGPL"; @@ -6972,7 +7033,6 @@ self: { parsec transformers ]; testDepends = [ base hspec hxt ]; - configureFlags = [ "-f-buildexamples" "-fnetwork-uri" ]; homepage = "https://github.com/egonSchiele/HandsomeSoup"; description = "Work with HTML more easily in HXT"; license = stdenv.lib.licenses.bsd3; @@ -6996,6 +7056,7 @@ self: { ListLike mtl parallel parseargs process sox template-haskell uu-parsinglib vector ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/HarmTrace"; description = "Harmony Analysis and Retrieval of Music"; license = stdenv.lib.licenses.gpl3; @@ -7015,6 +7076,7 @@ self: { testDepends = [ base binary containers ghc-prim ListLike QuickCheck uu-parsinglib ]; + jailbreak = true; homepage = "https://bitbucket.org/bash/harmtrace-base"; description = "Parsing and unambiguously representing musical chords"; license = stdenv.lib.licenses.gpl3; @@ -7031,6 +7093,7 @@ self: { buildDepends = [ base haskell98 hmatrix hmatrix-special mtl parsec random ]; + jailbreak = true; homepage = "http://www.cl.cam.ac.uk/~sbh11/HasGP"; description = "A Haskell library for inference using Gaussian processes"; license = stdenv.lib.licenses.gpl3; @@ -7049,6 +7112,7 @@ self: { buildDepends = [ array base list-tries monad-loops mtl numbers parsec ]; + jailbreak = true; homepage = "http://iki.fi/matti.niemenmaa/misc-projects.html#haschoo"; description = "Minimalist R5RS Scheme interpreter"; license = stdenv.lib.licenses.bsd3; @@ -7068,6 +7132,7 @@ self: { base directory ghc haskell98 parsec process readline regex-compat unix ]; + jailbreak = true; description = "Simple shell written in Haskell"; license = "GPL"; }) {}; @@ -7134,7 +7199,6 @@ self: { buildDepends = [ base bytestring connection data-default HaskellNet network tls ]; - configureFlags = [ "-f-noupperbounds" ]; homepage = "https://github.com/dpwright/HaskellNet-SSL"; description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; license = stdenv.lib.licenses.bsd3; @@ -7158,7 +7222,6 @@ self: { random-shuffle test-framework test-framework-hunit test-framework-quickcheck2 time ]; - configureFlags = [ "-f-threadscope" "-f-debug" ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -7172,6 +7235,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cmdargs text ]; + jailbreak = true; homepage = "https://github.com/mrLSD/HaskellTutorials"; description = "Haskell Tutorials by Evgeny Ukhanov"; license = stdenv.lib.licenses.mit; @@ -7190,6 +7254,7 @@ self: { buildDepends = [ base containers HGL hmatrix MonadRandom random Yampa ]; + jailbreak = true; homepage = "http://www.matthewhayden.co.uk"; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = stdenv.lib.licenses.bsd3; @@ -7212,6 +7277,7 @@ self: { hslogger hslogger-template HTTP hxt json-b MonadCatchIO-mtl mtl network regex-posix SHA template-haskell time utf8-string ]; + jailbreak = true; description = "Haskell Web Application Kit"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -7238,7 +7304,7 @@ self: { MonadCatchIO-transformers mtl network old-time parsec process snap snap-core snap-server tar text transformers xhtml-combinators zlib ]; - configureFlags = [ "-f-hashedindex" "-fhayoosnap4" ]; + jailbreak = true; homepage = "http://holumbus.fh-wedel.de"; description = "The Hayoo! search engine for Haskell API search on hackage"; license = stdenv.lib.licenses.mit; @@ -7288,6 +7354,7 @@ self: { old-time random random-shuffle RSA SHA2 stm syb time transformers unamb yjtools ]; + jailbreak = true; description = "Message-based middleware layer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -7305,6 +7372,7 @@ self: { array base buster bytestring cairo colour containers glib GLUT gtk gtkglext IfElse mtl OpenGL parallel pretty random ]; + jailbreak = true; homepage = "http://vis.renci.org/jeff/hieroglyph"; description = "Purely functional 2D graphics for visualization"; license = stdenv.lib.licenses.bsd3; @@ -7334,9 +7402,6 @@ self: { version = "5.2.0.16"; sha256 = "0jnidzky0004xh1yzkcg41df21vbvqhk075d183jv6iwjiljsh3s"; buildDepends = [ array base containers StateVar transformers ]; - configureFlags = [ - "-f-system-chipmunk" "-f-debug" "-fsmall_base" - ]; homepage = "https://github.com/meteficha/Hipmunk"; description = "A Haskell binding for Chipmunk"; license = "unknown"; @@ -7355,7 +7420,7 @@ self: { buildDepends = [ base containers GLFW Hipmunk OpenGL StateVar transformers ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "https://github.com/meteficha/HipmunkPlayground"; description = "A playground for testing Hipmunk"; license = "unknown"; @@ -7397,7 +7462,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base template-haskell ]; - configureFlags = [ "-f-buildexamples" ]; homepage = "http://maartenfaddegon.nl/pub"; description = "Debug anything without recompiling everything!"; license = stdenv.lib.licenses.bsd3; @@ -7525,6 +7589,7 @@ self: { unix-bytestring unordered-containers ]; testDepends = [ base process random ]; + jailbreak = true; description = "A Simple Key Value Store"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -7538,6 +7603,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers ]; + jailbreak = true; homepage = "http://github.com/Raynes/Hricket"; description = "A Cricket scoring application"; license = stdenv.lib.licenses.bsd3; @@ -7561,6 +7627,7 @@ self: { ]; testDepends = [ base directory filepath process ]; buildTools = [ cpphs ]; + jailbreak = true; homepage = "http://blog.zhox.com/category/hs2lib/"; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = stdenv.lib.licenses.bsd3; @@ -7601,6 +7668,7 @@ self: { base base-unicode-symbols bytestring network text ]; pkgconfigDepends = [ hyperestraier qdbm ]; + jailbreak = true; homepage = "http://cielonegro.org/HsHyperEstraier.html"; description = "HyperEstraier binding for Haskell"; license = stdenv.lib.licenses.publicDomain; @@ -7634,7 +7702,6 @@ self: { base bytestring HUnit test-framework test-framework-hunit ]; extraLibraries = [ openssl ]; - configureFlags = [ "-ffast-bignum" ]; homepage = "https://github.com/phonohawk/HsOpenSSL"; description = "Partial OpenSSL binding for Haskell"; license = stdenv.lib.licenses.publicDomain; @@ -7731,6 +7798,7 @@ self: { buildDepends = [ base containers parsec pretty process smtLib transformers ]; + jailbreak = true; homepage = "https://github.com/MfesGA/Hsmtlib"; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = stdenv.lib.licenses.bsd3; @@ -7773,6 +7841,7 @@ self: { version = "0.1"; sha256 = "1p4h2hxwzp0bxkzh864vkqbwychi0j2c3rqck9vk5kfax5i1jfz8"; buildDepends = [ base containers directory ]; + jailbreak = true; description = "Indexable, serializable form of Data.Dynamic"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -7786,7 +7855,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base bytestring containers random ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.alpheccar.org"; description = "Iterated Function System generation for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -7806,7 +7874,6 @@ self: { base containers directory haskell98 HaXml polyparse pretty process wx wxcore ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://haskell.di.uminho.pt/jmvilaca/INblobs/"; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; @@ -7875,6 +7942,7 @@ self: { version = "0.1.2"; sha256 = "0ryb2q5xfddcx2qg019jajac7xvaw2ci5wi094gbrqhhflj7wc8n"; buildDepends = [ array base GlomeVec ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/IcoGrid"; description = "Library for generating grids of hexagons and pentagons mapped to a sphere"; license = "GPL"; @@ -8028,7 +8096,6 @@ self: { aeson attoparsec base bytestring bytestring-trie containers failure hjson json JSONb parsec text vector ]; - configureFlags = [ "-fsmall_base" ]; description = "A combinator library on top of a generalised JSON type"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8040,7 +8107,6 @@ self: { version = "0.0.1"; sha256 = "1s5grfgnklnwh55yn5mlg2ibdm7mx2i7hwqs7649gkapda054ywg"; buildDepends = [ base bytestring json JSON-Combinator JSONb ]; - configureFlags = [ "-fsmall_base" ]; description = "Example uses of the JSON-Combinator library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8059,7 +8125,6 @@ self: { attoparsec base bytestring bytestring-nums bytestring-trie containers utf8-string ]; - configureFlags = [ "-f-cli" ]; homepage = "http://github.com/solidsnack/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; @@ -8080,6 +8145,7 @@ self: { lazysmallcheck mtl mwc-random parallel process QuickCheck random stm template-haskell unix zlib ]; + jailbreak = true; description = "Some utility functions for JYU projects"; license = stdenv.lib.licenses.mit; }) {}; @@ -8106,7 +8172,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base binary bytestring language-java-classfile ]; - configureFlags = [ "-fsmall_base" ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8120,7 +8185,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-fsmall_base" ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8139,6 +8203,7 @@ self: { base containers directory filepath mtl parsec pretty syb WebBits WebBits-Html ]; + jailbreak = true; homepage = "http://www.cs.brown.edu/research/plt/"; description = "Design-by-contract for JavaScript"; license = stdenv.lib.licenses.bsd3; @@ -8163,6 +8228,7 @@ self: { aeson base HUnit language-typescript stack-prism test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "https://github.com/MedeaMelana/JsonGrammar2"; description = "Combinators for bidirectional JSON parsing"; license = stdenv.lib.licenses.bsd3; @@ -8180,7 +8246,6 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; - configureFlags = [ "-f-mmap" ]; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -8233,6 +8298,7 @@ self: { aeson base binary bytestring conduit data-default directory filepath mtl network resourcet ]; + jailbreak = true; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8247,6 +8313,7 @@ self: { buildDepends = [ base bytestring conduit directory filepath JunkDB mtl resourcet ]; + jailbreak = true; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8261,6 +8328,7 @@ self: { buildDepends = [ base bytestring conduit hashable hashtables JunkDB mtl resourcet ]; + jailbreak = true; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8314,6 +8382,7 @@ self: { buildDepends = [ base base64-bytestring bytestring directory mime-types network text ]; + jailbreak = true; homepage = "https://github.com/Hamcha/Ketchup"; description = "A super small web framework for those who don't like big and fancy codebases"; license = stdenv.lib.licenses.mit; @@ -8354,6 +8423,7 @@ self: { base containers curry-base directory filepath haskell-src haskell98 KiCS KiCS-prophecy mtl readline syb ]; + jailbreak = true; homepage = "http://curry-language.org"; description = "debug features for kics"; license = "unknown"; @@ -8368,6 +8438,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base filepath KiCS ]; + jailbreak = true; homepage = "http://curry-language.org"; description = "a transformation used by the kics debugger"; license = "unknown"; @@ -8391,6 +8462,7 @@ self: { version = "0.1.0.0"; sha256 = "113jxbaw8b17j91aakxli3r3zdvnx3gvf2m57sx5d7mfk2qx28r6"; buildDepends = [ base containers parsec ]; + jailbreak = true; homepage = "http://www.gkayaalp.com/p/konf.html"; description = "A configuration language and a parser"; license = "unknown"; @@ -8424,7 +8496,7 @@ self: { buildDepends = [ base cairo containers gtk mtl old-time parsec random ]; - configureFlags = [ "-frenderercairo" "-f-webtools" "-f-database" ]; + jailbreak = true; homepage = "http://www.entropia.de/wiki/L-seed"; description = "Plant growing programming game"; license = stdenv.lib.licenses.bsd3; @@ -8440,7 +8512,6 @@ self: { isExecutable = true; buildDepends = [ base ]; extraLibraries = [ lber ldap ]; - configureFlags = [ "-f-buildtests" ]; homepage = "https://github.com/ezyang/ldap-haskell"; description = "Haskell binding for C LDAP API"; license = stdenv.lib.licenses.bsd3; @@ -8515,9 +8586,6 @@ self: { vector-binary-instances zlib ]; pkgconfigDepends = [ gtk ]; - configureFlags = [ - "-frelease" "-f-expose_internal" "-f-curses" "-f-vty" - ]; homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; @@ -8553,6 +8621,7 @@ self: { buildDepends = [ base binary bytestring hmatrix random random-shuffle split ]; + jailbreak = true; description = "A configurable and extensible neural network library"; license = stdenv.lib.licenses.mit; }) {}; @@ -8607,6 +8676,7 @@ self: { version = "0.0.1"; sha256 = "0agq2593h5yb9r3jqnycis9fdizwij3and61ljc4prnhhyxv48g2"; buildDepends = [ base ]; + jailbreak = true; description = "A transfinite cardinal arithmetic library including all known large cardinals"; license = "unknown"; }) {}; @@ -8623,7 +8693,6 @@ self: { base bytestring containers directory filemanip filepath process pureMD5 SHA zip-archive ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.google.com/p/lastik"; description = "A library for compiling programs in a variety of languages"; license = stdenv.lib.licenses.bsd3; @@ -8655,6 +8724,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory filepath unix ]; + jailbreak = true; homepage = "https://github.com/AtticHacker/lazyvault"; description = "A simple sandboxing tool for Haskell packages"; license = stdenv.lib.licenses.gpl3; @@ -8669,6 +8739,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory random SDL SDL-ttf ]; + jailbreak = true; homepage = "http://quasimal.com/projects/level_0.html"; description = "A Snake II clone written using SDL"; license = stdenv.lib.licenses.gpl3; @@ -8846,9 +8917,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 test-framework-smallcheck time transformers uuid void ]; - configureFlags = [ - "-f-tutorial" "-f-examples" "-f-pattern-warnings" "-f-warnings" - ]; + jailbreak = true; description = "a parallel implementation of logic programming using distributed tree exploration"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8870,7 +8939,6 @@ self: { MonadCatchIO-transformers stm transformers ]; extraLibraries = [ mpi ]; - configureFlags = [ "-f-tests" "-f-examples" "-f-warnings" ]; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = stdenv.lib.licenses.bsd3; }) { mpi = null;}; @@ -8896,7 +8964,7 @@ self: { base hslogger hslogger-template HUnit LogicGrowsOnTrees network random stm test-framework test-framework-hunit transformers ]; - configureFlags = [ "-f-examples" "-f-warnings" ]; + jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8922,9 +8990,7 @@ self: { base cereal hslogger hslogger-template HUnit LogicGrowsOnTrees random test-framework test-framework-hunit transformers ]; - configureFlags = [ - "-f-examples" "-f-pattern-warnings" "-f-warnings" - ]; + jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -8945,6 +9011,7 @@ self: { mtl network old-time parsec pureMD5 random syb template-haskell utf8-string ]; + jailbreak = true; homepage = "http:/lslplus.sourceforge.net/"; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = stdenv.lib.licenses.bsd3; @@ -8966,7 +9033,7 @@ self: { directory filepath haskell-src HsOpenSSL hxt mtl network stm time time-http unix zlib ]; - configureFlags = [ "-fbuild-lucu-implant-file" ]; + jailbreak = true; homepage = "http://cielonegro.org/Lucu.html"; description = "HTTP Daemonic Library"; license = stdenv.lib.licenses.publicDomain; @@ -8985,7 +9052,6 @@ self: { buildDepends = [ base Biobase cmdargs PrimitiveArray split tuple vector ]; - configureFlags = [ "-f-fastbuild" ]; homepage = "http://www.tbi.univie.ac.at/software/mcfolddp/"; description = "Folding algorithm based on nucleotide cyclic motifs"; license = stdenv.lib.licenses.gpl3; @@ -9023,6 +9089,7 @@ self: { version = "0.3.0.0"; sha256 = "0nlj914ahipyfqv1l7qr66pa0a8g4g6ks6mipc38z5f1jy0kjrva"; buildDepends = [ base transformers ]; + jailbreak = true; homepage = "https://github.com/DanBurton/MHask#readme"; description = "The category of monads"; license = stdenv.lib.licenses.bsd3; @@ -9042,7 +9109,6 @@ self: { haskell-src html mtl network old-time pretty random syb template-haskell ]; - configureFlags = [ "-freadfile" "-fghc7" "-fghcapi" ]; homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; license = stdenv.lib.licenses.bsd3; @@ -9066,6 +9132,7 @@ self: { version = "0.2.0.1"; sha256 = "034v9n6ldjn1hsv4rphvysbykm8x0jqa2prbw7k28fkp6m30j74x"; buildDepends = [ base monads-tf transformers ]; + jailbreak = true; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9077,6 +9144,7 @@ self: { version = "0.2"; sha256 = "189w8dpxyq7gksca6k08hb4vpanpz06c99akgzpcpjy0i7k22ily"; buildDepends = [ base monads-fd transformers ]; + jailbreak = true; description = "MaybeT monad transformer using transformers instead of mtl"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9106,6 +9174,7 @@ self: { version = "0.1"; sha256 = "0rnbg7w3qc3xsbzpw5is7w7qdjl2kqbr1acc744aggwlibazl59w"; buildDepends = [ base vector ]; + jailbreak = true; description = "Mean shift algorithm"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9117,7 +9186,7 @@ self: { version = "0.0.2"; sha256 = "1vy8ykjy9cpv661byqv21775zbyciqx2hf77c1nl58nn34x0s2ds"; buildDepends = [ base ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; description = "A library for units of measurement"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9145,6 +9214,7 @@ self: { buildDepends = [ base convertible hashtables HDBC HDBC-odbc mtl template-haskell ]; + jailbreak = true; description = "Statically checked database access"; license = "LGPL"; }) {}; @@ -9186,7 +9256,7 @@ self: { base binary bytestring directory filepath haskell98 mtl old-locale process time ]; - configureFlags = [ "-f-warnings" "-f-test" ]; + jailbreak = true; description = "Haskell mailing list manager"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9205,6 +9275,7 @@ self: { array base containers haskell-src-exts mtl pretty ]; buildTools = [ alex happy ]; + jailbreak = true; homepage = "http://www.tcs.ifi.lmu.de/~abel/miniagda/"; description = "A toy dependently typed programming language with type-based termination"; license = "unknown"; @@ -9229,7 +9300,6 @@ self: { hslogger HUnit mtl network old-locale old-time parsec process QuickCheck random regex-compat testpack time unix ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://software.complete.org/missingh"; description = "Large utility library"; license = stdenv.lib.licenses.bsd3; @@ -9299,6 +9369,7 @@ self: { buildDepends = [ base extensible-exceptions MonadCatchIO-transformers ]; + jailbreak = true; homepage = "http://darcsden.com/jcpetruzza/MonadCatchIO-mtl"; description = "Monad-transformer version of the Control.Exception module"; license = stdenv.lib.licenses.bsd3; @@ -9311,6 +9382,7 @@ self: { version = "0.1"; sha256 = "0jfq5v1jigxl9mnnvpqph9ayq840s9nyb5srym04mbicri4gbjan"; buildDepends = [ base MonadCatchIO-mtl mtl primitive ]; + jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9341,6 +9413,7 @@ self: { buildDepends = [ base MonadCatchIO-transformers primitive transformers ]; + jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9554,7 +9627,6 @@ self: { version = "0.1"; sha256 = "169mgcyls0dsifnbp615r4i3g64ga2vbczsiv4aq17d1nma8sw19"; buildDepends = [ array base ]; - configureFlags = [ "-f-debug" "-fsplitbase" ]; description = "Munkres' assignment algorithm (hungarian method)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9585,6 +9657,7 @@ self: { http-types monad-control old-locale resourcet text time transformers vector xml-conduit xml-types ]; + jailbreak = true; homepage = "http://floss.scru.org/hMusicBrainz"; description = "interface to MusicBrainz XML2 web service"; license = stdenv.lib.licenses.gpl3; @@ -9627,6 +9700,7 @@ self: { arithmoi base bytestring containers crypto-api polynomial random SHA split ]; + jailbreak = true; description = "NTRU Cryptography"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9683,6 +9757,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers ListLike uu-parsinglib ]; + jailbreak = true; description = "Very small interpreter for a Prolog-like language"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -9712,9 +9787,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring QuickCheck strict ]; - configureFlags = [ - "-f-coverage" "-f-test" "-f-no-lib" "-f-driver" "-f-base3" - ]; homepage = "http://github.com/joachifm/natsort"; description = "Natural sorting for strings"; license = stdenv.lib.licenses.bsd3; @@ -9755,6 +9827,7 @@ self: { buildDepends = [ base bytestring utf8-string ]; testDepends = [ base bytestring HUnit process utf8-string ]; extraLibraries = [ netsnmp ]; + jailbreak = true; homepage = "https://github.com/ptek/netsnmp"; description = "Bindings for net-snmp's C API for clients"; license = stdenv.lib.licenses.bsd3; @@ -9775,6 +9848,7 @@ self: { base binary bytestring containers convertible monad-loops mstate mtl network NineP regex-posix stateref transformers ]; + jailbreak = true; description = "High-level abstraction over 9P protocol"; license = "unknown"; }) {}; @@ -9786,6 +9860,7 @@ self: { version = "0.2.1"; sha256 = "0cp71hkx8cccx7jxf5qw1bxdylcc56v68mvjp0dn9hkh1idxplzq"; buildDepends = [ array base integer ]; + jailbreak = true; description = "A binary I/O library"; license = "unknown"; broken = true; @@ -9798,7 +9873,6 @@ self: { version = "0.0.2.1"; sha256 = "1k6qdp4zmqjl2f6cqy1zzzl6ncb2m9r0qgh4c24i2h5kkxmm3cab"; buildDepends = [ base binary bytestring ]; - configureFlags = [ "-f-bytestring-in-base" ]; homepage = "http://9ph.googlecode.com"; description = "9P2000 in pure Haskell"; license = stdenv.lib.licenses.bsd3; @@ -9818,6 +9892,7 @@ self: { base binary bytestring containers filepath gloss network networked-game random ]; + jailbreak = true; homepage = "http://github.com/glguy/ninjas"; description = "Ninja game"; license = stdenv.lib.licenses.bsd3; @@ -9838,9 +9913,7 @@ self: { array base containers criterion dph-base dph-prim-seq statistics storablevector template-haskell uvector vector ]; - configureFlags = [ - "-fstorablevector" "-fuvector" "-fvector" "-fdph-prim-seq" - ]; + jailbreak = true; homepage = "http://code.haskell.org/NoSlow"; description = "Microbenchmarks for various array libraries"; license = stdenv.lib.licenses.bsd3; @@ -9854,6 +9927,7 @@ self: { sha256 = "053w0j90sf16by9pqllgjxy6r57vzlq33fgwz4ywjn6bypw6009d"; buildDepends = [ base ]; testDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/CindyLinz/Haskell-NoTrace"; description = "Remove all the functions come from Debug.Trace after debugging"; license = stdenv.lib.licenses.mit; @@ -9885,6 +9959,7 @@ self: { base directory exceptions filepath hint-server mtl network Nomyx-Core Nomyx-Language Nomyx-Web safe stm time ]; + jailbreak = true; homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; @@ -9911,6 +9986,7 @@ self: { Nomyx-Language old-locale random safe safecopy stm tar template-haskell temporary text time unix ]; + jailbreak = true; homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; @@ -9930,6 +10006,7 @@ self: { DebugTraceHelpers ghc mtl old-locale random safe time time-recurrence ]; + jailbreak = true; homepage = "http://www.nomyx.net"; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; @@ -9970,6 +10047,7 @@ self: { reform-happstack safe split stm text time web-routes web-routes-happstack web-routes-regular web-routes-th ]; + jailbreak = true; homepage = "http://www.nomyx.net"; description = "Web gui for Nomyx"; license = stdenv.lib.licenses.bsd3; @@ -9998,7 +10076,6 @@ self: { base category-extras QuickCheck Semigroup test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.google.com/p/nonempty/"; description = "A list with a length of at least one"; license = stdenv.lib.licenses.bsd3; @@ -10023,7 +10100,6 @@ self: { version = "0.0.0.1"; sha256 = "17ca34hxaz9xk3ykkzp14n7wb31aiza12859k3rmvwhnq4j89jqs"; buildDepends = [ base binary bytestring ]; - configureFlags = [ "-fsmall_base" ]; description = "Num, Enum, Eq, Integral, Ord, Real, and Show instances for Lazy ByteStrings"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10065,6 +10141,7 @@ self: { buildDepends = [ ADPfusion base ghc-prim mtl primitive PrimitiveArray vector ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "Nussinov78 using the ADPfusion library"; license = stdenv.lib.licenses.gpl3; @@ -10077,6 +10154,7 @@ self: { version = "0.1"; sha256 = "1m7qx5zydz5jpk6a55k7rzchlwmkd91gsiqmn26qqn50ab3di35j"; buildDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/frosch03/Nutri"; description = "A little library to calculate nutrition values of food items"; license = stdenv.lib.licenses.publicDomain; @@ -10105,7 +10183,6 @@ self: { buildDepends = [ base comonad-transformers containers data-lens hxt newtype ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/geo-osm"; description = "Parse OpenStreetMap files"; license = stdenv.lib.licenses.bsd3; @@ -10178,6 +10255,7 @@ self: { base containers cuda language-c-quote mainland-pretty mtl mwc-random process rdtsc text value-supply vector ]; + jailbreak = true; homepage = "https://github.com/svenssonjoel/Obsidian"; description = "Embedded language for GPU Programming"; license = stdenv.lib.licenses.bsd3; @@ -10204,6 +10282,7 @@ self: { sha256 = "1c4xbfkikyn1jh3qz0ycxzmx0zqfg5gliafb764942dvd851hljv"; buildDepends = [ base ]; testDepends = [ base QuickCheck ]; + jailbreak = true; homepage = "http://www.gekkou.co.uk/"; description = "Provides a wrapper for deriving word types with fewer bits"; license = stdenv.lib.licenses.bsd3; @@ -10217,7 +10296,6 @@ self: { sha256 = "05dax2r7rrdbsvxszxn13xcf24zq87xq8scxzvl2ccr2y29n0f5j"; buildDepends = [ base containers ]; testDepends = [ base containers hsc2hs HUnit ]; - configureFlags = [ "-f-useinstalledomega" ]; description = "Integer sets and relations using Presburger arithmetic"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10278,7 +10356,6 @@ self: { sha256 = "0m29p6mm87lbx1507n9w4ara4l1xva8j42xjp0771ngx4sbphn2y"; buildDepends = [ base OpenGL ]; extraLibraries = [ openal ]; - configureFlags = [ "-fusenativewindowslibraries" ]; homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding to the OpenAL cross-platform 3D audio API"; license = stdenv.lib.licenses.bsd3; @@ -10294,6 +10371,7 @@ self: { testDepends = [ base QuickCheck ]; buildTools = [ c2hs ]; extraLibraries = [ OpenCL ]; + jailbreak = true; homepage = "https://github.com/IFCA/opencl"; description = "Haskell high-level wrapper for OpenCL"; license = stdenv.lib.licenses.bsd3; @@ -10306,6 +10384,7 @@ self: { version = "1.0.1001"; sha256 = "1a9nlrmxp3jwc3hbj79xm35aypfby04qy01fk4vyrp19diiinl07"; buildDepends = [ base bytestring mtl ]; + jailbreak = true; homepage = "http://vis.renci.org/jeff/opencl"; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = stdenv.lib.licenses.bsd3; @@ -10318,7 +10397,6 @@ self: { version = "0.1.0.3"; sha256 = "0xlm26jksp4jf1dhkpg4708r1ak5mjdc5x5fjp4fhizmzlk3348s"; buildDepends = [ base bytestring mtl ]; - configureFlags = [ "-f-link" ]; homepage = "https://github.com/jkarlson/OpenCLWrappers"; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = stdenv.lib.licenses.bsd3; @@ -10358,9 +10436,6 @@ self: { sha256 = "0hnsmijgvy04d02d0gwk4bl6imhlpwgdcsp1livvca59hzc7r8m3"; buildDepends = [ base ]; extraLibraries = [ mesa ]; - configureFlags = [ - "-fuseglxgetprocaddress" "-fusenativewindowslibraries" - ]; homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; @@ -10373,6 +10448,7 @@ self: { version = "1.2.0.1"; sha256 = "1v848qhjksiwc8617fif4dbvw40xfnz39fpkcsv52mkh66flnv9j"; buildDepends = [ OpenGLRaw ]; + jailbreak = true; description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; license = "unknown"; }) {}; @@ -10426,7 +10502,7 @@ self: { version = "1.0"; sha256 = "1b880lrzdxww3j19zspnj49ifsn89n0ac1h5xf7nn83847k8q2qk"; buildDepends = [ array base containers mtl ]; - configureFlags = [ "-f-useoldmap" "-f-mapoperad" ]; + jailbreak = true; homepage = "http://math.stanford.edu/~mik/operads"; description = "Groebner basis computation for Operads"; license = stdenv.lib.licenses.bsd3; @@ -10455,6 +10531,7 @@ self: { base containers haskell-src-exts haskell-src-meta mtl split syb template-haskell ]; + jailbreak = true; description = "A quasiquoter for or-patterns"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10533,7 +10610,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring containers ]; - configureFlags = [ "-f-tests" ]; homepage = "http://www.github.com/rotskoff"; description = "A library for analysis of 3-D protein coordinates"; license = stdenv.lib.licenses.gpl3; @@ -10560,7 +10636,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers mtl network network-uri xml ]; - configureFlags = [ "-fnetwork-uri" "-futf8cgi" "-f-utf8terminal" ]; homepage = "http://msakai.jp/hiki/?hsPTQ"; description = "An implementation of Montague's PTQ"; license = "LGPL"; @@ -10601,6 +10676,7 @@ self: { base crypto-numbers crypto-random HUnit QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; description = "a simple Paillier cryptosystem"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10619,6 +10695,7 @@ self: { Agda base containers directory filepath mtl pandoc pandoc-types QuickCheck text time xhtml ]; + jailbreak = true; description = "Pandoc support for literate Agda"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10644,7 +10721,6 @@ self: { random test-framework test-framework-hunit test-framework-quickcheck2 text typelevel-tensor vector ]; - configureFlags = [ "-ftest" ]; homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; description = "a code generator for partial differential equations solvers"; license = stdenv.lib.licenses.bsd3; @@ -10709,6 +10785,7 @@ self: { version = "0.1.0.0"; sha256 = "12lxylmpi2f1ahy6w1n7jmwn9kay4hajgr95xbnqqdzv4dw6whzw"; buildDepends = [ base QuickCheck ]; + jailbreak = true; homepage = "https://github.com/VictorDenisov/PasswordGenerator"; description = "Simple library for generating passwords"; license = stdenv.lib.licenses.mit; @@ -10785,6 +10862,7 @@ self: { version = "0.2"; sha256 = "0lmmsvqbnw0k321254xfqlzmddvymy0mj50ax7caqj2fnarfgy4l"; buildDepends = [ base ReplicateEffects ]; + jailbreak = true; homepage = "https://github.com/MedeaMelana/PermuteEffects"; description = "Permutations of effectful computations"; license = stdenv.lib.licenses.bsd3; @@ -10827,7 +10905,6 @@ self: { buildDepends = [ base containers directory mtl random regex-compat ]; - configureFlags = [ "-f-prof" ]; homepage = "freizl.github.com"; description = "Play Hangman Game"; license = stdenv.lib.licenses.bsd3; @@ -10844,6 +10921,7 @@ self: { buildDepends = [ base HUnit MonadRandom QuickCheck random-shuffle ]; + jailbreak = true; description = "Playing cards api"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10862,7 +10940,6 @@ self: { base Chart Chart-cairo containers data-default-class glib gtk lens linear stm text time ]; - configureFlags = [ "-f-examples" ]; description = "Real-time line plotter for protobuf-like data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10919,7 +10996,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring network splice ]; - configureFlags = [ "-f-llvm" "-f-static" "-f-threaded" ]; homepage = "http://fusion.corsis.eu"; description = "high-performance distributed reverse / forward proxy & tunneling for TCP"; license = stdenv.lib.licenses.gpl3; @@ -11056,7 +11132,6 @@ self: { parsec pretty process pugs-compat pugs-DrIFT random stm stringtable-atom time utf8-string ]; - configureFlags = [ "-fperl5" ]; homepage = "http://pugscode.org/"; description = "A Perl 6 Implementation"; license = stdenv.lib.licenses.bsd3; @@ -11168,6 +11243,7 @@ self: { version = "0.10.1"; sha256 = "0r4qv6xw03g79sn1889vv1rzpkcpjm9lmipvxdl0l1d8r8kvxdxw"; buildDepends = [ base composition lens ]; + jailbreak = true; description = "QuadTree library for Haskell, with lens support"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -11197,6 +11273,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base haskell-src-exts ]; + jailbreak = true; homepage = "http://code.haskell.org/QuickAnnotate/"; description = "Annotation Framework"; license = stdenv.lib.licenses.bsd3; @@ -11214,7 +11291,6 @@ self: { base random template-haskell tf-random transformers ]; testDepends = [ base template-haskell test-framework ]; - configureFlags = [ "-ftemplatehaskell" "-fbase4" "-fbase3" ]; homepage = "https://github.com/nick8325/quickcheck"; description = "Automatic testing of Haskell programs"; license = stdenv.lib.licenses.bsd3; @@ -11227,6 +11303,7 @@ self: { version = "0.1.3"; sha256 = "16zxmq0y8ayq9dgmgyfdm3fnjjhv452cymfam1zjmaabrayllkpp"; buildDepends = [ base mtl QuickCheck random ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; @@ -11285,6 +11362,7 @@ self: { base HDBC HDBC-postgresql mtl old-time parsec redHandlers xhtml yuiGrid ]; + jailbreak = true; description = "A framework for writing RESTful applications"; license = "unknown"; }) {}; @@ -11375,6 +11453,7 @@ self: { base Biobase BiobaseTurner BiobaseTypes BiobaseVienna cmdargs containers HsTools primitive PrimitiveArray RNAFold split vector ]; + jailbreak = true; description = "RNA secondary structure folding"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -11439,7 +11518,7 @@ self: { deepseq directory parallel PrimitiveArray random split StatisticalMethods vector ]; - configureFlags = [ "-f-llvm" ]; + jailbreak = true; homepage = "http://www.tbi.univie.ac.at/software/rnawolf/"; description = "RNA folding with non-canonical basepairs and base-triplets"; license = stdenv.lib.licenses.gpl3; @@ -11534,6 +11613,7 @@ self: { version = "0.1.0.0"; sha256 = "0759508s75zba89jjr56sqpm7idgwsxynmf9zl9hwrz9q11fxrqh"; buildDepends = [ base ]; + jailbreak = true; description = "Data structure for managing ranges"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -11602,7 +11682,6 @@ self: { base binary criterion deepseq directory filepath FontyFruity JuicyPixels QuickCheck statistics vector ]; - configureFlags = [ "-fembed_linear" ]; description = "A pure haskell drawing engine"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -11617,6 +11696,7 @@ self: { isExecutable = true; buildDepends = [ base system-filepath text ]; testDepends = [ base hspec system-filepath text ]; + jailbreak = true; homepage = "http://github.com/rampion/ReadArgs"; description = "Simple command line argument parsing"; license = stdenv.lib.licenses.bsd3; @@ -11653,6 +11733,7 @@ self: { version = "0.1.1.0"; sha256 = "15qikbjbydbabc26skhavshzrsaz17a71q8hfxqvi5ix2bhhz4hm"; buildDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; @@ -11687,7 +11768,6 @@ self: { base bytestring cassava cmdargs cond containers directory glpk-hs matrix MissingH vector ]; - configureFlags = [ "-f-documentation" "-f-debug" ]; homepage = "https://github.com/pablocouto/Referees"; description = "A utility for computing distributions of material to review among reviewers"; license = stdenv.lib.licenses.gpl3; @@ -11750,7 +11830,6 @@ self: { temporary text transformers trifecta utf8-string vector zlib ]; testDepends = [ base doctest ]; - configureFlags = [ "-frepa" ]; homepage = "http://code.haskell.org/~aavogt/Rlang-QQ"; description = "quasiquoter for inline-R code"; license = stdenv.lib.licenses.bsd3; @@ -11900,6 +11979,7 @@ self: { sha256 = "03ng8kih285pvwj06jdwk4hkyyyb8j666pnvagnw5hsjhq60r8h6"; buildDepends = [ base ]; extraLibraries = [ SDL2 SDL2_ttf ]; + jailbreak = true; description = "Binding to libSDL-ttf"; license = stdenv.lib.licenses.mit; }) { inherit (pkgs) SDL2; SDL2_ttf = null;}; @@ -11967,6 +12047,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base GLUT OpenGL SG ]; + jailbreak = true; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; }) {}; @@ -11980,7 +12061,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base binary bytestring ]; - configureFlags = [ "-fdecoderinterface" "-f-exe" "-f-test" ]; description = "Implementations of the SHA suite of message digest functions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12024,6 +12104,7 @@ self: { base bindings-DSL containers data-default lens mtl transformers ]; buildTools = [ c2hsc ]; + jailbreak = true; homepage = "http://www.snet-home.org/"; description = "Declarative coördination language for streaming networks"; license = stdenv.lib.licenses.gpl3; @@ -12063,7 +12144,6 @@ self: { version = "0.3.2"; sha256 = "1cl5bsc5mr3silcmbjylgw5qa04pf2np9mippxnsa4p3dk089gkh"; buildDepends = [ array base mtl ]; - configureFlags = [ "-fsplitbase" ]; description = "A monad transformer version of the ST monad"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12081,6 +12161,7 @@ self: { buildDepends = [ base haskell98 language-c pretty svgutils syb xml ]; + jailbreak = true; homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; @@ -12126,6 +12207,7 @@ self: { buildDepends = [ base binary bytestring data-binary-ieee754 split ]; + jailbreak = true; homepage = "https://github.com/siddhanathan/SWMMoutGetMB"; description = "A parser for SWMM 5 binary .OUT files"; license = stdenv.lib.licenses.gpl3; @@ -12145,6 +12227,7 @@ self: { array base containers filepath loch-th pretty text transformers wl-pprint-text xml ]; + jailbreak = true; description = "Generate a parser (in Haskell) with the SableCC parser generator"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12183,7 +12266,6 @@ self: { sha256 = "0915mwi1ksa85in03vzm5hqbvk6ih7l0zslg5cmy7j9fc0jhgwgd"; buildDepends = [ base bytestring file-embed ]; extraLibraries = [ glib mono ]; - configureFlags = [ "-f-use_mono" ]; homepage = "http://haskell.org/haskellwiki/Salsa"; description = "A .NET Bridge for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -12203,6 +12285,7 @@ self: { base bytestring directory filepath HFuse hsyslog process regex-compat sqlite-simple unix ]; + jailbreak = true; homepage = "http://github.com/hirschenberger/ScratchFS"; description = "Size limited temp filesystem based on fuse"; license = stdenv.lib.licenses.gpl3; @@ -12236,7 +12319,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-test" ]; description = "Data structure for querying the set (or count) of intervals covering given point"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12255,6 +12337,7 @@ self: { base bytestring classify containers mongoDB mtl network process split tagsoup text ]; + jailbreak = true; description = "Command-line tool for maintaining the Semantique database"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -12266,7 +12349,6 @@ self: { version = "0.0.7"; sha256 = "1mdw1z50gr02j5hycki5rl95b1yk7xfrdk056ajw9ghw48s0jpx6"; buildDepends = [ base bytestring containers mtl ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://bitbucket.org/dibblego/semigroup/"; description = "A semigroup"; license = stdenv.lib.licenses.bsd3; @@ -12283,6 +12365,7 @@ self: { buildDepends = [ base directory filepath hslogger mtl old-locale random time ]; + jailbreak = true; description = "Easy Loggingframework"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -12317,7 +12400,6 @@ self: { version = "0.9.5.2"; sha256 = "1js9la0hziqsmb56q9kzfycda2sw3xm4kv2y5q2h3zlw5gzc5xli"; buildDepends = [ base directory mtl unix ]; - configureFlags = [ "-fbase4" ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "A framework for creating shell envinronments"; license = stdenv.lib.licenses.bsd3; @@ -12330,7 +12412,6 @@ self: { version = "0.9.5.2"; sha256 = "134m0krbd3vlswjxdfvv9xy9x962g7ksg1mqmmgczss9ph2dx08i"; buildDepends = [ base Shellac Shellac-editline ]; - configureFlags = [ "-f-usereadline" "-fuseeditline" ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; license = stdenv.lib.licenses.bsd3; @@ -12428,6 +12509,7 @@ self: { version = "0.9.3"; sha256 = "0c674q5jiqvscc53m0z5vkmljla29pcll15gbvxr86pqxwmqm5hr"; buildDepends = [ base GLFW JuicyPixels OpenGL SimpleH vector ]; + jailbreak = true; description = "A Simple Graphics Library from the SimpleH framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12444,6 +12526,7 @@ self: { base bytestring clock containers cpu directory filepath network time unix ]; + jailbreak = true; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; }) {}; @@ -12463,6 +12546,7 @@ self: { ForkableT monad-control mtl old-locale resourcet semigroups stm template-haskell text th-lift time transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/exFalso/SimpleLog/"; description = "Simple, configurable logging"; license = stdenv.lib.licenses.bsd3; @@ -12490,6 +12574,7 @@ self: { buildDepends = [ base containers DifferenceLogic FirstOrderTheory HUnit Proper ]; + jailbreak = true; description = "A tiny, lazy SMT solver"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12512,7 +12597,7 @@ self: { ]; buildTools = [ cpphs ]; extraLibraries = [ zip ]; - configureFlags = [ "-f-debug" ]; + jailbreak = true; homepage = "http://bitbucket.org/jetxee/snusmumrik/"; description = "E-library directory based on FUSE virtual file system"; license = stdenv.lib.licenses.bsd3; @@ -12530,6 +12615,7 @@ self: { base concurrent-supply containers monad-coroutine mtl stm transformers ]; + jailbreak = true; homepage = "http://www.soos-project.eu/"; description = "Abstract full system simulator"; license = stdenv.lib.licenses.bsd3; @@ -12549,6 +12635,7 @@ self: { base base-unicode-symbols binary derive directory mtl process random zlib ]; + jailbreak = true; homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "Football simulation framework for teaching functional programming"; license = stdenv.lib.licenses.bsd3; @@ -12568,6 +12655,7 @@ self: { base base-unicode-symbols binary GLUT OpenGL process random SoccerFun ]; + jailbreak = true; homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "OpenGL UI for the SoccerFun framework"; license = stdenv.lib.licenses.bsd3; @@ -12600,6 +12688,7 @@ self: { base Cabal containers directory fgl filepath Graphalyze graphviz haskell-src-exts mtl multiset random ]; + jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; }) {}; @@ -12633,6 +12722,7 @@ self: { base containers enummapset-th filepath LambdaHack template-haskell text ]; + jailbreak = true; homepage = "https://github.com/tuturto/space-privateers"; description = "Simple space pirate roguelike"; license = stdenv.lib.licenses.bsd3; @@ -12670,6 +12760,7 @@ self: { version = "0.2.0.1"; sha256 = "1vcrl5dqjn0ri9ybza2yv80xvbv2iwrz5hj5rbhgy6i803ixlpx0"; buildDepends = [ base http-types Spock text time ]; + jailbreak = true; homepage = "https://github.com/agrafix/Spock-auth"; description = "Provides authentification helpers for Spock"; license = stdenv.lib.licenses.bsd3; @@ -12742,6 +12833,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers ]; + jailbreak = true; homepage = "https://github.com/zcourts/Stasis"; description = "A simple MVCC like library"; license = stdenv.lib.licenses.bsd3; @@ -12804,6 +12896,7 @@ self: { version = "1.6.0.3"; sha256 = "1cicz4d5kyl9j4y3p79m3fk56vcqk3220a6y536dw525x6180dzw"; buildDepends = [ base containers ]; + jailbreak = true; description = "An abstract data type designed for the exchange of tree-like data structures"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12822,6 +12915,7 @@ self: { base directory haskell-src mtl pretty process Strafunski-ATermLib Strafunski-StrategyLib template-haskell ]; + jailbreak = true; description = "Converts SDF to Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12833,6 +12927,7 @@ self: { version = "5.0.0.5"; sha256 = "13w3vj6nwky891rk3yi9977i2wg09zc0kvhyrx2219zdv2z6i0xg"; buildDepends = [ base directory mtl syb transformers ]; + jailbreak = true; description = "Library for strategic programming"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -12850,6 +12945,7 @@ self: { parsec text transformers ]; testDepends = [ base blaze-builder bytestring hspec text ]; + jailbreak = true; homepage = "https://github.com/hansonkd/StrappedTemplates"; description = "General purpose templates in haskell"; license = stdenv.lib.licenses.bsd3; @@ -12900,6 +12996,7 @@ self: { buildDepends = [ base containers mtl syb-with-class template-haskell TypeCompose ]; + jailbreak = true; description = "Library which aids constructing generic (SYB3-based) widgets"; license = "LGPL"; }) {}; @@ -12969,6 +13066,7 @@ self: { base containers deepseq fgl free haskeline hmatrix integration list-extras mtl numeric-tools parallel stream-fusion ]; + jailbreak = true; description = "Utilities for condensed matter physics tight binding calculations"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13052,6 +13150,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cookbook ]; + jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13079,9 +13178,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base mtl old-time time ]; - configureFlags = [ - "-f-buildtests" "-f-sqlite" "-f-postgres" "-f-oracle" "-f-odbc" - ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13181,6 +13277,7 @@ self: { sha256 = "0yk496zql0jpyj83ybdzffc03sylf5pwn093k831m99j54l2r5yv"; editedCabalFile = "56a8ab041685777391702f1475e5c2a3462b36765bd53de2e21e1f55aa5999d9"; buildDepends = [ base binary bytestring ghc-prim HTTP network ]; + jailbreak = true; homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; @@ -13198,7 +13295,6 @@ self: { base containers HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-fsmall_base" ]; description = "A sub-project (exercise) for a functional programming course"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13281,6 +13377,7 @@ self: { base containers mtl QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/clux/tournament.hs"; description = "Tournament related algorithms"; license = stdenv.lib.licenses.mit; @@ -13330,6 +13427,7 @@ self: { version = "0.0.2"; sha256 = "1lcj166i8f7850fqjv7xqxdn6zwpdynzxn3bf243wdnwmnn5pysx"; buildDepends = [ base ]; + jailbreak = true; homepage = "http://www.github.com/bhickey/TreeStructures"; description = "A collection of heaps and search trees"; license = stdenv.lib.licenses.bsd3; @@ -13358,6 +13456,7 @@ self: { base containers diagrams-cairo diagrams-lib mtl optparse-applicative time ]; + jailbreak = true; description = "A simple trend Graph script"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -13375,7 +13474,6 @@ self: { base bytestring containers primitive template-haskell th-expand-syns transformers unpack-funcs vector ]; - configureFlags = [ "-f-llvm" ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13569,6 +13667,7 @@ self: { version = "0.1.7"; sha256 = "1y21v5k7s9sj8z5r3czp5i80x40zvyqxzr1xl28ardwj5q5rrvzp"; buildDepends = [ base cgi MaybeT mtl ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/UrlDisp"; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = stdenv.lib.licenses.bsd3; @@ -13592,7 +13691,6 @@ self: { version = "0.0.4"; sha256 = "1mjy3w4sw32rbmm13yhmpidfsj91v3p58jvki16z0kzk3fswpa85"; buildDepends = [ base ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/utility-tm"; description = "Utility functions that are missing from the standard library"; license = stdenv.lib.licenses.bsd3; @@ -13630,7 +13728,7 @@ self: { version = "0.2.0"; sha256 = "10smif8y5bgjiarag3ws131kwji32mlh6mqfnmmp20xf41fsm0z3"; buildDepends = [ base bifunctors semigroupoids semigroups ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "https://github.com/tonymorris/validation"; description = "A data-type like Either but with an accumulating Applicative"; license = stdenv.lib.licenses.bsd3; @@ -13655,6 +13753,7 @@ self: { version = "1.0.6"; sha256 = "0zxxpychddmlrv7r190gn4dl282ak4qfk2d92l24qxi9fds1rshk"; buildDepends = [ base Boolean Vec ]; + jailbreak = true; description = "Provides Boolean instances for the Vec package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13730,6 +13829,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory filepath mtl unix WL500gPLib ]; + jailbreak = true; description = "A simple command line tools to control the Asus WL500gP router"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13743,6 +13843,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base curl mtl tagsoup ]; + jailbreak = true; description = "A simple library to access to the WL 500gP router from the Haskell code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13784,7 +13885,6 @@ self: { version = "0.0.1"; sha256 = "0vv8s483g3dkxyk833cjczj0a5zxiy9xh56kij6n0jjyzxb9bz0k"; buildDepends = [ base containers wx wxcore ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://wewantarock.wordpress.com"; description = "WXDiffCtrl"; license = stdenv.lib.licenses.bsd3; @@ -13804,6 +13904,7 @@ self: { base containers directory ghc-paths haskell98 parsec process regex-compat ]; + jailbreak = true; homepage = "http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/"; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -13830,6 +13931,7 @@ self: { version = "1.0.2"; sha256 = "18dd52970cd27kra4l89vvrx2mrdbqd4w4f76xrq3142daxsagal"; buildDepends = [ base containers mtl parsec pretty syb WebBits ]; + jailbreak = true; homepage = "http://www.cs.brown.edu/research/plt/"; description = "JavaScript analysis tools"; license = "LGPL"; @@ -13846,6 +13948,7 @@ self: { buildDepends = [ base multiplate multiplate-simplified transformers WebBits ]; + jailbreak = true; description = "A Multiplate instance for JavaScript"; license = stdenv.lib.licenses.mit; }) {}; @@ -13878,6 +13981,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base parsec ]; + jailbreak = true; homepage = "https://github.com/cameronbwhite/WeberLogic"; description = "Logic interpreter"; license = stdenv.lib.licenses.bsd3; @@ -13900,7 +14004,7 @@ self: { HTTP hxt mtl network parsec process regex-pcre-builtin template-haskell text transformers unordered-containers vector ]; - configureFlags = [ "-f-optimize" ]; + jailbreak = true; description = "Regexp-like engine to scrap web data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13925,6 +14029,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "The frictionless WAI Framework"; license = stdenv.lib.licenses.bsd3; @@ -13964,6 +14069,7 @@ self: { version = "0.2.1"; sha256 = "1y2war9adqkwc3zy2g45nvg7ccp4axdbjkn54mnhf34q6n4dwwg8"; buildDepends = [ base text Win32 Win32-errors ]; + jailbreak = true; homepage = "http://github.com/mikesteele81/win32-dhcp-server"; description = "Win32 DHCP Server Management API"; license = stdenv.lib.licenses.bsd3; @@ -13976,6 +14082,7 @@ self: { version = "0.2.1"; sha256 = "13rqqk06r3rc9j6j72qcna26lj0r2fbrzys9zgr91knik9msl5di"; buildDepends = [ base template-haskell text Win32 ]; + jailbreak = true; homepage = "http://github.com/mikesteele81/win32-errors"; description = "Alternative error handling for Win32 foreign calls"; license = stdenv.lib.licenses.bsd3; @@ -14001,6 +14108,7 @@ self: { version = "0.2"; sha256 = "1cbk6d47h83pp77522j55yy90vhi0d1jjb7rd1s98k6422fb316s"; buildDepends = [ base text Win32 Win32-errors ]; + jailbreak = true; homepage = "http://github.com/mikesteele81/Win32-junction-point"; description = "Support for manipulating NTFS junction points"; license = stdenv.lib.licenses.bsd3; @@ -14040,7 +14148,6 @@ self: { version = "0.1.2.0"; sha256 = "01fvb9sraqw1ar5pvs8s23y8syix50wh6yifsm65fs4vy1nk3xfb"; buildDepends = [ base directory filepath Win32 Win32-services ]; - configureFlags = [ "-f-warn-as-error" ]; description = "Wrapper code for making a Win32 service"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -14079,7 +14186,6 @@ self: { version = "0.1.3"; sha256 = "1ab5wybawa3dfq89dn0g3zdhsqd03bcm3qky2d4z6irw7afdqrr8"; buildDepends = [ array base containers filepath ]; - configureFlags = [ "-fsmall_base" ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -14123,6 +14229,7 @@ self: { version = "0.8.1"; sha256 = "0lvbdmb1qwsz8bz0z715nzgbpshfckm4syk1ny52akkb4ddkrd60"; buildDepends = [ base containers mtl SybWidget wx wxcore xtc ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/WxGeneric"; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; @@ -14156,6 +14263,7 @@ self: { editedCabalFile = "f7b315acd1fb4d44ee6312b2e8d397b7cda103cf5e9e8ca6867389ef6cadff3c"; buildDepends = [ base X11 ]; extraLibraries = [ libX11 ]; + jailbreak = true; description = "Missing bindings to the X11 graphics library"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs.xlibs) libX11;}; @@ -14208,6 +14316,9 @@ self: { buildDepends = [ base utf8-string X11 ]; extraLibraries = [ fontconfig freetype pkgconfig ]; pkgconfigDepends = [ libXft ]; + configureFlags = [ + "--extra-include-dirs=${freetype}/include/freetype2" + ]; description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; license = "LGPL"; }) { inherit (pkgs) fontconfig; inherit (pkgs) freetype; @@ -14273,6 +14384,7 @@ self: { buildDepends = [ base haskell98 hsdns mtl network parsec random utf8-string ]; + jailbreak = true; homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "XMPP library"; license = stdenv.lib.licenses.bsd3; @@ -14290,6 +14402,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base cgi containers hsparql pretty rdf4h text ]; + jailbreak = true; homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; @@ -14398,7 +14511,7 @@ self: { yesod-default yesod-form yesod-newsfeed yesod-platform yesod-recaptcha yesod-static ]; - configureFlags = [ "-f-library-only" "-f-dev" ]; + jailbreak = true; homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master"; description = "A simple blog engine powered by Yesod"; license = stdenv.lib.licenses.bsd3; @@ -14417,7 +14530,6 @@ self: { buildDepends = [ base bytestring containers directory dlist HUnit regex-compat ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://www.ben-kiki.org/oren/YamlReference"; description = "YAML reference implementation"; license = "LGPL"; @@ -14446,7 +14558,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base bytestring containers HCodecs Yampa ]; - configureFlags = [ "-f-gtk" "-f-openal" "-fwav" ]; homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; description = "Software synthesizer"; license = stdenv.lib.licenses.bsd3; @@ -14476,7 +14587,6 @@ self: { base containers mtl network old-locale process readline regex-posix syb time ]; - configureFlags = [ "-freadline" ]; homepage = "http://code.google.com/p/yogurt-mud/"; description = "A MUD client library"; license = stdenv.lib.licenses.bsd3; @@ -14607,6 +14717,7 @@ self: { sha256 = "1lxsn3n77fk7jl8i76nffj1zngvi2s38y17s54ha29h8hrp3s3dg"; buildDepends = [ base parsec text ]; testDepends = [ base HUnit text ]; + jailbreak = true; homepage = "http://github.com/marcotmarcot/abacate"; description = "Parser for a language similar to Cucumber's Gherkin"; license = "unknown"; @@ -14645,7 +14756,6 @@ self: { ]; buildTools = [ c2hs ]; extraLibraries = [ abc ]; - configureFlags = [ "-fenable-pthreads" ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) abc;}; @@ -14686,7 +14796,6 @@ self: { version = "0.3"; sha256 = "18jwswjxwzc9bjiy4ds6hw2a74ki797jmfcifxd2ga4kh7ri1ah9"; buildDepends = [ array base containers random time ]; - configureFlags = [ "-f-usecas" ]; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "Abstract, parameterized interface to mutable Deques"; license = stdenv.lib.licenses.bsd3; @@ -14732,7 +14841,6 @@ self: { version = "0.3.3"; sha256 = "0k1730mg2vyf21837fc459m8si1ffnbj78cdkbgglp2vn51f3nz4"; buildDepends = [ abstract-par accelerate array base vector ]; - configureFlags = [ "-fnewaccelerate" "-f-io" ]; homepage = "https://github.com/simonmar/monad-par"; description = "Provides the class ParAccelerate, nothing more"; license = stdenv.lib.licenses.bsd3; @@ -14760,6 +14868,7 @@ self: { version = "0.2.0.5"; sha256 = "00s2nvd85l00kpl45ipaq4ypa1ymaxmvnaf5mdvdladg4icl50i4"; buildDepends = [ base hashable unordered-containers vector ]; + jailbreak = true; description = "Aho-Corasick string matching algorithm in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -14771,6 +14880,7 @@ self: { version = "0.1.0.0"; sha256 = "1nsnbvllwznbqycw33f09vfgqvqmqfkcbi367clm6k4v6rfswzl3"; buildDepends = [ ac-machine base conduit text ]; + jailbreak = true; description = "Drive Aho-Corasick machines in Conduit pipelines"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -14789,10 +14899,6 @@ self: { array base containers fclabels ghc-prim hashable hashtables pretty template-haskell unordered-containers ]; - configureFlags = [ - "-f-internal-checks" "-f-unsafe-checks" "-fbounds-checks" - "-f-more-pp" "-f-debug" - ]; homepage = "https://github.com/AccelerateHS/accelerate/"; description = "An embedded language for accelerated array processing"; license = stdenv.lib.licenses.bsd3; @@ -14830,7 +14936,7 @@ self: { accelerate accelerate-arithmetic accelerate-cuda accelerate-io accelerate-utility base cublas cuda random utility-ht vector ]; - configureFlags = [ "-f-buildexamples" ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/accelerate-cublas/"; description = "Basic Linear Algebra using native CUBLAS library"; license = stdenv.lib.licenses.bsd3; @@ -14854,10 +14960,7 @@ self: { mainland-pretty mtl old-time pretty process SafeSemaphore srcloc template-haskell text transformers unix unordered-containers ]; - configureFlags = [ - "-f-internal-checks" "-f-unsafe-checks" "-fbounds-checks" - "-f-debug" - ]; + jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-cuda/"; description = "Accelerate backend for NVIDIA GPUs"; license = stdenv.lib.licenses.bsd3; @@ -14877,7 +14980,6 @@ self: { accelerate accelerate-cuda accelerate-fourier accelerate-utility base cuda cufft ]; - configureFlags = [ "-f-buildexamples" ]; homepage = "http://code.haskell.org/~thielema/accelerate-cufft/"; description = "Accelerate frontend to the CUFFT library (Fourier transform)"; license = stdenv.lib.licenses.bsd3; @@ -14893,12 +14995,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ accelerate-cuda ekg ]; - configureFlags = [ - "-f-opencl" "-f-kmeans" "-f-ray" "-f-pagerank" "-f-fft" - "-f-hashcat" "-f-smoothlife" "-f-nbody" "-f-fluid" "-f-mandelbrot" - "-f-canny" "-f-crystal" "-f-smvm" "-f-nofib" "-fllvm-multi" - "-f-llvm-gpu" "-f-llvm-cpu" "-f-opencl" "-fcuda" "-fekg" "-fgui" - ]; + configureFlags = [ "-f-opencl" ]; homepage = "https://github.com/AccelerateHS/accelerate-examples"; description = "Examples using the Accelerate library"; license = stdenv.lib.licenses.bsd3; @@ -14912,7 +15009,6 @@ self: { sha256 = "0nxlw8z7bnr29vp24qbbwwmq9rj2q6jqqkmm46pp8dp582y4yk6v"; editedCabalFile = "c23b93ae20f528782aeb10b528fa2a7847cce5c1aa9db546f3b000d7f05f53ca"; buildDepends = [ accelerate accelerate-cuda base cuda cufft ]; - configureFlags = [ "-fcuda" ]; homepage = "https://github.com/AccelerateHS/accelerate-fft"; description = "FFT using the Accelerate library"; license = stdenv.lib.licenses.bsd3; @@ -14987,9 +15083,6 @@ self: { buildDepends = [ accelerate array base bmp bytestring repa vector ]; - configureFlags = [ - "-f-internal-checks" "-f-unsafe-checks" "-fbounds-checks" - ]; homepage = "https://github.com/AccelerateHS/accelerate-io"; description = "Read and write Accelerate arrays in various formats"; license = stdenv.lib.licenses.bsd3; @@ -15014,6 +15107,7 @@ self: { version = "0.9.4"; sha256 = "16hgs81cs3zgbvsprh9lzvyxbh58g7rijf1d4j0dkrpnqnrvg0hy"; buildDepends = [ base bytestring HTTP json network text ]; + jailbreak = true; homepage = "http://accentuate.us/"; description = "A Haskell implementation of the Accentuate.us API."; license = stdenv.lib.licenses.bsd3; @@ -15026,6 +15120,7 @@ self: { version = "0.1.0.4"; sha256 = "13kg8mjrnif88r0w7b041x4vmzdm9aqrx4fskc3qv3smpq2q2ngs"; buildDepends = [ base filepath old-time time unix ]; + jailbreak = true; homepage = "http://www.github.com/batterseapower/access-time"; description = "Cross-platform support for retrieving file access times"; license = stdenv.lib.licenses.bsd3; @@ -15077,6 +15172,7 @@ self: { buildDepends = [ acid-state base directory HsOpenSSL network safecopy ]; + jailbreak = true; homepage = "http://acid-state.seize.it/"; description = "Add TLS support for Data.Acid.Remote"; license = stdenv.lib.licenses.publicDomain; @@ -15134,6 +15230,7 @@ self: { version = "0.1.0.0"; sha256 = "1sc0alwdgfls18y4q4y0qkbzqm4fgzd9yv6dwwnzw3472vsz2x8s"; buildDepends = [ base comonad ]; + jailbreak = true; description = "A more efficient dualization"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -15188,6 +15285,7 @@ self: { buildDepends = [ base bytestring extensible-exceptions mtl network pretty ]; + jailbreak = true; homepage = "http://www.happstack.com"; description = "fastest Haskell PONG server in the world"; license = stdenv.lib.licenses.bsd3; @@ -15271,6 +15369,7 @@ self: { version = "1.0.0.1"; sha256 = "0lnrsndx7r00b7vgh9jmp5j635m4pb2bzx0lfhqidkzfc2llzwsm"; buildDepends = [ base time ]; + jailbreak = true; description = "An interface to the philosophical and metaphysical \"now\""; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -15282,6 +15381,7 @@ self: { version = "0.3.0.0"; sha256 = "1p5rdssdmds6yqgv3yvlh835h180h9q9430j8i6qrhygqn8lmv87"; buildDepends = [ base template-haskell ]; + jailbreak = true; description = "Define the less than and add and subtract for nats"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -15356,6 +15456,7 @@ self: { version = "0.1"; sha256 = "1r6xnkyx22khzq6hlb8bk0fnbb6hlwbf12wajhx8vcxa7bkhh8lb"; buildDepends = [ base bytestring ]; + jailbreak = true; homepage = "https://github.com/ehird/acme-strfry"; description = "A binding to the glibc strfry function"; license = stdenv.lib.licenses.bsd3; @@ -15368,6 +15469,7 @@ self: { version = "1.0.0.0"; sha256 = "18wvsvdmbwh9dcawiy4f9pn4vg98kdq9zxc37sz7dpmaigimw16f"; buildDepends = [ base ]; + jailbreak = true; description = "Stringly Typed Programming"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -15421,6 +15523,7 @@ self: { testDepends = [ array base newtype QuickCheck semigroupoids semigroups vector-space ]; + jailbreak = true; description = "Abstractions for animation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -15446,6 +15549,7 @@ self: { old-time pandoc process pureMD5 QuickCheck simple-reflect snap-core snap-server split syb text time utf8-string xhtml ]; + jailbreak = true; description = "Haskell code presentation tool"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -15457,6 +15561,7 @@ self: { version = "0.3.0.2"; sha256 = "0wsrsxfaspv4xvw4wq3sllicc5v08rgpp1g76p24b9r9ghn7hrdv"; buildDepends = [ base QuickCheck ]; + jailbreak = true; description = "Basic definitions for activehs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -15498,7 +15603,6 @@ self: { transformers ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-f-lib-werror" ]; homepage = "http://github.com/ekmett/ad"; description = "Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; @@ -15523,7 +15627,6 @@ self: { version = "0.2.0"; sha256 = "1kf4d3qf8nv61c7pajv234b2vil84c2cq40csnm456lg55qh53r1"; buildDepends = [ base template-haskell type-level ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; @@ -15644,6 +15747,7 @@ self: { buildDepends = [ base binary bytestring data-binary-ieee754 language-css mtl pretty ]; + jailbreak = true; homepage = "https://github.com/stepcut/ase2css"; description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; license = stdenv.lib.licenses.bsd3; @@ -15665,9 +15769,7 @@ self: { array base containers htrace HUnit mtl QuickCheck random-shuffle test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ - "-f-debug" "-f-buildbenchmark2" "-f-buildbenchmark" "-f-buildtests" - ]; + jailbreak = true; homepage = "http://adp-multi.ruhoh.com"; description = "ADP for multiple context-free languages"; license = stdenv.lib.licenses.bsd3; @@ -15688,7 +15790,7 @@ self: { adp-multi base containers monadiccp mtl QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-f-buildbenchmark" ]; + jailbreak = true; homepage = "http://adp-multi.ruhoh.com"; description = "Subword construction in adp-multi using monadiccp"; license = stdenv.lib.licenses.bsd3; @@ -15715,7 +15817,6 @@ self: { template-haskell test-framework test-framework-hunit test-framework-quickcheck2 text time unordered-containers vector ]; - configureFlags = [ "-fold-locale" "-f-developer" ]; homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; license = stdenv.lib.licenses.bsd3; @@ -15733,6 +15834,7 @@ self: { aeson array attoparsec base bson bytestring containers text unordered-containers vector ]; + jailbreak = true; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; }) {}; @@ -15767,7 +15869,7 @@ self: { containers deepseq hashable mtl old-locale syb text time unordered-containers vector ]; - configureFlags = [ "-f-developer" ]; + jailbreak = true; homepage = "http://github.com/mailrank/aeson"; description = "Fast JSON parsing and encoding (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -15787,7 +15889,6 @@ self: { aeson attoparsec base bytestring cmdargs text unordered-containers vector ]; - configureFlags = [ "-f-lib-only" ]; homepage = "http://github.com/informatikr/aeson-pretty"; description = "JSON pretty-printing library and command-line tool"; license = stdenv.lib.licenses.bsd3; @@ -15835,6 +15936,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/timjb/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; @@ -15864,6 +15966,7 @@ self: { aeson base data-default template-haskell text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/lassoinc/aeson-smart"; description = "Smart derivation of Aeson instances"; license = stdenv.lib.licenses.mit; @@ -15880,6 +15983,7 @@ self: { buildDepends = [ aeson attoparsec base bytestring HsOpenSSL http-streams io-streams ]; + jailbreak = true; homepage = "https://github.com/noteed/aeson-streams"; description = "An HTTP client library for JSON-based APIs"; license = stdenv.lib.licenses.bsd3; @@ -15900,6 +16004,7 @@ self: { aeson aeson-qq base bytestring hspec2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/begriffs/aeson-t"; description = "Transform JSON"; license = stdenv.lib.licenses.mit; @@ -15944,6 +16049,7 @@ self: { buildDepends = [ base containers mwc-random primitive split vector ]; + jailbreak = true; homepage = "http://github.com/jtobin/affine-invariant-ensemble-mcmc"; description = "General-purpose sampling"; license = stdenv.lib.licenses.bsd3; @@ -15984,6 +16090,7 @@ self: { buildDepends = [ base bytestring directory language-c mtl process yices ]; + jailbreak = true; homepage = "http://tomahawkins.org"; description = "Infinite state model checking of iterative C programs"; license = stdenv.lib.licenses.bsd3; @@ -16118,7 +16225,6 @@ self: { version = "3.0"; sha256 = "1qyya6bx0xhw09mshz6gysizdbbmpzcgx4b494lnmr9x6sb5fvz7"; buildDepends = [ array base containers mtl random vector ]; - configureFlags = [ "-f-haste-inst" ]; homepage = "http://github.com/dsorokin/aivika"; description = "A multi-paradigm simulation library"; license = stdenv.lib.licenses.bsd3; @@ -16201,7 +16307,6 @@ self: { version = "3.0"; sha256 = "1b9hkza735g1gxr3l73fz48y29fyph89j8114wzld3ydma2f6d1z"; buildDepends = [ aivika array base containers mtl random vector ]; - configureFlags = [ "-f-haste-inst" ]; homepage = "http://github.com/dsorokin/aivika-transformers"; description = "Transformers for the Aivika simulation library"; license = stdenv.lib.licenses.bsd3; @@ -16269,7 +16374,6 @@ self: { buildDepends = [ array base containers directory QuickCheck ]; testDepends = [ base process ]; buildTools = [ happy perl ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://www.haskell.org/alex/"; description = "Alex is a tool for generating lexical analysers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -16302,7 +16406,6 @@ self: { buildDepends = [ aeson base bytestring hexpat HTTP network-uri text xmlgen ]; - configureFlags = [ "-fnetwork-uri" ]; description = "utility library for Alfred version 2"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -16416,7 +16519,6 @@ self: { version = "0.1"; sha256 = "0hmnp08k04c0ag9fyp5sajg54r4gi57vrd9krk4g8y8fri0fgc00"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "An aligned ForeignPtr type"; license = stdenv.lib.licenses.publicDomain; @@ -16472,9 +16574,6 @@ self: { incremental-sat-solver mtl network parsec pretty QuickCheck random stm syb template-haskell transformers tuple ]; - configureFlags = [ - "-f-readline" "-fparsec3" "-feditline" "-funicode" - ]; homepage = "http://www.ccs.neu.edu/~tov/pubs/alms"; description = "a practical affine language"; license = stdenv.lib.licenses.bsd3; @@ -16496,6 +16595,7 @@ self: { containers COrdering cpphs directory filepath ghc-prim mtl parsec transformers unix ]; + jailbreak = true; homepage = "http://www.alpha-lang.net/"; description = "A compiler for the Alpha language"; license = stdenv.lib.licenses.bsd3; @@ -16516,6 +16616,7 @@ self: { base bytestring bytestring-lexing conduit containers hexpat-pickle MonadRandom mtl random-shuffle resourcet rosezipper utf8-string ]; + jailbreak = true; homepage = "http://github.com/danieldk/alpino-tools"; description = "Alpino data manipulation tools"; license = "unknown"; @@ -16531,6 +16632,7 @@ self: { sha256 = "0zdnhi2wm7w6182k6mccm16x453g7kvbsqx2afnhfjpr3iaj69mg"; buildDepends = [ array base extensible-exceptions sample-frame ]; extraLibraries = [ alsaLib ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API"; license = stdenv.lib.licenses.bsd3; @@ -16544,7 +16646,6 @@ self: { sha256 = "1avh4a419h9d2zsslg6j8hm87ppgsgqafz8ll037rk2yy1g4jl7b"; buildDepends = [ base extensible-exceptions ]; pkgconfigDepends = [ alsaLib ]; - configureFlags = [ "-fpkgconfig" ]; homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (Exceptions)"; license = stdenv.lib.licenses.bsd3; @@ -16563,6 +16664,7 @@ self: { buildDepends = [ alsa-core alsa-seq base midi midi-alsa wx wxcore ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Some simple interactive programs for sending MIDI control messages via ALSA"; license = stdenv.lib.licenses.bsd3; @@ -16580,7 +16682,7 @@ self: { isExecutable = true; buildDepends = [ array base event-list midi non-negative ]; extraLibraries = [ alsaLib ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; @@ -16615,9 +16717,6 @@ self: { storable-record ]; pkgconfigDepends = [ alsaLib ]; - configureFlags = [ - "-f-debug" "-f-buildsynthesizer" "-f-buildexamples" - ]; homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (PCM audio)"; license = stdenv.lib.licenses.bsd3; @@ -16652,7 +16751,6 @@ self: { extensible-exceptions poll transformers utility-ht ]; pkgconfigDepends = [ alsaLib ]; - configureFlags = [ "-fmodifyfilter" "-f-buildexamples" ]; homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (MIDI sequencer)"; license = stdenv.lib.licenses.bsd3; @@ -16667,6 +16765,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ alsa base ]; + jailbreak = true; description = "Tests for the ALSA sequencer library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -16705,7 +16804,6 @@ self: { version = "0.3.1"; sha256 = "1n0mxgl1jzap74sglw85l0595lhaj493bz46b90cnsqr5as9mal8"; buildDepends = [ base ghc-prim integer-gmp ]; - configureFlags = [ "-fintegergmp" "-fsplitinteger" ]; homepage = "http://repo.or.cz/w/altfloat.git"; description = "Alternative floating point support for GHC"; license = "unknown"; @@ -16738,6 +16836,7 @@ self: { base bytestring configurator http-conduit lifted-base mime-mail mime-mail-ses postgresql-simple resourcet text time ]; + jailbreak = true; homepage = "https://github.com/dbp/amazon-emailer"; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = stdenv.lib.licenses.bsd3; @@ -16751,6 +16850,7 @@ self: { version = "0.1.1.1"; sha256 = "03am5nzacq2wd9jf46fnwmwq2ghfsh3yd9s0mzrrkskd26q1askb"; buildDepends = [ base mtl snap snaplet-postgresql-simple text ]; + jailbreak = true; homepage = "https://github.com/dbp/amazon-emailer-client-snap"; description = "Client library for amazon-emailer daemon"; license = stdenv.lib.licenses.bsd3; @@ -16774,6 +16874,7 @@ self: { time transformers transformers-base xml-conduit xml-picklers xml-types ]; + jailbreak = true; homepage = "https://github.com/AndrewRademacher/hs-amazon-products"; description = "Connector for Amazon Products API"; license = stdenv.lib.licenses.mit; @@ -16793,6 +16894,7 @@ self: { mmorph monad-control mtl resourcet retry text time transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Comprehensive Amazon Web Services SDK"; license = "unknown"; @@ -16966,6 +17068,7 @@ self: { testDepends = [ aeson base tasty tasty-hunit template-haskell text time ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Core functionality and data types for Amazonka libraries"; license = "unknown"; @@ -17323,7 +17426,7 @@ self: { hashable mtl old-locale pandoc pandoc-types process split SpreadsheetML time utf8-string ]; - configureFlags = [ "-flibrary" "-fexecutable" ]; + jailbreak = true; homepage = "ampersand.sourceforge.net"; description = "Toolsuite for automated design of business processes"; license = "GPL"; @@ -17350,7 +17453,6 @@ self: { data-binary-ieee754 hspec hspec-expectations network split text vector ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/hreinhardt/amqp"; description = "Client library for AMQP servers (currently only RabbitMQ)"; license = stdenv.lib.licenses.bsd3; @@ -17432,6 +17534,7 @@ self: { buildDepends = [ anansi base bytestring containers monads-tf pandoc text ]; + jailbreak = true; homepage = "https://john-millikin.com/software/anansi/"; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = stdenv.lib.licenses.gpl3; @@ -17514,7 +17617,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-build-generator" ]; homepage = "http://www.github.com/massysett/anonymous-sums"; description = "Anonymous sum types"; license = stdenv.lib.licenses.bsd3; @@ -17541,7 +17643,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base unix ]; - configureFlags = [ "-f-example" ]; homepage = "https://github.com/feuerbach/ansi-terminal"; description = "Simple ANSI terminal support, with Windows compatibility"; license = stdenv.lib.licenses.bsd3; @@ -17556,7 +17657,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ ansi-terminal base ]; - configureFlags = [ "-f-example" "-fnewbase" ]; homepage = "http://github.com/batterseapower/ansi-wl-pprint"; description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; license = stdenv.lib.licenses.bsd3; @@ -17576,6 +17676,7 @@ self: { antisplice base chatty chatty-utils ironforge mtl old-locale shakespeare text time yesod yesod-auth ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "A web interface to Antisplice dungeons"; license = stdenv.lib.licenses.agpl3; @@ -17618,6 +17719,7 @@ self: { antisplice base chatty chatty-text chatty-utils ctpl directory ironforge mtl network plugins time transformers ]; + jailbreak = true; description = "This is an IRC bot for Mafia and Resistance"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -17676,6 +17778,7 @@ self: { base chatty chatty-utils haskeline mtl template-haskell text time transformers ]; + jailbreak = true; description = "An engine for text-based dungeons"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -17730,7 +17833,6 @@ self: { base colour language-haskell-extract pango template-haskell ]; pkgconfigDepends = [ libaosd ]; - configureFlags = [ "-f-debugmemory" ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = stdenv.lib.licenses.bsd3; }) { libaosd = null;}; @@ -17742,6 +17844,7 @@ self: { version = "0.1.0.0"; sha256 = "0r7mfdi7vr2vh84xhhsd7si3mpfkppdpzh13rnnfww1cs0dpfdhz"; buildDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/cmc-msu-ai/ap-reflect"; description = "Partial evaluation reflection a la simple-reflect"; license = stdenv.lib.licenses.bsd3; @@ -17762,7 +17865,6 @@ self: { test-framework-hunit transformers ]; extraLibraries = [ openssl ]; - configureFlags = [ "-f-deepseq" "-f-pedantic" ]; homepage = "https://github.com/trskop/apache-md5"; description = "Apache specific MD5 digest algorighm"; license = stdenv.lib.licenses.bsd3; @@ -17784,7 +17886,6 @@ self: { gtk HTTP mtl network process transformers tremulous-query xdg-basedir ]; - configureFlags = [ "-f-relativepath" ]; homepage = "http://ojeling.net/apelsin"; description = "Server and community browser for the game Tremulous"; license = stdenv.lib.licenses.gpl3; @@ -17802,6 +17903,7 @@ self: { aeson attoparsec base bytestring either HTTP http-conduit http-types text transformers ]; + jailbreak = true; description = "Library for easily building REST API wrappers in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -17834,6 +17936,7 @@ self: { vector ]; buildTools = [ alex happy ]; + jailbreak = true; homepage = "http://github.com/iconnect/api-tools"; description = "DSL for generating API boilerplate and docs"; license = stdenv.lib.licenses.bsd3; @@ -18036,6 +18139,7 @@ self: { apiary base bytestring data-default-class filepath Glob parsec purescript template-haskell text unordered-containers utf8-string ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "purescript compiler for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -18081,6 +18185,7 @@ self: { template-haskell text th-lift time transformers unordered-containers utf8-string yql ]; + jailbreak = true; homepage = "https://github.com/fabianbergmark/APIs"; description = "A Template Haskell library for generating type safe API calls"; license = stdenv.lib.licenses.bsd2; @@ -18105,6 +18210,7 @@ self: { openpgp-crypto-api scotty strict tar text transformers wai-extra wai-middleware-static zlib ]; + jailbreak = true; homepage = "https://github.com/pyr/apotiki"; description = "a faster debian repository"; license = stdenv.lib.licenses.mit; @@ -18122,6 +18228,7 @@ self: { testDepends = [ base containers directory hspec HUnit mtl parsec text ]; + jailbreak = true; homepage = "https://github.com/emmanueltouzery/app-settings"; description = "A library to manage application settings (INI file-like)"; license = stdenv.lib.licenses.bsd3; @@ -18218,7 +18325,7 @@ self: { base HUnit ieee754 mersenne-random-pure64 monad-mersenne-random mtl test-framework test-framework-hunit vector ]; - configureFlags = [ "-f-withcairo" ]; + jailbreak = true; homepage = "http://github.com/danieldk/approx-rand-test"; description = "Approximate randomization test"; license = "unknown"; @@ -18243,7 +18350,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; + jailbreak = true; homepage = "http://github.com/analytics/approximate/"; description = "Approximate discrete values and numbers"; license = stdenv.lib.licenses.bsd3; @@ -18293,7 +18400,7 @@ self: { testDepends = [ base containers QuickCheck tasty tasty-quickcheck vector ]; - configureFlags = [ "-fllvm" ]; + jailbreak = true; homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; @@ -18340,6 +18447,7 @@ self: { tasty-hunit time transformers unix utf8-string ]; extraLibraries = [ libXScrnSaver ]; + jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -18362,6 +18470,7 @@ self: { HUnit mtl network old-locale pretty process progress regex-compat regex-posix time unix Unixutils xhtml ]; + jailbreak = true; description = "A library and programs for creating hardlinked incremental archives or backups"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -18445,6 +18554,7 @@ self: { base binary bytestring bytestring-lexing bytestring-show old-locale time ]; + jailbreak = true; homepage = "http://code.haskell.org/~StefanKersten/code/arff"; description = "Generate Attribute-Relation File Format (ARFF) files"; license = stdenv.lib.licenses.bsd3; @@ -18475,6 +18585,7 @@ self: { buildDepends = [ base bimap containers glib gtk HDBC indents mtl parsec ]; + jailbreak = true; description = "A computer assisted argumentation transcription and editing software"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -18551,7 +18662,8 @@ self: { buildDepends = [ array base containers ghc-prim integer-gmp mtl random ]; - configureFlags = [ "-f-llvm" "-f-llvm" ]; + configureFlags = [ "-f-llvm" ]; + jailbreak = true; homepage = "https://bitbucket.org/dafis/arithmoi"; description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms."; license = stdenv.lib.licenses.mit; @@ -18601,6 +18713,7 @@ self: { base HUnit QuickCheck test-framework-hunit test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -18635,6 +18748,7 @@ self: { version = "0.1.0.0"; sha256 = "0ppl8v746lj41aqb0k2724vm4n32jxmz723qa0j860jvhkh2nww7"; buildDepends = [ arrows base pointed profunctors semigroupoids ]; + jailbreak = true; homepage = "https://github.com/prophile/arrow-improve/"; description = "Improved arrows"; license = stdenv.lib.licenses.mit; @@ -18716,7 +18830,6 @@ self: { attoparsec base blaze-builder bytestring bytestring-nums containers file-embed parsec process shell-escape template-haskell ]; - configureFlags = [ "-f-no-cli" ]; homepage = "http://github.com/solidsnack/arx/"; description = "Archive execution tool"; license = stdenv.lib.licenses.bsd3; @@ -18757,6 +18870,7 @@ self: { buildDepends = [ base blaze-builder bytestring case-insensitive hashable text ]; + jailbreak = true; homepage = "https://github.com/snoyberg/ascii"; description = "Type-safe, bytestring-based ASCII values. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -18788,6 +18902,7 @@ self: { sha256 = "191qw61y3jrbwzv7nabvxr6dxxigyxflbw49f0q637psqzdblsl5"; buildDepends = [ base bytestring conduit ]; testDepends = [ base bytestring conduit hspec ]; + jailbreak = true; description = "Conduit for encoding ByteString into Ascii85"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -18834,7 +18949,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring cereal mtl text ]; - configureFlags = [ "-f-test" ]; homepage = "http://github.com/vincenthz/hs-asn1-data"; description = "ASN1 data reader and writer in RAW, BER and DER forms"; license = stdenv.lib.licenses.bsd3; @@ -18910,6 +19024,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers ghc-binary parsec ]; + jailbreak = true; description = "Haskell Assembler"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -18996,6 +19111,7 @@ self: { base containers directory MonadRandom mtl OpenGL random SDL SDL-image SDL-mixer SDL-ttf unix ]; + jailbreak = true; description = "an incomplete 2d space game"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19164,7 +19280,7 @@ self: { network network-api-support network-uri snap snap-core split text time time-units transformers ]; - configureFlags = [ "-fnetwork-uri" ]; + jailbreak = true; homepage = "https://bitbucket.org/ajknoll/atlassian-connect-core"; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = stdenv.lib.licenses.asl20; @@ -19187,7 +19303,7 @@ self: { aeson base bytestring Cabal cases HUnit network network-uri scientific text time-units unordered-containers vector ]; - configureFlags = [ "-fnetwork-uri" ]; + jailbreak = true; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = stdenv.lib.licenses.asl20; }) {}; @@ -19258,7 +19374,6 @@ self: { version = "0.6.1.1"; sha256 = "1flnh7x0596hw834irfznd3vprl844bgml2phskg8sjwcmi1j74c"; buildDepends = [ base ghc-prim primitive ]; - configureFlags = [ "-f-debug" ]; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -19276,6 +19391,7 @@ self: { testDepends = [ base bits-atomic HUnit test-framework test-framework-hunit time ]; + jailbreak = true; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "An atomic counter implemented using the FFI"; license = stdenv.lib.licenses.bsd3; @@ -19297,7 +19413,7 @@ self: { haskeline hint mtl parsec pretty regex-pcre template-haskell text time vector ]; - configureFlags = [ "-flib" ]; + jailbreak = true; homepage = "http://atomo-lang.org/"; description = "A highly dynamic, extremely simple, very fun programming language"; license = stdenv.lib.licenses.bsd3; @@ -19353,7 +19469,6 @@ self: { array base bytestring deepseq QuickCheck scientific test-framework test-framework-quickcheck2 text vector ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/attoparsec"; description = "Fast combinator parsing for bytestrings and text"; license = stdenv.lib.licenses.bsd3; @@ -19400,6 +19515,7 @@ self: { version = "0.1.0.1"; sha256 = "0zh1g9687nrdxksniq348jc04hbgf5kxbzqs0kggmz7qqw03iq0v"; buildDepends = [ attoparsec base text ]; + jailbreak = true; homepage = "https://github.com/robinbb/attoparsec-csv"; description = "A parser for CSV files that uses Attoparsec"; license = "unknown"; @@ -19439,6 +19555,7 @@ self: { buildDepends = [ attoparsec base bytestring iteratee transformers ]; + jailbreak = true; homepage = "http://github.com/gregorycollins"; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = stdenv.lib.licenses.bsd3; @@ -19467,6 +19584,7 @@ self: { version = "0.8.5.3"; sha256 = "1qq42lp1sah80a6lnnafi6pwl61b4w4q4jk1pbb7pg5p06mmk315"; buildDepends = [ array attoparsec base containers text ]; + jailbreak = true; homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -19479,6 +19597,7 @@ self: { version = "0.2.0.1"; sha256 = "0cffcwji141js09r7avb15b08xl4s8cgk5vxyrqaq7zw40hhb1gz"; buildDepends = [ attoparsec-text base enumerator text ]; + jailbreak = true; description = "(deprecated)"; license = stdenv.lib.licenses.mit; }) {}; @@ -19490,6 +19609,7 @@ self: { version = "0.1.0.0"; sha256 = "01sh8k9n9040xqx1lbn74rcf59j54n5861d9db1y5cdy7qssxyg4"; buildDepends = [ attoparsec base bytestring ]; + jailbreak = true; homepage = "http://projects.haskell.org/attosplit"; description = "Split a lazy bytestring at boundaries defined by an attoparsec parser"; license = stdenv.lib.licenses.bsd3; @@ -19540,6 +19660,7 @@ self: { base bytestring classify containers directory filepath HaXml mtl process ]; + jailbreak = true; description = "Renaming media collections in a breeze"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19577,7 +19698,6 @@ self: { network-uri resourcet tagstream-conduit text transformers unordered-containers xml-conduit ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/yesodweb/authenticate"; description = "Authentication methods for Haskell web applications"; license = stdenv.lib.licenses.bsd3; @@ -19602,6 +19722,7 @@ self: { version = "0.0.3"; sha256 = "1wsx43l7jl40jpzhiv2fjc1mnpsaaryrjpqaiyqsn3ahacsy4ly5"; buildDepends = [ base LDAP text transformers ]; + jailbreak = true; homepage = "http://github.com:mlitchard/authenticate-ldap"; description = "LDAP authentication for Haskell web applications"; license = stdenv.lib.licenses.bsd3; @@ -19738,6 +19859,7 @@ self: { version = "0.6"; sha256 = "0ag2jxhxap8wzdlb23zvly5y09k6kh134rwdxq6dqxlqwfwhsyc9"; buildDepends = [ base semigroups vector-space ]; + jailbreak = true; description = "An average (arithmetic mean) monoid"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19754,6 +19876,7 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; description = "A compile-time balanced AVL tree"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19765,6 +19888,7 @@ self: { version = "0.0.1.0"; sha256 = "08n9yk1dc0sisinapys4dvkyg4n96j9nmszrj7m9jrgjzks238fj"; buildDepends = [ base dependent-sum mtl process shake ]; + jailbreak = true; homepage = "https://github.com/mokus0/avr-shake"; description = "AVR Crosspack actions for shake build systems"; license = stdenv.lib.licenses.publicDomain; @@ -19839,7 +19963,6 @@ self: { mtl QuickCheck quickcheck-instances resourcet tagged tasty tasty-quickcheck text time transformers transformers-base ]; - configureFlags = [ "-f-examples" ]; homepage = "http://github.com/aristidb/aws"; description = "Amazon Web Services (AWS) for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -19857,6 +19980,7 @@ self: { asn1-encoding asn1-types base base64-bytestring bytestring crypto-pubkey-types old-locale RSA time ]; + jailbreak = true; homepage = "http://github.com/iconnect/aws-cloudfront-signer"; description = "For signing AWS CloudFront HTTP URL requests"; license = stdenv.lib.licenses.bsd3; @@ -19928,7 +20052,6 @@ self: { testDepends = [ aeson base Cabal containers QuickCheck regex-compat safe text ]; - configureFlags = [ "-f-examples" ]; homepage = "http://github.com/iconnect/aws-elastic-transcoder"; description = "Haskell suite for the Elastic Transcoder service"; license = stdenv.lib.licenses.bsd3; @@ -19956,7 +20079,6 @@ self: { either errors http-types parsers QuickCheck quickcheck-instances tagged tasty tasty-quickcheck text time transformers ]; - configureFlags = [ "-fnormalize-signature-v4-date" ]; homepage = "https://github.com/alephcloud/hs-aws-general"; description = "Bindings for AWS General API Version 0.1"; license = stdenv.lib.licenses.mit; @@ -20010,6 +20132,7 @@ self: { random resourcet stm stm-chans stm-conduit stm-queue-extras text transformers unordered-containers ]; + jailbreak = true; description = "A producer & consumer client library for AWS Kinesis"; license = stdenv.lib.licenses.asl20; }) {}; @@ -20033,6 +20156,7 @@ self: { monad-control mtl optparse-applicative resourcet text time transformers ]; + jailbreak = true; homepage = "https://github.com/alephcloud/hs-aws-kinesis-reshard"; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = stdenv.lib.licenses.asl20; @@ -20076,7 +20200,6 @@ self: { optparse-applicative resourcet statistics text time transformers vector ]; - configureFlags = [ "-f-with-chart" ]; homepage = "http://github.com/alephcloud/hs-aws-performance-tests"; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = stdenv.lib.licenses.mit; @@ -20123,7 +20246,6 @@ self: { monad-control QuickCheck random resourcet text time tls transformers ]; - configureFlags = [ "-fconduit-1-1" "-f-debug" ]; homepage = "http://worksap-ate.github.com/aws-sdk"; description = "AWS SDK for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -20191,6 +20313,7 @@ self: { bytestring-lexing Cabal case-insensitive cryptohash directory filepath http-types old-locale safe text time ]; + jailbreak = true; homepage = "http://github.com/iconnect/aws-sign4"; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = stdenv.lib.licenses.bsd3; @@ -20252,6 +20375,7 @@ self: { crypto-pubkey-types http-conduit hxt hxt-xpath pretty resourcet tls tls-extra transformers ]; + jailbreak = true; homepage = "github.com/haskell-distributed/azure-service-api"; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = stdenv.lib.licenses.bsd3; @@ -20270,6 +20394,7 @@ self: { aeson async attoparsec azure-acs base bytestring case-insensitive conduit connection http-client http-conduit http-types network text ]; + jailbreak = true; homepage = "https://github.com/kapilash/hs-azure"; description = "Haskell wrapper over Microsoft Azure ServiceBus REST API"; license = stdenv.lib.licenses.bsd3; @@ -20294,7 +20419,6 @@ self: { hxt-unicode network old-locale SHA text time transformers unix-compat utf8-string ]; - configureFlags = [ "-f-library-only" "-f-no-hxt" ]; homepage = "http://arnovanlumig.com/azure"; description = "A simple library for accessing Azure blob storage"; license = stdenv.lib.licenses.bsd3; @@ -20345,7 +20469,7 @@ self: { buildDepends = [ base directory haskell98 hslogger old-time process random ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; }) {}; @@ -20362,6 +20486,7 @@ self: { base either free kan-extensions mtl semigroupoids semigroups transformers ]; + jailbreak = true; homepage = "https://github.com/tapuu/backtracking-exceptions"; description = "A monad transformer for backtracking exceptions"; license = stdenv.lib.licenses.bsd3; @@ -20553,9 +20678,6 @@ self: { base com directory filepath HUnit old-time pretty process QuickCheck regex-compat ]; - configureFlags = [ - "-fhsdotnet" "-f-bamsegen" "-f-build-tests" "-f-old-base" - ]; description = "A Windows Installer (MSI) generator framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -20596,6 +20718,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base cmdargs csv diagrams filepath ]; + jailbreak = true; homepage = "http://sebfisch.github.com/haskell-barchart"; description = "Creating Bar Charts in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -20619,7 +20742,6 @@ self: { version = "0.2.0.6"; sha256 = "0avz5pdnvd3kjgp9swpdfxddp60gqpamwd7j4xl8xdj3b2di5zk0"; buildDepends = [ base containers QuickCheck text time ]; - configureFlags = [ "-f-oldquickcheck" ]; homepage = "http://github.com/massysett/barecheck"; description = "QuickCheck implementations for common types"; license = stdenv.lib.licenses.bsd3; @@ -20640,6 +20762,7 @@ self: { base bytestring containers directory filepath ghc ghc-prim html plugins snap-core snap-server text transformers unix-compat ]; + jailbreak = true; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; }) {}; @@ -20663,6 +20786,7 @@ self: { version = "0.1.0.1"; sha256 = "014nc21wnrklsvy5z7w4v9p9psn6bl210l7v97gj42cv6a8jk5nm"; buildDepends = [ base comonad mtl transformers ]; + jailbreak = true; description = "Implementation of barrier monad, can use custom front/back type"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -20674,7 +20798,6 @@ self: { version = "4.7.0.2"; sha256 = "09rp0syv5arj7wmyksmn07g7vps1kwh2k4z1ar1dp7jsav8gxsjp"; buildDepends = [ ghc-prim integer-gmp rts ]; - configureFlags = [ "-f-integer-simple" ]; description = "Basic libraries"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -20700,6 +20823,7 @@ self: { version = "0.3.0.1"; sha256 = "0hgrxr5331lqk7n6vqpi8a05xwwdm3mbd0p52js0rjg9lqcy0akr"; buildDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/bheklilr/base-io-access"; description = "The IO functions included in base delimited into small, composable classes"; license = stdenv.lib.licenses.gpl2; @@ -20724,7 +20848,6 @@ self: { version = "0.2.2.4"; sha256 = "1afc5pchd3vw33bmjbjygkd0l5zh7glbsx4bfyxfscpc1x1l3y52"; buildDepends = [ base ]; - configureFlags = [ "-f-old-base" ]; homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; description = "Unicode alternatives for common functions and operators"; license = stdenv.lib.licenses.bsd3; @@ -20806,6 +20929,7 @@ self: { base base64-bytestring bytestring conduit hspec QuickCheck transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Base64-encode and decode streams of bytes. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -20835,7 +20959,6 @@ self: { base binary bytestring containers hxt-regex-xmlschema mtl SHA shell-escape ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://github.com/solidsnack/bash"; description = "Bash generation library"; license = stdenv.lib.licenses.bsd3; @@ -20931,7 +21054,7 @@ self: { template-haskell text transformers wai-extra wai-handler-fastcgi wai-logger word8 yaml yesod yesod-core yesod-routes yesod-static ]; - configureFlags = [ "-f-library-only" "-f-dev" ]; + jailbreak = true; homepage = "https://github.com/zrho/afp"; description = "A web-based implementation of battleships including an AI opponent"; license = stdenv.lib.licenses.bsd3; @@ -21039,6 +21162,7 @@ self: { base blaze-builder bytestring ghc-prim integer-gmp murmur-hash QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; description = "Generic serializer/deserializer with compact representation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -21113,6 +21237,7 @@ self: { version = "0.2.2.6"; sha256 = "19ygaf2g4yqkfbc6bw6fmf9jsymbj1iallzvl0zw3vjx860rchfg"; buildDepends = [ base mtl time ]; + jailbreak = true; homepage = "http://github.com/tibbe/benchpress"; description = "Micro-benchmarking with detailed statistics"; license = stdenv.lib.licenses.bsd3; @@ -21177,6 +21302,7 @@ self: { ghc-paths ghc-prim haskeline haskell-src-exts language-python monads-tf parseargs process template-haskell transformers ]; + jailbreak = true; homepage = "http://wiki.github.com/bjpop/berp/"; description = "An implementation of Python 3"; license = stdenv.lib.licenses.bsd3; @@ -21237,7 +21363,6 @@ self: { base lens QuickCheck semigroups test-framework test-framework-quickcheck2 test-framework-th ]; - configureFlags = [ "-f-toys" ]; homepage = "https://github.com/Noeda/bet/"; description = "Betfair API bindings. Bet on sports on betting exchanges."; license = stdenv.lib.licenses.mit; @@ -21264,7 +21389,6 @@ self: { version = "0.9.0.2"; sha256 = "0n3nx077hv10rwv2kl3n1a3v40sr1qzfj9jwb6cvd1l0zx42igw8"; buildDepends = [ base ]; - configureFlags = [ "-f-pedantic" ]; homepage = "https://github.com/trskop/between"; description = "Function combinator \"between\" and derived combinators"; license = stdenv.lib.licenses.bsd3; @@ -21295,7 +21419,7 @@ self: { base bimap category-extras containers derive haskell98 mtl template-haskell unix ]; - configureFlags = [ "-f-render" "-f-stats" "-f-binaries" ]; + jailbreak = true; description = "Bidirectionalization for Free! (POPL'09)"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -21333,7 +21457,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base latex parsec utility-ht ]; - configureFlags = [ "-f-buildexamples" "-fbase2" ]; homepage = "http://www.haskell.org/haskellwiki/BibTeX"; description = "Parse, format and processing BibTeX files"; license = stdenv.lib.licenses.bsd3; @@ -21376,6 +21499,7 @@ self: { version = "0.1"; sha256 = "0insqi63q6gvz39l0k584w583cw9m85vdx5dhpyx9qbb5zxyb0rm"; buildDepends = [ base bytestring dataenc mtl ]; + jailbreak = true; description = "Extra helper functions for bidirectional specifications"; license = "LGPL"; }) {}; @@ -21406,6 +21530,7 @@ self: { base directory filepath HarmTrace-Base HUnit ListLike mtl parseargs uu-parsinglib ]; + jailbreak = true; homepage = "http://ddmal.music.mcgill.ca/billboard"; description = "A parser for the Billboard chord dataset"; license = stdenv.lib.licenses.gpl3; @@ -21424,6 +21549,7 @@ self: { base billeksah-pane billeksah-services Cabal containers directory filepath glib gtk mtl parsec pretty transformers ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; @@ -21443,6 +21569,7 @@ self: { base billeksah-services containers directory filepath mtl parsec plugins pretty transformers ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Leksah plugin base"; license = "LGPL"; @@ -21465,6 +21592,7 @@ self: { directory filepath leksah-dummy leksah-main leksah-plugin-pane mtl parsec pretty transformers ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Leksah plugin base"; license = "LGPL"; @@ -21484,6 +21612,7 @@ self: { base billeksah-services containers directory filepath glib gtk mtl parsec pretty time transformers ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; @@ -21500,6 +21629,7 @@ self: { buildDepends = [ base containers directory filepath mtl parsec pretty transformers ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; @@ -21512,7 +21642,6 @@ self: { version = "0.2.4"; sha256 = "1ib54plfsxzmf9wbbdayfdsrcx4s5ffna3ca5ps928fy78wsx4fr"; buildDepends = [ base containers ]; - configureFlags = [ "-fsmall-base" ]; homepage = "http://code.haskell.org/bimap"; description = "Bidirectional mapping between two key types"; license = stdenv.lib.licenses.bsd3; @@ -21561,6 +21690,7 @@ self: { version = "1.0.2.1"; sha256 = "02w5ybp5fdqwz1ffvfs3pfrpx67bzh75njgzr6iai1vrdyjisfkl"; buildDepends = [ base binary bytestring mtl ]; + jailbreak = true; description = "Flexible way to ease transmission of binary data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -21590,6 +21720,7 @@ self: { version = "0.1.0"; sha256 = "1rb4fpx5hlq661md7nrpgpmi7jjdq3r1ky6q9vxl6f72h085acvl"; buildDepends = [ base binary ghc-prim ]; + jailbreak = true; description = "Automatic deriving of Binary using GHC.Generics"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -21670,6 +21801,7 @@ self: { version = "1.0"; sha256 = "1hn6jc4j20z8ni7rpcyamam898yl6jy7zinrhy2rdjvx0p5br13h"; buildDepends = [ base binary bytestring mtl ]; + jailbreak = true; homepage = "http://github.com/gcross/binary-protocol"; description = "Monad to ease implementing a binary network protocol"; license = stdenv.lib.licenses.bsd3; @@ -21684,7 +21816,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base binary bytestring mtl zeromq-haskell ]; - configureFlags = [ "-foptimize" "-f-tests" ]; homepage = "http://github.com/NicolasT/binary-protocol-zmq"; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = stdenv.lib.licenses.bsd3; @@ -21798,6 +21929,7 @@ self: { base bytestring containers deepseq ghc-prim monads-tf mtl numeric-prelude random stm strict transformers type-level-tf unix ]; + jailbreak = true; homepage = "https://github.com/coreyoconnor/bind-marshal"; description = "Data marshaling library that uses type level equations to optimize buffering"; license = stdenv.lib.licenses.bsd3; @@ -21892,7 +22024,6 @@ self: { extraLibraries = [ libX11 libXext libXfixes libXi libXrandr libXxf86vm mesa ]; - configureFlags = [ "-fmacosxusemenubar" "-fmacosxusechdir" ]; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXext; @@ -21921,6 +22052,7 @@ self: { sha256 = "0fw71z74pv8dxw301iss66kmarhlgwj2lpsy0skmlqfkg98zc96k"; buildDepends = [ base bindings-DSL ]; pkgconfigDepends = [ apr-1 ]; + jailbreak = true; homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime (APR)"; license = stdenv.lib.licenses.publicDomain; @@ -21934,6 +22066,7 @@ self: { sha256 = "0sr041vpakklpf2mmy78wl5wl8yzfbwvsy07wlplmlh5rgjdm4wx"; buildDepends = [ base bindings-apr bindings-DSL ]; pkgconfigDepends = [ apr-util-1 ]; + jailbreak = true; homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = stdenv.lib.licenses.publicDomain; @@ -21963,6 +22096,7 @@ self: { buildDepends = [ array base containers unix ]; buildTools = [ alex happy ]; extraLibraries = [ bfd opcodes ]; + jailbreak = true; homepage = "http://projects.haskell.org/bindings-bfd/"; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = stdenv.lib.licenses.gpl3; @@ -22045,6 +22179,7 @@ self: { buildDepends = [ array base bindings-DSL ]; extraLibraries = [ eskit ]; pkgconfigDepends = [ eskit ]; + jailbreak = true; homepage = "http://github.com/a1kmm/bindings-eskit"; description = "Bindings to ESKit"; license = stdenv.lib.licenses.bsd3; @@ -22170,7 +22305,6 @@ self: { sha256 = "1da9n88wwjpm3ph7q73niv3cslpa0h8r0lsyfl35arymxfqpb4c0"; buildDepends = [ base bindings-DSL ]; extraLibraries = [ blas lapack ]; - configureFlags = [ "-f-accelerate" "-f-mkl" ]; homepage = "https://github.com/basvandijk/bindings-levmar"; description = "Low level bindings to the C levmar (Levenberg-Marquardt) library"; license = "unknown"; @@ -22274,7 +22408,6 @@ self: { sha256 = "0hqkp4hvav67xqjfwbik3i06vq8f78jjzf37ncl6wwcw5w65hhrj"; buildDepends = [ base bindings-DSL ]; pkgconfigDepends = [ libzip ]; - configureFlags = [ "-f-nopkgconfig" ]; homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Low level bindings to libzip"; license = stdenv.lib.licenses.bsd3; @@ -22323,6 +22456,7 @@ self: { version = "0.8.0.0"; sha256 = "18i68ivsrdndjpfnyq6dlmmkkx22v3rp619nm26af8ka3qai12j5"; buildDepends = [ base bindings-DSL ]; + jailbreak = true; homepage = "http://www.github.com/massysett/bindings-mpdecimal"; description = "bindings to mpdecimal library"; license = stdenv.lib.licenses.bsd3; @@ -22365,9 +22499,6 @@ self: { sha256 = "0wcxq300ijfkf4zc7p4xwsd9wzhnlss0kxjf04fka01mf9bh3ai2"; buildDepends = [ base bindings-DSL ]; pkgconfigDepends = [ portaudio ]; - configureFlags = [ - "-f-bundle" "-f-wdmks" "-f-wmme" "-f-directsound" "-f-wasapi" - ]; description = "Low-level bindings to portaudio library"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) portaudio;}; @@ -22507,7 +22638,6 @@ self: { sha256 = "13yfhx6krj59qij9yvcl4fr6znd28nbldbv0qfhf83h3h18araf9"; buildDepends = [ base ]; extraLibraries = [ gmp yices ]; - configureFlags = [ "-fyices-dynamic" ]; description = "Bindings to the Yices theorem prover"; license = stdenv.lib.licenses.publicDomain; }) { inherit (pkgs) gmp; inherit (pkgs) yices;}; @@ -22525,6 +22655,7 @@ self: { buildDepends = [ base bytestring Cabal containers directory dlist filepath ]; + jailbreak = true; homepage = "http://gitorious.org/binembed"; description = "Embed data into object files"; license = stdenv.lib.licenses.bsd3; @@ -22540,6 +22671,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base binembed bytestring containers filepath ]; + jailbreak = true; homepage = "http://gitorious.org/binembed"; description = "Example project using binembed to embed data in object files"; license = stdenv.lib.licenses.bsd3; @@ -22560,7 +22692,7 @@ self: { array base binary bytestring containers directory mtl old-time parallel parsec process QuickCheck random tagsoup ]; - configureFlags = [ "-fexamples" "-f-test" ]; + jailbreak = true; homepage = "http://biohaskell.org/Libraries/Bio"; description = "A bioinformatics library"; license = "LGPL"; @@ -22672,7 +22804,6 @@ self: { buildDepends = [ array base binary biocore bytestring cmdargs mtl ]; - configureFlags = [ "-ffclip" "-ffrecover" "-fflower" ]; homepage = "http://biohaskell.org/"; description = "Library and executables for working with SFF files"; license = stdenv.lib.licenses.lgpl21; @@ -22696,6 +22827,7 @@ self: { base biocore bytestring conduit containers hspec HUnit QuickCheck transformers zlib-conduit ]; + jailbreak = true; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22747,6 +22879,7 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/acfoltzer/bit-vector"; description = "Simple bit vectors for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -22783,6 +22916,7 @@ self: { HUnit mtl network QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text unix unordered-containers watchdog ]; + jailbreak = true; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22796,6 +22930,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Bitly directory filepath regexpr ]; + jailbreak = true; homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A command line tool to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; @@ -22808,7 +22943,6 @@ self: { version = "0.0.2"; sha256 = "1flrfbrsnlcal7qyvl1wb0p8c14w0mvvkmgs7d943jqnlh4gay5m"; buildDepends = [ base bytestring ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "A library for handling and manipulating bitmaps (rectangular pixel arrays)"; license = stdenv.lib.licenses.bsd3; @@ -22821,7 +22955,6 @@ self: { version = "0.0.1.5"; sha256 = "1wq1p0vvif750gpyh2kq3agzwga3hx0fq28irbw5dgrz462dd9pv"; buildDepends = [ base bitmap OpenGL ]; - configureFlags = [ "-fopengl29" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for Data.Bitmap."; license = stdenv.lib.licenses.bsd3; @@ -22854,7 +22987,6 @@ self: { sha256 = "12s5yk47y0zqzqiyaw9jchyl3crf1id9dk67m638b070d46k29p6"; buildDepends = [ base bytes mtl transformers ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; homepage = "http://github.com/analytics/bits"; description = "Various bit twiddling and bitwise serialization primitives"; license = stdenv.lib.licenses.bsd3; @@ -22869,7 +23001,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-test" ]; description = "Atomic bit operations on memory locations for low-level synchronization"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22882,6 +23013,7 @@ self: { sha256 = "08hgl1pvwadnrgqcs1yl7lvqgh955swbscpay4chb097pqqggdrj"; buildDepends = [ base bytestring conduit mtl ]; testDepends = [ base bytestring conduit hspec HUnit mtl ]; + jailbreak = true; description = "Bitstream support for Conduit"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22895,7 +23027,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-test" ]; + configureFlags = [ "--ghc-option=-lgcc_s" ]; description = "Efficient high-level bit operations not found in Data.Bits"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22911,6 +23043,7 @@ self: { buildDepends = [ base deepseq ghc-prim integer-gmp ]; testDepends = [ base QuickCheck tasty tasty-quickcheck ]; extraLibraries = [ gmp ]; + jailbreak = true; description = "A space-efficient set data structure"; license = stdenv.lib.licenses.mit; }) { inherit (pkgs) gmp;}; @@ -22929,6 +23062,7 @@ self: { base bindings-DSL bindings-glib bindings-gobject ]; pkgconfigDepends = [ gtk pango ]; + jailbreak = true; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; }) { inherit (pkgs.gnome) gtk; inherit (pkgs.gnome) pango;}; @@ -22945,6 +23079,7 @@ self: { testDepends = [ base base-unicode-symbols bytestring QuickCheck vector ]; + jailbreak = true; homepage = "https://github.com/phonohawk/bitstream"; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = stdenv.lib.licenses.publicDomain; @@ -22957,7 +23092,6 @@ self: { version = "0.0.0"; sha256 = "1ix2x4v76wq5148k1aax69cf8sk14cd0z362dz1d2qmj9qxsnsw8"; buildDepends = [ base bytestring ]; - configureFlags = [ "-f-withquickcheck" "-fbase4" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Lazy bit strings"; license = stdenv.lib.licenses.bsd3; @@ -22991,6 +23125,7 @@ self: { aeson base bencoding bytestring cereal directory filepath hspec network QuickCheck quickcheck-instances text time ]; + jailbreak = true; homepage = "https://github.com/cobit/bittorrent"; description = "Bittorrent protocol implementation"; license = stdenv.lib.licenses.bsd3; @@ -23022,6 +23157,7 @@ self: { sha256 = "0k3xzw6lcrffbv8hqgg4kaanizql8r888ap4bw22sh3l3rq7zasn"; buildDepends = [ array base bytestring ]; testDepends = [ base QuickCheck ]; + jailbreak = true; homepage = "https://gitorious.org/bitwise"; description = "fast multi-dimensional unboxed bit packed Bool arrays"; license = stdenv.lib.licenses.bsd3; @@ -23054,6 +23190,7 @@ self: { aws base bytestring directory filepath HDBC HDBC-sqlite3 hslogger http-conduit MissingH pureMD5 random strict text unix utf8-string ]; + jailbreak = true; homepage = "https://github.com/ingesson/bkr"; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = stdenv.lib.licenses.bsd3; @@ -23066,7 +23203,6 @@ self: { version = "0.3.1"; sha256 = "1d2iz48n0ayn0hi9xa110pxy1mv5a4m21rmbpvs6ki1a7cv4ghn9"; buildDepends = [ array base containers ]; - configureFlags = [ "-fsplitbase" ]; description = "A set data structure with approximate searching"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -23132,6 +23268,7 @@ self: { version = "0.5"; sha256 = "15k3vf9jqcw1a9gyppkhn5ibj7ld8mb2irfhbwd3plj86xyxxa0g"; buildDepends = [ base bytestring text vector ]; + jailbreak = true; homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -23148,6 +23285,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base blakesum bytestring haskell98 text vector ]; + jailbreak = true; homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -23179,6 +23317,7 @@ self: { version = "0.7.6"; sha256 = "1q6fkw2bsppymy5wi7mgkl09caij52xplw64786548z9i95r0bli"; buildDepends = [ base ieee QuickCheck storable-complex ]; + jailbreak = true; homepage = "http://github.com/patperry/blas"; description = "Bindings to the BLAS library"; license = stdenv.lib.licenses.bsd3; @@ -23193,9 +23332,6 @@ self: { buildDepends = [ base storable-complex ]; testDepends = [ base vector ]; extraLibraries = [ blas ]; - configureFlags = [ - "-f-cblas" "-f-mkl" "-f-openblas" "-f-no-accelerate" "-f-no-netlib" - ]; homepage = "https://github.com/Rufflewind/blas-hs"; description = "Low-level Haskell bindings to Blas"; license = stdenv.lib.licenses.mit; @@ -23332,6 +23468,7 @@ self: { version = "0.1.0.0"; sha256 = "11bw5ywvi7dlz5inch3z0vlg936ch1rnp99bh4nmwskvszidd7kg"; buildDepends = [ base blaze-html bytestring hexpat text ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/blaze-html-hexpat"; description = "A hexpat backend for blaze-html"; license = stdenv.lib.licenses.bsd3; @@ -23401,7 +23538,6 @@ self: { base blaze-builder bytestring double-conversion QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-fnative" "-f-developer" ]; homepage = "http://github.com/bos/blaze-textual"; description = "Fast rendering of common datatypes"; license = stdenv.lib.licenses.bsd3; @@ -23419,7 +23555,7 @@ self: { base blaze-builder bytestring ghc-prim integer-gmp old-locale text time vector ]; - configureFlags = [ "-fnative" "-f-developer" ]; + jailbreak = true; homepage = "http://github.com/mailrank/blaze-textual"; description = "Fast rendering of common datatypes (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -23445,7 +23581,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base unix ]; - configureFlags = [ "-f-usb" ]; description = "Control library for blink(1) LED from ThingM"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -23536,6 +23671,7 @@ self: { http-client http-types QuickCheck semigroups text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -23603,6 +23739,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base gtk ]; + jailbreak = true; description = "Utilities for Bluetile"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -23636,7 +23773,7 @@ self: { testDepends = [ array base containers QuickCheck random transformers utility-ht ]; - configureFlags = [ "-fsplitbase" "-fbuildexamples" ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/games/"; description = "Three games for inclusion in a web server"; license = "GPL"; @@ -23773,6 +23910,7 @@ self: { base containers data-accessor data-accessor-template font-opengl-basic4x6 GLFW-b MonadRandom mtl OpenGL ]; + jailbreak = true; description = "Boomshine clone"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -23955,6 +24093,7 @@ self: { buildDepends = [ base binary cmdargs containers directory filepath ListZipper text ]; + jailbreak = true; description = "Simple part of speech tagger"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24011,6 +24150,7 @@ self: { version = "0.0.8"; sha256 = "0r1gd6jxwzqana2b3i3xm8mx66lq4zkcir11c3v78g9fjyyhy7dh"; buildDepends = [ base bson ghc-prim text ]; + jailbreak = true; description = "Generic functionality for BSON"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24022,6 +24162,7 @@ self: { version = "0.0.1"; sha256 = "03ifgmifk0dx6fzws1qlx3c1nslrkvwman5g3c4iag842bl03gxp"; buildDepends = [ base bson ghc-prim ]; + jailbreak = true; description = "Generics functionality for BSON"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24087,6 +24228,7 @@ self: { array base base64-bytestring bytestring cereal containers directory filepath hashable mtl QuickCheck random snappy stm time unix ]; + jailbreak = true; homepage = "https://github.com/brinchj/btree-concurrent"; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; @@ -24101,7 +24243,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring time unix ]; - configureFlags = [ "-f-examples" ]; homepage = "https://github.com/redneb/hs-btrfs"; description = "Bindings to the btrfs API"; license = stdenv.lib.licenses.bsd3; @@ -24123,7 +24264,7 @@ self: { data-default http-conduit http-types iso8601-time resourcet text time transformers unordered-containers vector ]; - configureFlags = [ "-f-builddemo" ]; + jailbreak = true; homepage = "https://github.com/sethfowler/hsbugzilla"; description = "A Haskell interface to the Bugzilla native REST API"; license = stdenv.lib.licenses.bsd3; @@ -24136,6 +24277,7 @@ self: { version = "0.1.0.2"; sha256 = "1p9xi5ms7rxgzn5jxv5nv8bynyfb9ll952k0j7di5s7zbga8v1pg"; buildDepends = [ base bytestring containers dlist text ]; + jailbreak = true; description = "Typeclass for builders of linear data structures"; license = stdenv.lib.licenses.mit; }) {}; @@ -24152,6 +24294,7 @@ self: { base bytestring containers directory mtl old-locale pretty process random stm time ]; + jailbreak = true; homepage = "http://code.ouroborus.net/buildbox"; description = "Rehackable components for writing buildbots and test harnesses"; license = stdenv.lib.licenses.bsd3; @@ -24166,6 +24309,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base buildbox parseargs ]; + jailbreak = true; homepage = "http://code.ouroborus.net/buildbox"; description = "Tools for working with buildbox benchmark result files"; license = stdenv.lib.licenses.bsd3; @@ -24198,7 +24342,6 @@ self: { mtl old-time process text time transformers unordered-containers vector ]; - configureFlags = [ "-f-lib-werror" ]; homepage = "https://github.com/JPMoresmau/BuildWrapper"; description = "A library and an executable that provide an easy API for a Haskell IDE"; license = stdenv.lib.licenses.bsd3; @@ -24244,6 +24387,7 @@ self: { sha256 = "1pgrqjdc4n97s7jsb9ddmjkw3qa4c28p4fp1ajyx5bfxdll44dwm"; buildDepends = [ base deepseq ]; testDepends = [ base ]; + jailbreak = true; homepage = "http://parsci.com/"; description = "Burst detection algorithms"; license = stdenv.lib.licenses.gpl2; @@ -24277,6 +24421,7 @@ self: { base binary bytestring containers dataenc mtl old-locale parsec pretty time ]; + jailbreak = true; homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; @@ -24338,7 +24483,6 @@ self: { test-framework-hunit text ]; pkgconfigDepends = [ glib ]; - configureFlags = [ "-fthreaded" "-f-interactivetests" ]; description = "Draw pretty sequence diagrams of D-Bus traffic"; license = "unknown"; }) { inherit (pkgs) glib;}; @@ -24352,7 +24496,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-test" ]; homepage = "http://bitbucket.org/iago/bv-haskell"; description = "Bit-vector arithmetic library"; license = stdenv.lib.licenses.bsd3; @@ -24390,7 +24533,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring ]; - configureFlags = [ "-f-executable" ]; homepage = "http://github.com/vincenthz/hs-bytedump"; description = "Flexible byte dump helpers for human readers"; license = stdenv.lib.licenses.bsd3; @@ -24422,7 +24564,6 @@ self: { transformers-compat void ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; homepage = "http://github.com/analytics/bytes"; description = "Sharing code for serialization between binary and cereal"; license = stdenv.lib.licenses.bsd3; @@ -24444,7 +24585,7 @@ self: { QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-f-integer-simple" ]; + jailbreak = true; homepage = "https://github.com/haskell/bytestring"; description = "Fast, compact, strict and lazy byte strings with a list interface"; license = stdenv.lib.licenses.bsd3; @@ -24470,9 +24611,6 @@ self: { version = "0.10.4.0.1"; sha256 = "0iqh6k6dvl75z1m0i1grkr4w5ynxrd6qd7ynjl0bkd39nbwfay90"; buildDepends = [ base bytestring deepseq ]; - configureFlags = [ - "-fbytestring_has_builder" "-fbytestring_has_itoa_c" - ]; description = "The new bytestring builder, packaged outside of GHC"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24485,6 +24623,7 @@ self: { sha256 = "1z65br00rplhniaw9fg3phpxwf13acgycn5hnhyjfcyr962xp03x"; editedCabalFile = "e3aa2813d237dcd0a12bfd27293d8bf592cdf13bfdc01a4b609f34df238d0417"; buildDepends = [ base bytestring utf8-string ]; + jailbreak = true; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24515,7 +24654,6 @@ self: { version = "0.1.2"; sha256 = "0x7qklb36jwxry1ih5x3jw7s861vlvd5g9h7yn7b2x64c0phyj0r"; buildDepends = [ array base bytestring dlist ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/bytestring-csv"; description = "Parse CSV formatted data efficiently"; license = stdenv.lib.licenses.bsd3; @@ -24575,7 +24713,6 @@ self: { sha256 = "09ymg1n21668wn4harxg0cqlz98fz990bangpy99w2z7d6cwbc05"; buildDepends = [ array base bytestring ]; buildTools = [ alex ]; - configureFlags = [ "-f-bytestringinbase" "-fsplitbase" "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "Parse and produce literals efficiently from strict or lazy bytestrings"; license = stdenv.lib.licenses.bsd3; @@ -24588,7 +24725,6 @@ self: { version = "0.2.2"; sha256 = "1bv9xf4cpph1cbdwv6rbmq8ppi5wjpgd97lwln5l9ky5rvnaxg3v"; buildDepends = [ base bytestring unix ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://code.haskell.org/~dons/code/bytestring-mmap/"; description = "mmap support for strict ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -24603,7 +24739,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring containers ]; - configureFlags = [ "-f-cli" ]; homepage = "http://github.com/solidsnack/bytestring-nums"; description = "Parse numeric literals from ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -24628,7 +24763,6 @@ self: { version = "1.0.3"; sha256 = "1v9cl7d4fcchbdrpbgjj4ilg79cj241vzijiifdsgkq30ikv2yxs"; buildDepends = [ base bytestring terminal-progress-bar time ]; - configureFlags = [ "-fuse-system-progressbar" ]; homepage = "http://github.com/acw/bytestring-progress"; description = "A library for tracking the consumption of a lazy ByteString"; license = stdenv.lib.licenses.bsd3; @@ -24642,6 +24776,7 @@ self: { sha256 = "01yk1pmsp6c89z4lf6p37g4jqbqz1d93g61gn4i99p8dijbg0pbh"; buildDepends = [ base bytestring ]; testDepends = [ base bytestring hspec HUnit rematch ]; + jailbreak = true; homepage = "github.com/tcrayford/rematch"; description = "Rematch support for ByteString"; license = stdenv.lib.licenses.mit; @@ -24658,7 +24793,6 @@ self: { buildDepends = [ array base binary bytestring containers integer-gmp ]; - configureFlags = [ "-f-integer-simple" ]; homepage = "http://code.haskell.org/~dolio/"; description = "Efficient conversion of values into readable byte strings"; license = stdenv.lib.licenses.bsd3; @@ -24671,10 +24805,6 @@ self: { version = "0.2.4"; sha256 = "1fv3xh52hqhzdbq78c3lrgx5vd49cabwp9ww5ki1888zlq29pyck"; buildDepends = [ base binary bytestring ]; - configureFlags = [ - "-f-bytestringinbase" "-fapplicativeinbase" "-f-usecinternal" - "-fbase4" - ]; homepage = "http://code.haskell.org/~wren/"; description = "An efficient finite map from (byte)strings to values"; license = stdenv.lib.licenses.bsd3; @@ -24687,7 +24817,6 @@ self: { version = "0.3"; sha256 = "1g99vbp14ki563lb41y1fxlgvdmrmq1y0xsk0ia1m438rdpnh2qd"; buildDepends = [ base bytestring containers ]; - configureFlags = [ "-fapplicative-in-base" "-f-split-base" ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24699,7 +24828,6 @@ self: { version = "0.4.1"; sha256 = "019axq65hmgmszkc1lyyyy8rpv5xkjbf1pmgz1bz0hnc8lgv58pd"; buildDepends = [ base bytestring containers ]; - configureFlags = [ "-fapplicative-in-base" "-f-split-base" ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24711,7 +24839,6 @@ self: { version = "0.2"; sha256 = "07hx3072zg9y3kj6h99yl8fd3n115x4z8z411c1cpx1hj292d57f"; buildDepends = [ base bytestring ]; - configureFlags = [ "-fsplitbase" ]; description = "A ReadP style parser library for ByteString"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -24841,7 +24968,6 @@ self: { base filepath HUnit shelly test-framework test-framework-hunit text transformers ]; - configureFlags = [ "-f-regression" "-fbase3" ]; homepage = "https://github.com/haskell/c2hs"; description = "C->Haskell FFI tool that gives some cross-language type safety"; license = stdenv.lib.licenses.gpl2; @@ -24899,6 +25025,7 @@ self: { buildDepends = [ base Cabal directory filepath HTTP optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/joelteon/cabal-audit.git"; description = "Check how up-to-date your .cabal dependencies are."; license = stdenv.lib.licenses.mit; @@ -24957,6 +25084,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Cabal optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/benarmston/cabal-constraints"; description = "Repeatable builds for cabalized Haskell projects"; license = stdenv.lib.licenses.mit; @@ -25001,7 +25129,6 @@ self: { parsec pretty prettyclass process pureMD5 regex-tdfa set-extra syb text unix Unixutils utf8-string ]; - configureFlags = [ "-f-local-debian" "-f-tests" ]; homepage = "https://github.com/ddssff/cabal-debian"; description = "Create a Debianization for a Cabal package"; license = stdenv.lib.licenses.bsd3; @@ -25016,6 +25143,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Cabal containers directory filepath ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/cabal-dependency-licenses"; description = "Compose a list of a project's transitive dependencies with their licenses"; license = stdenv.lib.licenses.bsd3; @@ -25038,7 +25166,7 @@ self: { zlib ]; buildTools = [ cabal-install ]; - configureFlags = [ "-f-build-tests" "-f-no-cabal-dev" ]; + jailbreak = true; homepage = "http://github.com/creswick/cabal-dev"; description = "Manage sandboxed Haskell build environments"; license = stdenv.lib.licenses.bsd3; @@ -25127,7 +25255,7 @@ self: { pretty process QuickCheck regex-posix stm test-framework test-framework-hunit test-framework-quickcheck2 time unix zlib ]; - configureFlags = [ "-fnetwork-uri" "-f-old-directory" ]; + jailbreak = true; postInstall = '' mkdir $out/etc mv bash-completion $out/etc/bash_completion.d @@ -25171,7 +25299,7 @@ self: { array base Cabal containers directory filepath HTTP network old-time pretty process random time unix zlib ]; - configureFlags = [ "-fbytestring-in-base" "-f-old-base" ]; + jailbreak = true; homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.2"; license = stdenv.lib.licenses.bsd3; @@ -25192,7 +25320,7 @@ self: { array base Cabal containers directory filepath HTTP network old-time pretty process random time unix zlib ]; - configureFlags = [ "-fbytestring-in-base" "-f-old-base" ]; + jailbreak = true; homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.4"; license = stdenv.lib.licenses.bsd3; @@ -25222,6 +25350,7 @@ self: { buildDepends = [ base Cabal directory fgl filepath parsec process text ]; + jailbreak = true; homepage = "http://github.com/gimbo/cabal-macosx"; description = "Cabal support for creating Mac OSX application bundles"; license = stdenv.lib.licenses.bsd3; @@ -25239,7 +25368,6 @@ self: { isExecutable = true; buildDepends = [ base shelly system-fileio system-filepath text ]; testDepends = [ base hspec shelly system-filepath text unix ]; - configureFlags = [ "-fghc7" ]; homepage = "http://www.yesodweb.com/"; description = "build multiple packages at once"; license = stdenv.lib.licenses.bsd3; @@ -25258,7 +25386,6 @@ self: { buildDepends = [ base bytestring containers directory HTTP process tar ]; - configureFlags = [ "-f-generate" ]; homepage = "http://github.com/snoyberg/cabal-nirvana"; description = "Avoid Cabal dependency hell by constraining to known good versions. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -25273,6 +25400,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Cabal directory filepath ]; + jailbreak = true; description = "Show dependencies of program being built in current directory"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25289,6 +25417,7 @@ self: { base bytestring Cabal derive ghc MissingH mtl tar template-haskell uniplate ]; + jailbreak = true; homepage = "http://github.com/explicitcall/cabal-query"; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = stdenv.lib.licenses.bsd3; @@ -25369,6 +25498,7 @@ self: { base bytestring Cabal containers directory explicit-exception fgl filepath process transformers utility-ht ]; + jailbreak = true; description = "Topologically sort cabal packages"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25430,6 +25560,7 @@ self: { sha256 = "1fs5fciplzrlxykn3kbxdyij9vjzs1vq2n5f72vadg9c33961agv"; buildDepends = [ base Cabal QuickCheck ]; testDepends = [ base Cabal ]; + jailbreak = true; homepage = "https://github.com/zimothy/cabal-test-quickcheck"; description = "QuickCheck for Cabal"; license = stdenv.lib.licenses.mit; @@ -25457,6 +25588,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base filepath HTTP network ]; + jailbreak = true; description = "Command-line tool for uploading packages to Hackage"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25489,6 +25621,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Cabal hsemail hxt parsec process ]; + jailbreak = true; homepage = "http://gregheartsfield.com/cabal2doap/"; description = "Cabal to Description-of-a-Project (DOAP)"; license = stdenv.lib.licenses.bsd3; @@ -25593,7 +25726,6 @@ self: { buildDepends = [ base bytestring Cabal containers directory filepath pretty process ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/cabalgraph"; description = "Generate pretty graphs of module trees from cabal files"; license = stdenv.lib.licenses.bsd3; @@ -25696,7 +25828,6 @@ self: { buildDepends = [ array base bytestring mtl text utf8-string ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ cairo ]; - configureFlags = [ "-fcairo_svg" "-fcairo_ps" "-fcairo_pdf" ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Cairo library"; license = stdenv.lib.licenses.bsd3; @@ -25711,7 +25842,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cairo glib gtk ]; - configureFlags = [ "-fsplitbase" ]; description = "A template for building new GUI applications using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25822,7 +25952,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base harpy haskell98 mtl ]; - configureFlags = [ "-f-debug" ]; description = "A small compiler for arithmetic expressions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25837,6 +25966,7 @@ self: { isExecutable = true; buildDepends = [ base haskeline mtl parsec QuickCheck ]; testDepends = [ base mtl parsec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/sumitsahrawat/calculator"; description = "A calculator that operates on string inputs"; license = stdenv.lib.licenses.gpl2; @@ -25872,6 +26002,7 @@ self: { buildDepends = [ base containers cpphs lens mtl parsec transformers ]; + jailbreak = true; homepage = "https://github.com/mmirman/caledon"; description = "a logic programming language based on the calculus of constructions"; license = stdenv.lib.licenses.gpl3; @@ -25898,9 +26029,7 @@ self: { lens linear minioperational mtl objective OpenGL OpenGLRaw random reflection template-haskell text transformers vector WAVE ]; - configureFlags = [ - "-fglcoreprofile" "-fglforwardcompat" "-f-buildhelloworld" - ]; + jailbreak = true; homepage = "https://github.com/fumieval/call"; description = "The call game engine"; license = stdenv.lib.licenses.bsd3; @@ -25934,6 +26063,7 @@ self: { http-enumerator http-types mtl old-locale process text time transformers unordered-containers url ]; + jailbreak = true; homepage = "http://github.com/michaelxavier/Campfire"; description = "Haskell implementation of the Campfire API"; license = stdenv.lib.licenses.bsd3; @@ -25969,6 +26099,7 @@ self: { base bytestring Cabal containers directory filepath hspec hxt hxt-xpath parsec QuickCheck split ]; + jailbreak = true; homepage = "https://github.com/klangner/cantor"; description = "Application for analysis of java source code"; license = stdenv.lib.licenses.bsd3; @@ -26052,7 +26183,7 @@ self: { base containers HUnit linear sdl2 test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-f-fix-opengl21" "-f-build-toys" ]; + jailbreak = true; homepage = "https://github.com/Noeda/caramia/"; description = "High-level OpenGL bindings"; license = stdenv.lib.licenses.mit; @@ -26103,7 +26234,6 @@ self: { version = "0.1.5.2"; sha256 = "0kjqxjnamhnpjjf2bgm1gnsy6jx1fjbn5mx394pyx1vq3lkfgfb0"; buildDepends = [ array base binary bytestring ix-shapable syb ]; - configureFlags = [ "-fbase4" "-f-bytestringinbase" "-fsplitbase" ]; description = "A C-compatible array library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -26224,6 +26354,7 @@ self: { base blaze-builder bytestring colour containers lens mtl text utf8-string web-routes ]; + jailbreak = true; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -26285,6 +26416,7 @@ self: { buildDepends = [ base deepseq haskell98 HaXml network parallel pretty ]; + jailbreak = true; homepage = "http://www.cs.st-andrews.ac.uk/~hwloidl/SCIEnce/SymGrid-Par/CASH/"; description = "the Computer Algebra SHell"; license = stdenv.lib.licenses.bsd3; @@ -26356,7 +26488,7 @@ self: { containers mtl ]; testDepends = [ base QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "https://github.com/domdere/cassava-conduit"; description = "Conduit interface for cassava package"; license = stdenv.lib.licenses.bsd3; @@ -26377,7 +26509,7 @@ self: { base bytestring cassava io-streams QuickCheck tasty tasty-quickcheck vector ]; - configureFlags = [ "-f-tutorial" "-f-maintainer" ]; + jailbreak = true; homepage = "https://github.com/pjones/cassava-streams"; description = "io-streams interface for the cassava CSV library"; license = stdenv.lib.licenses.bsd3; @@ -26417,6 +26549,7 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text Thrift time ]; + jailbreak = true; homepage = "http://github.com/ozataman/cassy"; description = "A high level driver for the Cassandra datastore"; license = stdenv.lib.licenses.bsd3; @@ -26442,6 +26575,7 @@ self: { base hspec QuickCheck tasty tasty-golden tasty-hspec tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/erochest/castle"; description = "A tool to manage shared cabal-install sandboxes"; license = stdenv.lib.licenses.asl20; @@ -26491,7 +26625,6 @@ self: { version = "1.0.7"; sha256 = "18ihv16g4w0s6n89c64j4998hbsgzhp5w9ph2gdkygq7f30cx7f2"; buildDepends = [ base void ]; - configureFlags = [ "-f-optimize" ]; homepage = "http://github.com/ekmett/categories"; description = "Categories"; license = stdenv.lib.licenses.bsd3; @@ -26531,7 +26664,6 @@ self: { version = "1.0.2"; sha256 = "1sw5ngwrarq1lsd4c6v2wdmgbhkkq6kpybb62r8ccm11ddgn3yiq"; buildDepends = [ base bytestring directory filepath unix ]; - configureFlags = [ "-fposix" ]; description = "Ways to write a file cautiously, to reduce the chances of problems such as data loss due to crashes or power failures"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -26591,7 +26723,6 @@ self: { process random time ]; extraLibraries = [ cci ]; - configureFlags = [ "-f-examples" ]; description = "Bindings for the CCI networking library"; license = stdenv.lib.licenses.bsd3; }) { cci = null;}; @@ -26603,6 +26734,7 @@ self: { version = "0.0.0"; sha256 = "18gnm6skzdnh6cis7l7v3d5813zn6irw6nywg6shffrn8v2y6xh7"; buildDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://tomahawkins.org"; description = "A Haskell implementation of the CCNx network protocol"; license = stdenv.lib.licenses.bsd3; @@ -26620,7 +26752,6 @@ self: { bindings-cctools bytestring lens monad-loops unix ]; extraLibraries = [ dttools ]; - configureFlags = [ "-f-warn" ]; homepage = "http://bitbucket.org/badi/hs-cctools-workqueue"; description = "High-level interface to CCTools' WorkQueue library"; license = stdenv.lib.licenses.gpl2; @@ -26639,6 +26770,7 @@ self: { buildDepends = [ base bytestring containers mtl parsec utf8-string ]; + jailbreak = true; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; }) {}; @@ -26652,6 +26784,7 @@ self: { buildDepends = [ base cairo glib gtk mtl ]; buildTools = [ c2hs ]; pkgconfigDepends = [ gtk ]; + jailbreak = true; description = "Cairo-based CellRenderer"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs.gnome) gtk;}; @@ -26663,7 +26796,6 @@ self: { version = "0.4.1.1"; sha256 = "15rhfn9hrjm01ksh9xpz9syxsp9vkvpp6b736iqq38wv2wb7416z"; buildDepends = [ array base bytestring containers ghc-prim ]; - configureFlags = [ "-fsplit-base" ]; description = "A binary serialization library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -26694,6 +26826,7 @@ self: { version = "0.1.1"; sha256 = "04mlg1r2qvrwdzcfbf1aqs4bf9n2gc7cwv73fbhld2ji5naa6fwb"; buildDepends = [ base cereal ghc-prim ]; + jailbreak = true; description = "Automatic deriving of Serialize using GHC.Generics"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -26716,6 +26849,7 @@ self: { version = "0.1"; sha256 = "1gr22ziz9bj4q3y8j1vg46m648zqvbajfdks8p64xc28ci25pw2s"; buildDepends = [ array base cereal ]; + jailbreak = true; homepage = "http://github.com/jystic/cereal-ieee754"; description = "Floating point support for the 'cereal' serialization library"; license = stdenv.lib.licenses.bsd3; @@ -26785,7 +26919,6 @@ self: { asn1-data base bytestring containers crypto-pubkey-types cryptohash directory filepath mtl pem process time ]; - configureFlags = [ "-f-executable" "-f-test" ]; homepage = "http://github.com/vincenthz/hs-certificate"; description = "Certificates and Key Reader/Writer"; license = stdenv.lib.licenses.bsd3; @@ -26889,7 +27022,7 @@ self: { base bytestring containers exceptions mtl multipart network network-uri old-locale old-time parsec xhtml ]; - configureFlags = [ "-fnetwork-uri" ]; + jailbreak = true; homepage = "https://github.com/cheecheeo/haskell-cgi"; description = "A library for writing CGI programs"; license = stdenv.lib.licenses.bsd3; @@ -26968,10 +27101,6 @@ self: { array base binary bytestring Codec-Image-DevIL containers data-reify directory GLUT OpenGLRaw process time ]; - configureFlags = [ - "-f-tutorial" "-f-example" "-f-cbbe1" "-f-simple" "-f-chalkmark" - "-f-test1" "-fserver" "-f-all" - ]; homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard"; description = "Combinators for building and processing 2D images"; license = stdenv.lib.licenses.bsd3; @@ -26984,6 +27113,7 @@ self: { version = "0.1"; sha256 = "1gvnp176j8gd0s6wzq10zpiqkn3wma99pwn3f78wgxm9rh588gh2"; buildDepends = [ array base chalkboard GLUT OpenGL time ]; + jailbreak = true; homepage = "http://ittc.ku.edu/~andygill/chalkboard.php"; description = "OpenGL based viewer for chalkboard rendered images"; license = stdenv.lib.licenses.bsd3; @@ -27041,6 +27171,7 @@ self: { base configurator containers filepath heist lens mtl QuickCheck random snap snap-core snap-extras snap-server text xmlhtml ]; + jailbreak = true; homepage = "https://github.com/soostone/charade"; description = "Rapid prototyping websites with Snap and Heist"; license = stdenv.lib.licenses.bsd3; @@ -27069,6 +27200,7 @@ self: { version = "1.0"; sha256 = "1w302v6pmi448k2rq2cc7wp1javsd9rgk7r7i43lxvbjhniydn7p"; buildDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://www.github.com/batterseapower/charsetdetect"; description = "Character set detection using Mozilla's Universal Character Set Detector"; license = "LGPL"; @@ -27097,6 +27229,7 @@ self: { buildDepends = [ base Chart colour data-default-class lens vector ]; + jailbreak = true; description = "Easily render histograms with Chart"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -27119,7 +27252,6 @@ self: { containers ghc-prim HUnit test-framework test-framework-hunit vector ]; - configureFlags = [ "-f-debug" ]; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; license = stdenv.lib.licenses.bsd3; @@ -27151,6 +27283,7 @@ self: { quickcheck-instances test-framework test-framework-hunit test-framework-quickcheck2 test-framework-skip text tokenize ]; + jailbreak = true; homepage = "http://github.com/creswick/chatter"; description = "A library of simple NLP algorithms"; license = stdenv.lib.licenses.bsd3; @@ -27169,6 +27302,7 @@ self: { ansi-terminal base chatty-utils directory mtl process random setenv template-haskell text time transformers unix ]; + jailbreak = true; description = "Some monad transformers and typeclasses for abstraction of global dependencies"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -27191,6 +27325,7 @@ self: { version = "0.7.1.2"; sha256 = "17jilk0p6wvnpc064wjk6flilz78yx32f092wn0z8dbc9hpw32wf"; buildDepends = [ base mtl text transformers ]; + jailbreak = true; description = "Some utilities every serious chatty-based application may need"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -27210,7 +27345,6 @@ self: { aeson base blaze-html bytestring containers data-default http-types mtl syb text uniplate wai wai-extra xss-sanitize ]; - configureFlags = [ "-f-dingus" ]; homepage = "http://github.com/jgm/cheapskate"; description = "Experimental markdown processor"; license = stdenv.lib.licenses.bsd3; @@ -27242,6 +27376,7 @@ self: { base Cabal containers explicit-exception filepath haskell-src-exts non-empty transformers utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Import_modules_properly"; description = "Check whether module and package imports conform to the PVP"; license = stdenv.lib.licenses.bsd3; @@ -27281,7 +27416,6 @@ self: { ansi-terminal base bytestring options patience random template-haskell text transformers ]; - configureFlags = [ "-fcolor-output" ]; homepage = "https://john-millikin.com/software/chell/"; description = "A simple and intuitive library for automated testing"; license = stdenv.lib.licenses.mit; @@ -27318,7 +27452,6 @@ self: { version = "0.2.0"; sha256 = "1v9qhnknqn8bsxzdcwskhssmmhbrr0d1rrxqm6ssf6j2jvv3diay"; buildDepends = [ array attoparsec base bytestring containers ]; - configureFlags = [ "-f-no-pgn" ]; homepage = "http://arnovanlumig.com/chesshs.html"; description = "Simple library for validating chess moves and parsing PGN files"; license = stdenv.lib.licenses.bsd3; @@ -27347,6 +27480,7 @@ self: { version = "1.0.0"; sha256 = "1x14xl9hm9n3zczj6xhffvpac09q5a13i94fhkq2kzj2s3rk1b4z"; buildDepends = [ base chp chp-plus mtl ]; + jailbreak = true; homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "MTL class instances for the CHP library"; license = stdenv.lib.licenses.bsd3; @@ -27378,6 +27512,7 @@ self: { version = "1.0.0"; sha256 = "0jil6p0cw8bbpzb0kf9lxljdnbbp0xyq7c6x7bfc7291kqkafgdi"; buildDepends = [ base containers deepseq mtl pretty TypeCompose ]; + jailbreak = true; homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A mirror implementation of chp that generates a specification of the program"; license = stdenv.lib.licenses.bsd3; @@ -27390,6 +27525,7 @@ self: { version = "1.0.0"; sha256 = "0d4hcqpjxmns1fhq918s6z9f4bxlbjlkxzq5xkpqwjxpzy83wq23"; buildDepends = [ base chp chp-plus transformers ]; + jailbreak = true; homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "Transformers instances for the CHP library"; license = stdenv.lib.licenses.bsd3; @@ -27402,6 +27538,7 @@ self: { version = "0.2.0.1"; sha256 = "0qy2ahnp324jh0ybqwsa4nc3r2x1hkbrg6sl6f8dg1xnr0gpaag2"; buildDepends = [ base deepseq ghc-prim thyme vector-space ]; + jailbreak = true; description = "measure timings of data evaluation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -27436,6 +27573,7 @@ self: { parsec text transformers ]; testDepends = [ base HUnit text transformers unix ]; + jailbreak = true; homepage = "http://github.com/marcotmarcot/chuchu"; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; @@ -27481,6 +27619,7 @@ self: { isExecutable = true; buildDepends = [ base binary bytestring text ]; testDepends = [ base binary bytestring HUnit text ]; + jailbreak = true; description = "Human-readable storage of text/binary objects"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -27503,6 +27642,7 @@ self: { version = "0.1.1"; sha256 = "0farjdyq6w33jm0qqdkfd6l7b8rr6k55dqfha643mj6nh1y904az"; buildDepends = [ base bytestring language-c ]; + jailbreak = true; homepage = "http://tomahawkins.org"; description = "An interface to CIL"; license = stdenv.lib.licenses.bsd3; @@ -27549,7 +27689,6 @@ self: { base byteable bytestring crypto-cipher-tests crypto-cipher-types QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-fsupport_aesni" ]; homepage = "https://github.com/vincenthz/hs-cipher-aes"; description = "Fast AES cipher implementation with advanced mode of operations"; license = stdenv.lib.licenses.bsd3; @@ -27564,7 +27703,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring cereal crypto-api tagged ]; - configureFlags = [ "-f-test" ]; homepage = "https://github.com/TomMD/cipher-aes128"; description = "AES and common modes using AES-NI when available"; license = stdenv.lib.licenses.bsd3; @@ -27659,6 +27797,7 @@ self: { version = "0.1.0.1"; sha256 = "1ld4kdn0bd7ka448bl6df30iw3kd3mw7117qlwxyfzwbisdcsrif"; buildDepends = [ base split ]; + jailbreak = true; homepage = "http://github.com/fegu/cipher-rc5"; description = "Pure RC5 implementation"; license = stdenv.lib.licenses.bsd3; @@ -27723,10 +27862,6 @@ self: { HTTP json mtl network old-locale pandoc-types parsec syb time utf8-string ]; - configureFlags = [ - "-f-unicode_collation" "-f-embed_data_files" "-fhexpat" "-fnetwork" - "-fbibutils" "-fsmall_base" - ]; homepage = "http://gorgias.mine.nu/repos/citeproc-hs/"; description = "A Citation Style Language implementation in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -27745,7 +27880,6 @@ self: { base bytestring largeword QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-f-sse42" ]; homepage = "http://github.com/thoughtpolice/hs-cityhash"; description = "Bindings to CityHash"; license = stdenv.lib.licenses.mit; @@ -27790,6 +27924,7 @@ self: { base containers directory filepath ghc HaXml HUnit lens mtl QuickCheck tasty tasty-hunit tasty-th ]; + jailbreak = true; homepage = "http://clafer.org"; description = "clafer compiles Clafer models to other formats, such as Alloy, XML, HTML, Dot"; license = stdenv.lib.licenses.mit; @@ -27834,6 +27969,7 @@ self: { base clafer containers directory gitit MissingH mtl network process SHA split time transformers utf8-string ]; + jailbreak = true; homepage = "http://github.com/gsdlab/claferwiki"; description = "A wiki-based IDE for literate modeling with Clafer"; license = stdenv.lib.licenses.mit; @@ -27867,6 +28003,7 @@ self: { filepath ghc haskell98 pretty prettyclass template-haskell tfp th-lift time transformers utility-ht vhdl ]; + jailbreak = true; homepage = "http://clash.ewi.utwente.nl/"; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = stdenv.lib.licenses.bsd3; @@ -27889,7 +28026,6 @@ self: { directory filepath ghc ghc-paths hashable haskeline lens mtl process text transformers unbound unix unordered-containers ]; - configureFlags = [ "-f-standalone" ]; homepage = "http://christiaanb.github.io/clash2"; description = "CAES Language for Synchronous Hardware"; license = "unknown"; @@ -27955,6 +28091,7 @@ self: { buildDepends = [ base lifted-base monad-control parallel resourcet transformers ]; + jailbreak = true; description = "Fork of the monad-parallel package using monad-control"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -28069,7 +28206,7 @@ self: { ]; buildTools = [ hsx2hs ]; extraLibraries = [ cryptopp openssl ]; - configureFlags = [ "-fnetwork-uri" ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "A secure, reliable content management system (CMS) and blogging platform"; license = stdenv.lib.licenses.bsd3; @@ -28111,7 +28248,7 @@ self: { happstack-server hsp mtl network text web-plugins ]; buildTools = [ hsx2hs ]; - configureFlags = [ "-f-backups" ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "clckwrks.com"; license = stdenv.lib.licenses.bsd3; @@ -28137,7 +28274,7 @@ self: { web-routes web-routes-th ]; buildTools = [ hsx2hs ]; - configureFlags = [ "-fnetwork-uri" ]; + jailbreak = true; homepage = "http://clckwrks.com/"; description = "bug tracking plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -28161,6 +28298,7 @@ self: { safecopy text web-plugins web-routes web-routes-th ]; buildTools = [ hsx2hs ]; + jailbreak = true; homepage = "http://clckwrks.com/"; description = "ircbot plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -28184,6 +28322,7 @@ self: { web-routes-th ]; buildTools = [ hsx2hs ]; + jailbreak = true; homepage = "http://clckwrks.com/"; description = "media plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -28209,6 +28348,7 @@ self: { web-routes-happstack web-routes-th ]; buildTools = [ hsx2hs ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "support for CMS/Blogging in clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -28222,6 +28362,7 @@ self: { sha256 = "0bj1lxrzlhv4l37xb4jbb8h55l3mb2abyapsmlavcj0cld7ba7i2"; buildDepends = [ base clckwrks hsp text ]; buildTools = [ hsx2hs ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -28235,6 +28376,7 @@ self: { sha256 = "0mxb48sirbhvm4vkwwgqxh7x3bahfk34x8i20zcirvh8y6xxp3pm"; buildDepends = [ base clckwrks containers hsp text ]; buildTools = [ hsx2hs ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -28247,6 +28389,7 @@ self: { version = "0.1.1"; sha256 = "1qxik7hdz300n5lfb5xzh2md44b4xwwlr0c92y9x2na2xz41da7k"; buildDepends = [ base clckwrks hsp text ]; + jailbreak = true; homepage = "http://divshot.github.com/geo-bootstrap/"; description = "geo bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -28301,7 +28444,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers mtl parsec ]; - configureFlags = [ "-f-parsec2" ]; homepage = "http://sandbox.pocoo.org/clevercss-hs/"; description = "A CSS preprocessor"; license = stdenv.lib.licenses.bsd3; @@ -28316,7 +28458,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers ]; - configureFlags = [ "-f-executable" ]; homepage = "https://github.com/NicolasDP/hs-cli"; description = "Simple Command Line Interface Library"; license = stdenv.lib.licenses.bsd3; @@ -28336,6 +28477,7 @@ self: { base containers GLFW Hipmunk MonadRandom mtl OpenGL random StateVar transformers ]; + jailbreak = true; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; }) {}; @@ -28360,7 +28502,6 @@ self: { base bytestring cereal containers hspec HUnit QuickCheck transformers ]; - configureFlags = [ "-f-test" ]; homepage = "http://github.com/yesodweb/clientsession/tree/master"; description = "Securely store session data in a client-side cookie"; license = stdenv.lib.licenses.bsd3; @@ -28386,6 +28527,7 @@ self: { reflection semigroupoids stream-fusion tagged vector ]; testDepends = [ base hspec nats numeric-prelude QuickCheck ]; + jailbreak = true; homepage = "http://github.com/spacekitteh/haskell-clifford"; description = "A Clifford algebra library"; license = stdenv.lib.licenses.bsd3; @@ -28398,6 +28540,7 @@ self: { version = "0.1.1"; sha256 = "0qhi727irlkvi4ygx5qvd6h1zzz22588lymi39s0gcjir473a538"; buildDepends = [ base process ]; + jailbreak = true; homepage = "https://github.com/Raynes/clippard"; description = "A simple Haskell library for copying text to the clipboard in a cross-platform way"; license = stdenv.lib.licenses.mit; @@ -28445,7 +28588,6 @@ self: { sha256 = "0wqhg8gb10lby01f0v4fl4yp23l4ilizywp5xnsbja03svnb4f0d"; editedCabalFile = "653fd69fcb84f23fb93241604f83f686921593f7ded7c3bf61ce7cecf1f00440"; buildDepends = [ base ]; - configureFlags = [ "-f-llvm" ]; homepage = "http://corsis.github.com/clock/"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; @@ -28499,6 +28641,7 @@ self: { aeson base bytestring directory github optparse-applicative process system-fileio system-filepath text transformers ]; + jailbreak = true; homepage = "https://github.com/silky/clone-all"; description = "Clone all github repositories from a given user"; license = stdenv.lib.licenses.mit; @@ -28511,6 +28654,7 @@ self: { version = "0.1.0.0"; sha256 = "1z9clkwjpj01g258h8bldlc759vwsgdlyppn29sr11kyani1zjwf"; buildDepends = [ base hashable unordered-containers ]; + jailbreak = true; homepage = "http://github.com/tel/closure"; description = "Depth- and breadth-first set closures"; license = stdenv.lib.licenses.mit; @@ -28534,7 +28678,7 @@ self: { distributed-process-task distributed-static network-transport rank1dynamic ]; - configureFlags = [ "-f-p2p" "-f-simplelocalnet" "-f-tcp" ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/cloud-haskell"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -28650,7 +28794,6 @@ self: { buildDepends = [ array base cairo glib gtk haskell98 mtl X11 ]; buildTools = [ c2hs ]; pkgconfigDepends = [ clutter glib pango ]; - configureFlags = [ "-f-debug" ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; }) { inherit (pkgs) clutter; inherit (pkgs) glib; @@ -28716,7 +28859,6 @@ self: { buildDepends = [ base filepath process template-haskell transformers ]; - configureFlags = [ "-fquotation" "-f-testprog" ]; homepage = "http://community.haskell.org/~ndm/cmdargs/"; description = "Command line argument processing"; license = stdenv.lib.licenses.bsd3; @@ -28750,7 +28892,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base mtl split syb transformers ]; - configureFlags = [ "-f-test" "-fmtl2" ]; description = "a library for command line parsing & online help"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -28829,7 +28970,6 @@ self: { filepath HUnit mtl parsec pretty prettyclass process split stringtable-atom unix zlib ]; - configureFlags = [ "-fbasicbuild" ]; homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Compiler/Translator for CnC Specification Files"; license = stdenv.lib.licenses.bsd3; @@ -28925,7 +29065,6 @@ self: { base cairo containers directory filepath gtk haskell98 hinotify MissingH process regex-posix time ]; - configureFlags = [ "-f-dev" ]; homepage = "http://github.com/rickardlindberg/codemonitor"; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = stdenv.lib.licenses.bsd3; @@ -28939,6 +29078,7 @@ self: { sha256 = "03jvbbv4cgrmk0ihz34shd1ydv5jhl1h1xiwqrln60622jlh8mr1"; editedCabalFile = "52fe2b461d77b36400724ddd77e6ec5a92cb9c1bbf5f97efb4cfe87adba3a07a"; buildDepends = [ base curl mtl network tagsoup ]; + jailbreak = true; homepage = "http://github.com/chrisdone/codepad"; description = "Submit and retrieve paste output from CodePad.org."; license = stdenv.lib.licenses.bsd3; @@ -29030,6 +29170,7 @@ self: { base bytestring cereal cmdargs containers fclabels ghc-prim ListZipper monad-atom mtl split swift-lda text vector ]; + jailbreak = true; homepage = "https://bitbucket.org/gchrupala/colada"; description = "Colada implements incremental word class class induction using online LDA"; license = stdenv.lib.licenses.bsd3; @@ -29048,6 +29189,7 @@ self: { aeson base conceit network network-simple pipes pipes-aeson pipes-attoparsec pipes-network text transformers ]; + jailbreak = true; description = "Rudimentary JSON-RPC 2.0 client over raw TCP."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29065,6 +29207,7 @@ self: { buildDepends = [ base collada-types containers SVGPath time vector xml ]; + jailbreak = true; description = "Generate animated 3d objects in COLLADA"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29080,6 +29223,7 @@ self: { buildDepends = [ base containers enumerable OpenGL tuple tuple-gen vector ]; + jailbreak = true; description = "Data exchange between graphic applications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29105,6 +29249,7 @@ self: { version = "0.3.1.1"; sha256 = "0a5km8k2jwjv4gfd2vf0jiq3f9cw47dgz8f3lspmpx2b0g2pac7g"; buildDepends = [ array base bytestring containers QuickCheck ]; + jailbreak = true; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29144,7 +29289,6 @@ self: { version = "0.2.2"; sha256 = "0h3y5c3c3711k2glmnydc1rlz9ff73iibcc8vf0zjzvvw9rz0xb1"; buildDepends = [ base unix ]; - configureFlags = [ "-fsmall_base" ]; description = "thread-friendly file locks that don't block the entire program"; license = "LGPL"; }) {}; @@ -29199,6 +29343,7 @@ self: { base bytestring HTTP http-types HUnit mtl regex-compat text wai wai-extra warp ]; + jailbreak = true; homepage = "https://github.com/wellecks/coltrane"; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = stdenv.lib.licenses.bsd3; @@ -29210,7 +29355,6 @@ self: { pname = "com"; version = "1.2.3.1"; sha256 = "1y6zm63jyigf631f2b0bqw1yhmr6hifaspqivy7qy30brmr5a27m"; - configureFlags = [ "-f-old-base" ]; description = "Haskell COM support library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29222,7 +29366,6 @@ self: { version = "0.2.7.0"; sha256 = "1rch5pk0sggmdr2wmqys5i5p1cjyqdymrngjf8a2721q6nycfjjz"; buildDepends = [ array base containers random transformers ]; - configureFlags = [ "-fbase4" "-f-withquickcheck" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Generation of various combinatorial objects"; license = stdenv.lib.licenses.bsd3; @@ -29240,7 +29383,6 @@ self: { array base colour combinat containers diagrams-core diagrams-lib transformers vector-space ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Graphical representations for various combinatorial objects"; license = stdenv.lib.licenses.bsd3; @@ -29260,6 +29402,7 @@ self: { base bytestring cereal containers directory lens mtl template-haskell th-lift trifecta void ]; + jailbreak = true; homepage = "https://github.com/fumieval/combinator-interactive"; description = "SKI Combinator interpreter"; license = stdenv.lib.licenses.bsd3; @@ -29288,7 +29431,6 @@ self: { version = "0.1.0"; sha256 = "101b3lycfav6wqdqjhs0v93vgy4g3pfn5xyimip0x3alq0q2ix9a"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "Efficient computation of common combinatoric functions"; license = stdenv.lib.licenses.bsd3; @@ -29305,6 +29447,7 @@ self: { buildDepends = [ base containers template-haskell vector vector-space ]; + jailbreak = true; homepage = "https://github.com/JohnLato/combobuffer"; description = "Various buffer implementations"; license = stdenv.lib.licenses.bsd3; @@ -29407,9 +29550,6 @@ self: { transformers transformers-compat ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ - "-fdistributive" "-fcontravariant" "-fcontainers" "-ftest-doctests" - ]; homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; @@ -29439,6 +29579,7 @@ self: { version = "0.1.2"; sha256 = "11jak28rpnnaswrlf2wgn91v096zkz1laq2cdhjfc7abgmkx9gay"; buildDepends = [ base category-extras random ]; + jailbreak = true; description = "Comonadic interface for random values"; license = "unknown"; }) {}; @@ -29608,7 +29749,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; + jailbreak = true; homepage = "http://github.com/analytics/compensated/"; description = "Compensated floating-point arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -29621,6 +29762,7 @@ self: { version = "0.2.0.0"; sha256 = "07c6b6yai8x9i8qndimzmyp5bzhwckis8kg207n152gnskk7i3zn"; buildDepends = [ base filepath parsec ]; + jailbreak = true; homepage = "github.com/yanatan16/haskell-competition"; description = "Helpers and runners for code competitions"; license = stdenv.lib.licenses.mit; @@ -29673,6 +29815,7 @@ self: { base Chart colour data-accessor hstats parallel pretty time transformers ]; + jailbreak = true; description = "Empirical algorithmic complexity"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29742,6 +29885,7 @@ self: { algebra base containers equational-reasoning heaps lens monad-loops monomorphic peggy singletons sized-vector tagged type-natural ]; + jailbreak = true; homepage = "https://github.com/konn/computational-algebra"; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = stdenv.lib.licenses.bsd3; @@ -29770,6 +29914,7 @@ self: { buildDepends = [ base bifunctors exceptions mtl semigroupoids transformers void ]; + jailbreak = true; description = "Concurrent actions that may fail"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29804,7 +29949,7 @@ self: { monad-codec monad-ox sgd tagset-positional temporary text text-binary transformers vector vector-binary zlib ]; - configureFlags = [ "-f-buildanatool" ]; + jailbreak = true; homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological disambiguation based on constrained CRFs"; license = stdenv.lib.licenses.bsd3; @@ -29826,6 +29971,7 @@ self: { double-conversion lazy-io moan network sgd split tagset-positional text ]; + jailbreak = true; homepage = "https://github.com/vjeranc/concraft-hr"; description = "Part-of-speech tagger for Croatian"; license = stdenv.lib.licenses.bsd3; @@ -29882,7 +30028,6 @@ self: { base binary hashable QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-fnew-typerep" ]; description = "Binary and Hashable instances for TypeRep"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -29967,7 +30112,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base exceptions mtl stm transformers ]; - configureFlags = [ "-f-examples" ]; homepage = "https://github.com/joelteon/concurrent-state"; description = "MTL-like library using TVars"; license = stdenv.lib.licenses.mit; @@ -29981,7 +30125,6 @@ self: { sha256 = "0crg4rm5wibw9h6lmsi43d280xg1xr9xbgqr9s4inxq7x0yyn68c"; buildDepends = [ base ghc-prim hashable ]; testDepends = [ base containers ]; - configureFlags = [ "-ftest-properties" ]; homepage = "http://github.com/ekmett/concurrent-supply/"; description = "A fast concurrent unique identifier supply with a pure API"; license = stdenv.lib.licenses.bsd3; @@ -30026,6 +30169,7 @@ self: { testDepends = [ base binary Cabal containers glider-nlp HUnit text ]; + jailbreak = true; homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; @@ -30078,6 +30222,7 @@ self: { base conductive-base conductive-song containers directory filepath hosc hsc3 random ]; + jailbreak = true; homepage = "http://www.renickbell.net/doku.php?id=conductive-hsc3"; description = "a library with examples of using Conductive with hsc3"; license = stdenv.lib.licenses.gpl3; @@ -30233,6 +30378,7 @@ self: { sha256 = "1bqdpnhqjh4dhvppsa8nlgja0jpdw48kxywz2999sp5hi53qxdfg"; buildDepends = [ base conduit void ]; testDepends = [ base bytestring conduit hspec transformers void ]; + jailbreak = true; homepage = "http://github.com/A1kmm/conduit-resumablesink"; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = stdenv.lib.licenses.bsd3; @@ -30245,6 +30391,7 @@ self: { version = "0.1.0.0"; sha256 = "15zd72l2izdiw79hldf34pymxc4d9r06db91x6p2mfv2i31wy2n2"; buildDepends = [ base haskell-src ]; + jailbreak = true; description = "Parser for Haskell-based configuration files"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -30290,6 +30437,7 @@ self: { unordered-containers yaml ]; testDepends = [ base base-unicode-symbols errors mtl ]; + jailbreak = true; homepage = "https://github.com/alephcloud/hs-configuration-tools"; description = "Tools for specifying and parsing configurations"; license = stdenv.lib.licenses.mit; @@ -30312,7 +30460,6 @@ self: { base bytestring directory filepath HUnit test-framework test-framework-hunit text ]; - configureFlags = [ "-f-developer" ]; homepage = "http://github.com/bos/configurator"; description = "Configuration management"; license = stdenv.lib.licenses.bsd3; @@ -30332,6 +30479,7 @@ self: { attoparsec base cmdargs process system-fileio system-filepath text time unordered-containers ]; + jailbreak = true; description = "A command line tool for resolving conflicts of file synchronizers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -30409,7 +30557,6 @@ self: { base between data-default-class monad-control network resource-pool streaming-commons time transformers-base ]; - configureFlags = [ "-f-pedantic" ]; homepage = "https://github.com/trskop/connection-pool"; description = "Connection pool built on top of resource-pool and streaming-commons"; license = stdenv.lib.licenses.bsd3; @@ -30505,6 +30652,7 @@ self: { version = "0.3.0"; sha256 = "17ab0vkq5w3zwh76ws7b82wbc0871qdmvrxhxga78h3h0axjiz1x"; buildDepends = [ base QuickCheck type-level ]; + jailbreak = true; description = "A library of constructive algebra"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -30551,6 +30699,7 @@ self: { buildDepends = [ base bytestring containers criterion deepseq ghc-prim random ]; + jailbreak = true; homepage = "http://git.auryn.cz/haskell/containers-benchmark/"; description = "Extensive benchmark suite for containers package"; license = stdenv.lib.licenses.bsd3; @@ -30574,7 +30723,6 @@ self: { version = "0.3.1.1"; sha256 = "0ccv7rqkykfk5wmr73mc0kwrnwyzakgp5x495dgwn5nila3g4ma6"; buildDepends = [ base base-unicode-symbols containers ]; - configureFlags = [ "-f-containers-old" ]; homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; description = "Unicode alternatives for common functions and operators"; license = stdenv.lib.licenses.bsd3; @@ -30604,6 +30752,7 @@ self: { base bifunctors monad-control mtl semigroupoids transformers transformers-base ]; + jailbreak = true; description = "Monads with suspension and arbitrary-spot reentry"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -30638,7 +30787,7 @@ self: { suspend time timers transformers transformers-base ]; extraLibraries = [ hyperleveldb ]; - configureFlags = [ "-f-profiling" "-f-binaries" ]; + jailbreak = true; license = stdenv.lib.licenses.mit; }) { hyperleveldb = null;}; @@ -30668,7 +30817,6 @@ self: { buildDepends = [ base semigroups transformers transformers-compat void ]; - configureFlags = [ "-ftagged" ]; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -30704,6 +30852,7 @@ self: { version = "0.3.0.1"; sha256 = "140n27vdbyjz5qycrwlrmyd7s48fxcl6msl16g7czg40k5y23j5s"; buildDepends = [ attempt base transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/control-monad-attempt"; description = "Monad transformer for attempt. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -30721,7 +30870,6 @@ self: { base failure lifted-base monad-control monadloc transformers transformers-base ]; - configureFlags = [ "-f-extensibleexceptions" ]; homepage = "http://pepeiborra.github.com/control-monad-exception"; description = "Explicitly typed, checked exceptions with stack traces"; license = stdenv.lib.licenses.publicDomain; @@ -30778,6 +30926,7 @@ self: { version = "0.7.0.1"; sha256 = "1g304wb1fhx81iw2vv7nv6cp2qmy69frwiv3vax85lxw03s4nlkq"; buildDepends = [ base failure transformers ]; + jailbreak = true; homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error. (deprecated)"; license = stdenv.lib.licenses.publicDomain; @@ -30790,6 +30939,7 @@ self: { version = "0.7.1"; sha256 = "0j9i85vq033789vx2589mfqwk954hqy1wla527ssbyf05k6vkn8j"; buildDepends = [ base failure mtl ]; + jailbreak = true; homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = stdenv.lib.licenses.publicDomain; @@ -30883,6 +31033,7 @@ self: { version = "0.1.1"; sha256 = "0b5vskp1bxqpi4ffcxwjw6kr0jd6n8v8jlhf03p54ckfd5ym4ai6"; buildDepends = [ base contstuff transformers ]; + jailbreak = true; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -30912,7 +31063,6 @@ self: { buildDepends = [ base bytestring containers mtl old-locale old-time text time ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/convertible"; description = "Typeclasses and instances for converting between types"; license = stdenv.lib.licenses.bsd3; @@ -30930,6 +31080,7 @@ self: { ascii base base-unicode-symbols blaze-builder bytestring convertible-text failure text ]; + jailbreak = true; homepage = "https://github.com/phonohawk/convertible-ascii"; description = "convertible instances for ascii"; license = stdenv.lib.licenses.publicDomain; @@ -30949,7 +31100,7 @@ self: { attempt base bytestring containers old-time template-haskell text time ]; - configureFlags = [ "-f-nolib" "-f-buildtests" ]; + jailbreak = true; homepage = "http://github.com/snoyberg/convertible/tree/text"; description = "Typeclasses and instances for converting between types (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -31000,7 +31151,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/NICTA/coordinate"; description = "A representation of latitude and longitude"; license = stdenv.lib.licenses.bsd3; @@ -31192,6 +31342,7 @@ self: { version = "0.1.1"; sha256 = "1rjbhpy5vw1maawi47jsrnagqm19say9w1i31pgcpxl45vhrshp7"; buildDepends = [ base enumerator monad-coroutine ]; + jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/coroutine-enumerator"; description = "Bridge between the monad-coroutine and enumerator packages"; license = "GPL"; @@ -31204,6 +31355,7 @@ self: { version = "0.1.1"; sha256 = "1ycir4kwpcz34yg64cdb9q0jxv3ma12vrrs28cr5jm64jmi8m0wd"; buildDepends = [ base iteratee monad-coroutine ]; + jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/coroutine-iteratee"; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; @@ -31239,6 +31391,7 @@ self: { aeson attoparsec base bytestring hint random text transformers vector ]; + jailbreak = true; description = "A CouchDB view server for Haskell"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -31268,6 +31421,7 @@ self: { test-framework-hunit text transformers transformers-base unordered-containers ]; + jailbreak = true; homepage = "https://github.com/akaspin/couchdb-conduit"; description = "Couch DB client library using http-conduit and aeson"; license = stdenv.lib.licenses.bsd3; @@ -31296,6 +31450,7 @@ self: { test-framework-quickcheck2 text transformers unordered-containers utf8-string vector ]; + jailbreak = true; homepage = "http://bitbucket.org/wuzzeb/couchdb-enumerator"; description = "Couch DB client library using http-enumerator and aeson"; license = stdenv.lib.licenses.bsd3; @@ -31347,7 +31502,6 @@ self: { isExecutable = true; buildDepends = [ aeson base shakespeare tagsoup text ]; testDepends = [ aeson base HTF HUnit ]; - configureFlags = [ "-f-generate" ]; homepage = "https://github.com/prowdsponsor/country-codes"; description = "ISO 3166 country codes and i18n names"; license = stdenv.lib.licenses.bsd3; @@ -31389,6 +31543,7 @@ self: { aeson base bytestring directory filepath old-locale optparse-applicative process stm text time unix ]; + jailbreak = true; homepage = "http://hub.darcs.net/thoferon/court"; description = "Simple and flexible CI system"; license = stdenv.lib.licenses.bsd3; @@ -31483,7 +31638,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-executable" ]; homepage = "http://github.com/vincenthz/hs-cpu"; description = "Cpu information and properties helpers"; license = stdenv.lib.licenses.bsd3; @@ -31498,7 +31652,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base data-accessor enumset ]; - configureFlags = [ "-f-buildexamples" ]; homepage = "http://code.haskell.org/cpuid/"; description = "Binding for the cpuid machine instruction on x86 compatible processors"; license = "GPL"; @@ -31513,7 +31666,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base mtl process ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/cpuperf"; description = "Modify the cpu frequency on OpenBSD systems"; license = stdenv.lib.licenses.bsd3; @@ -31528,6 +31680,7 @@ self: { buildDepends = [ base bytestring text ]; buildTools = [ c2hs ]; pkgconfigDepends = [ python3 ]; + jailbreak = true; homepage = "https://john-millikin.com/software/haskell-python/"; description = "Bindings for libpython"; license = stdenv.lib.licenses.gpl3; @@ -31571,6 +31724,7 @@ self: { network semigroups stm text time tinylog transformers transformers-base uuid vector ]; + jailbreak = true; homepage = "https://github.com/twittner/cql-io/"; description = "Cassandra CQL client"; license = "unknown"; @@ -31593,6 +31747,7 @@ self: { async base bytestring conduit cqrs-test hspec HUnit pool-conduit stm transformers ]; + jailbreak = true; description = "Command-Query Responsibility Segregation"; license = stdenv.lib.licenses.mit; }) {}; @@ -31613,6 +31768,7 @@ self: { deepseq derive scotty stm text transformers wai-eventsource wai-middleware-static ]; + jailbreak = true; description = "Example for cqrs package"; license = stdenv.lib.licenses.mit; }) {}; @@ -31634,6 +31790,7 @@ self: { base bytestring conduit cqrs-test cqrs-types hspec pool-conduit postgresql-libpq ]; + jailbreak = true; description = "PostgreSQL backend for the cqrs package"; license = stdenv.lib.licenses.mit; }) {}; @@ -31654,6 +31811,7 @@ self: { base bytestring conduit cqrs-test direct-sqlite hspec pool-conduit text transformers ]; + jailbreak = true; description = "SQLite3 backend for the cqrs package"; license = stdenv.lib.licenses.mit; }) {}; @@ -31670,6 +31828,7 @@ self: { base bytestring conduit cqrs-types hspec HUnit pool-conduit stm transformers ]; + jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; }) {}; @@ -31686,6 +31845,7 @@ self: { base base16-bytestring base64-bytestring bytestring conduit deepseq derive random ]; + jailbreak = true; description = "Command-Query Responsibility Segregation. Modules for the basic types."; license = stdenv.lib.licenses.mit; }) {}; @@ -31729,7 +31889,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base colour mtl vector-space ]; - configureFlags = [ "-f-examples" "-f-tests" ]; + jailbreak = true; homepage = "http://mahrz.github.com/craftwerk.html"; description = "2D graphics library with integrated TikZ output"; license = stdenv.lib.licenses.mit; @@ -31742,6 +31902,7 @@ self: { version = "0.1"; sha256 = "16in87l2v49k785fldm7fvprywg0v497kz29jr22y91q5j5gnm4z"; buildDepends = [ base cairo craftwerk mtl ]; + jailbreak = true; homepage = "http://mahrz.github.com/craftwerk.html"; description = "Cairo backend for Craftwerk"; license = stdenv.lib.licenses.mit; @@ -31760,7 +31921,7 @@ self: { buildDepends = [ base cairo containers craftwerk craftwerk-cairo gtk mtl ]; - configureFlags = [ "-f-examples" ]; + jailbreak = true; homepage = "http://mahrz.github.com/craftwerk.html"; description = "Gtk UI for Craftwerk"; license = stdenv.lib.licenses.mit; @@ -31809,6 +31970,7 @@ self: { QuickCheck temporary test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/mhwombat/creatur"; description = "Framework for artificial life experiments"; license = stdenv.lib.licenses.bsd3; @@ -31827,6 +31989,7 @@ self: { array base binary containers data-lens logfloat monad-codec parallel random sgd vector vector-binary vector-th-unbox ]; + jailbreak = true; homepage = "https://github.com/kawu/crf-chain1"; description = "First-order, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; @@ -31863,6 +32026,7 @@ self: { array base binary comonad-transformers containers data-lens logfloat monad-codec parallel sgd vector vector-binary ]; + jailbreak = true; homepage = "https://github.com/kawu/crf-chain2-generic"; description = "Second-order, generic, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; @@ -31900,7 +32064,6 @@ self: { base bytestring containers QuickCheck test-framework test-framework-quickcheck2 text transformers vector ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/critbit"; description = "Crit-bit maps and sets"; license = stdenv.lib.licenses.bsd3; @@ -31958,6 +32121,7 @@ self: { string-conversions system-fileio system-filepath text th-printf transformers transformers-base vector ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/criterion-plus"; description = "Enhancement of the \"criterion\" benchmarking library"; license = stdenv.lib.licenses.mit; @@ -31976,6 +32140,7 @@ self: { buildDepends = [ aeson base blaze-html blaze-markup bytestring containers filepath ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/criterion-to-html"; description = "Convert criterion output to HTML reports"; license = stdenv.lib.licenses.bsd3; @@ -32025,6 +32190,7 @@ self: { attoparsec base derive hspec hspec-expectations QuickCheck text time transformers ]; + jailbreak = true; homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; @@ -32057,6 +32223,7 @@ self: { base bytestring directory filelock filepath process SHA text time transformers unix ]; + jailbreak = true; description = "A runghc replacement with transparent caching"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -32072,7 +32239,6 @@ self: { buildDepends = [ base bytestring cereal entropy tagged transformers ]; - configureFlags = [ "-f-all_cpolys" ]; homepage = "https://github.com/TomMD/crypto-api"; description = "A generic interface for cryptographic operations"; license = stdenv.lib.licenses.bsd3; @@ -32166,7 +32332,6 @@ self: { base bytestring cereal conduit conduit-extra crypto-api cryptocipher cryptohash-cryptoapi hspec skein transformers ]; - configureFlags = [ "-fconduit11" "-f-old-crypto-api" ]; homepage = "https://github.com/prowdsponsor/crypto-conduit"; description = "Conduit interface for cryptographic operations (from crypto-api)"; license = stdenv.lib.licenses.bsd3; @@ -32188,7 +32353,6 @@ self: { base byteable bytestring crypto-random tasty tasty-hunit tasty-quickcheck vector ]; - configureFlags = [ "-finteger-gmp" ]; homepage = "https://github.com/vincenthz/hs-crypto-numbers"; description = "Cryptographic numbers: functions and algorithms"; license = stdenv.lib.licenses.bsd3; @@ -32236,7 +32400,7 @@ self: { bytestring cereal crypto-pubkey-types deepseq filepath pem process QuickCheck tasty tasty-quickcheck temporary ]; - configureFlags = [ "-f-openssh" ]; + jailbreak = true; homepage = "https://github.com/knsd/crypto-pubkey-openssh"; description = "OpenSSH keys decoder/encoder"; license = stdenv.lib.licenses.mit; @@ -32394,6 +32558,7 @@ self: { old-locale pipes-attoparsec pipes-http text time transformers unordered-containers vector ]; + jailbreak = true; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = "unknown"; }) {}; @@ -32596,7 +32761,6 @@ self: { base bytestring containers directory HUnit mtl primitive test-framework test-framework-hunit text transformers vector ]; - configureFlags = [ "-f-bench" ]; homepage = "http://github.com/ozataman/csv-conduit"; description = "A flexible, fast, conduit-based CSV parser library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -32651,7 +32815,6 @@ self: { base explicit-exception regex-tdfa split spreadsheet ]; testDepends = [ base Cabal hspec regex-tdfa split ]; - configureFlags = [ "-f-threaded" ]; homepage = "https://github.com/mrVanDalo/csv-to-qif/"; description = "A small program that will read csv files and create qif files"; license = stdenv.lib.licenses.bsd3; @@ -32705,6 +32868,7 @@ self: { base containers hashable QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/mcschroeder/ctrie"; description = "Non-blocking concurrent map"; license = stdenv.lib.licenses.mit; @@ -32836,7 +33000,6 @@ self: { sha256 = "0vj4hpaa30jz7c702xpsfvqaqdxz28zslsqnsfx6bf6dpwvck1wh"; buildDepends = [ base bytestring containers ]; extraLibraries = [ curl ]; - configureFlags = [ "-fnew-base" ]; description = "Haskell binding to libcurl"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) curl;}; @@ -32903,7 +33066,6 @@ self: { buildDepends = [ base containers directory filepath mtl old-time pretty syb ]; - configureFlags = [ "-fsplit-syb" ]; homepage = "http://www.curry-language.org"; description = "Functions for manipulating Curry programs"; license = "unknown"; @@ -32922,7 +33084,6 @@ self: { buildDepends = [ base containers curry-base filepath mtl old-time pretty syb ]; - configureFlags = [ "-fsplit-syb" ]; homepage = "http://www.curry-language.org"; description = "Compile the functional logic language Curry to several intermediate formats"; license = "unknown"; @@ -32968,6 +33129,7 @@ self: { version = "0.2.2.0"; sha256 = "00lkpkl79kznib0s6xm644f3k13dv59x5z06ccymvx6l6iqxyzn6"; buildDepends = [ base basic-prelude monad-loops ]; + jailbreak = true; homepage = "https://github.com/ajnsit/custom-prelude"; description = "An enhanced prelude, serving as a foundation for my projects"; license = "GPL"; @@ -33017,6 +33179,7 @@ self: { http-conduit http-types resourcet text transformers transformers-base unordered-containers vector ]; + jailbreak = true; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -33055,6 +33218,7 @@ self: { version = "0.1.0.0"; sha256 = "0wrxvfgss9fiv1pwsdi1md0plc4mf9sadkhgm46dsfq16dwrp3q2"; buildDepends = [ base mtl random text ]; + jailbreak = true; homepage = "https://github.com/nebuta/d3js-haskell"; description = "Declarative visualization on a web browser with DSL approach"; license = stdenv.lib.licenses.bsd3; @@ -33152,6 +33316,7 @@ self: { base containers explicit-exception multiarg old-locale parsec prednote rainbow text time transformers ]; + jailbreak = true; homepage = "http://massysett.github.com/dapi"; description = "Prints a series of dates"; license = stdenv.lib.licenses.bsd3; @@ -33177,12 +33342,8 @@ self: { terminfo text unix utf8-string vector zlib ]; extraLibraries = [ curl ]; - configureFlags = [ - "-flibrary" "-fforce-char8-encoding" "-f-libiconv" - "-fforce-char8-encoding" "-f-warn-as-error" "-foptimize" "-f-test" - "-f-hpc" "-fmmap" "-fcolor" "-fexecutable" "-flibrary" "-fthreaded" - "-fterminfo" "-f-static" "-fnetwork-uri" "-fhttp" "-fcurl" - ]; + configureFlags = [ "-flibrary" "-fforce-char8-encoding" ]; + jailbreak = true; postInstall = '' mkdir -p $out/etc/bash_completion.d mv contrib/darcs_completion $out/etc/bash_completion.d/darcs @@ -33210,6 +33371,7 @@ self: { SHA split statistics strict tabular tar time utf8-string uvector zlib ]; + jailbreak = true; homepage = "http://wiki.darcs.net/Development/Benchmarks"; description = "Comparative benchmark suite for darcs"; license = stdenv.lib.licenses.bsd3; @@ -33235,11 +33397,7 @@ self: { vector zlib ]; extraLibraries = [ curl ]; - configureFlags = [ - "-f-force-char8-encoding" "-f-warn-as-error" "-foptimize" "-f-test" - "-f-hpc" "-fmmap" "-fcolor" "-fexecutable" "-flibrary" "-fthreaded" - "-fterminfo" "-f-static" "-fhttp" "-fcurl" - ]; + jailbreak = true; homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; @@ -33279,7 +33437,6 @@ self: { parsec process QuickCheck regex-compat unix ]; extraLibraries = [ curl curses zlib ]; - configureFlags = [ "-fcurses" "-fsmall_base" ]; homepage = "http://darcs.net/"; description = "David's Advanced Version Control System"; license = "GPL"; @@ -33300,6 +33457,7 @@ self: { attoparsec base bytestring cmdlib containers darcs datetime directory filepath hashed-storage mtl old-time utf8-string ]; + jailbreak = true; description = "Import/export git fast-import streams to/from darcs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -33318,7 +33476,7 @@ self: { base bytestring containers directory old-locale old-time process time ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; description = "Generate graphs of darcs repository activity"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -33333,7 +33491,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers directory HaXml mtl process ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://wiki.darcs.net/RelatedSoftware/DarcsMonitor"; description = "Darcs repository monitor (sends email)"; license = "GPL"; @@ -33363,6 +33521,7 @@ self: { buildDepends = [ base containers darcs graph-wrapper string-conversions ]; + jailbreak = true; description = "Outputs dependencies of darcs patches in dot format"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -33390,10 +33549,7 @@ self: { pureMD5 random redis safe SHA snap-core snap-server split ssh system-uuid text time utf8-string webdriver xhtml xml ]; - configureFlags = [ - "-fssh" "-fclosing" "-f-highlighter" "-fhighlightingkate" - "-fdarcs28" - ]; + jailbreak = true; homepage = "http://hackage.haskell.org/package/darcsden"; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; @@ -33416,7 +33572,6 @@ self: { filepath HTTP mime-string mtl nano-md5 network old-locale old-time parsec process regex-compat safe time unix xhtml zlib ]; - configureFlags = [ "-f-static" ]; homepage = "http://darcswatch.nomeata.de/"; description = "Track application of Darcs patches"; license = "GPL"; @@ -33452,7 +33607,6 @@ self: { version = "0.2.2.6"; sha256 = "0668qgllmp2911ppsb0g9z95nq2x0h2cvzyyjlb6iwhnjzyyg7gf"; buildDepends = [ array base containers transformers ]; - configureFlags = [ "-fsplitbase" "-fcategory" ]; homepage = "http://www.haskell.org/haskellwiki/Record_access"; description = "Utilities for accessing and manipulating fields of records"; license = stdenv.lib.licenses.bsd3; @@ -33465,6 +33619,7 @@ self: { version = "0.0.1"; sha256 = "0l1ywmr4jry4cys7lq6k0w0nsdpqj1g5l3vsnxyf0ai1901zk18i"; buildDepends = [ base data-accessor monadLib ]; + jailbreak = true; description = "Accessor functions for monadLib's monads"; license = "unknown"; }) {}; @@ -33476,6 +33631,7 @@ self: { version = "0.2.0.3"; sha256 = "1yvfk55qra7f9ggcybw3j68xg9dzx2f07swj99v4f588gh32ixhz"; buildDepends = [ base data-accessor monads-fd transformers ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Record_access"; description = "Use Accessor to access state in monads-fd State monad class"; license = stdenv.lib.licenses.bsd3; @@ -33513,7 +33669,6 @@ self: { version = "0.2.1.11"; sha256 = "1n2slv287zp6pabqb7xbfi296dbikw5a4ivqmnas0c4nxikqkayx"; buildDepends = [ base data-accessor template-haskell utility-ht ]; - configureFlags = [ "-f-template_2_4" ]; homepage = "http://www.haskell.org/haskellwiki/Record_access"; description = "Utilities for accessing and manipulating fields of records"; license = stdenv.lib.licenses.bsd3; @@ -33621,6 +33776,7 @@ self: { version = "0.3.0.0"; sha256 = "0rmn4pq5pgvam78vxp4y7431jai8dklml322r4nw47jjc1m20kmv"; buildDepends = [ base stm ]; + jailbreak = true; description = "A Library for directional queues"; license = stdenv.lib.licenses.mit; }) {}; @@ -33748,6 +33904,7 @@ self: { array base binary bytestring QuickCheck spool syb test-framework test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "http://monoid.at/code"; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = stdenv.lib.licenses.lgpl21; @@ -33835,7 +33992,6 @@ self: { base lazysmallcheck prelude-safeenum QuickCheck reflection smallcheck tagged ]; - configureFlags = [ "-fsplitbase" "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "Finite totally ordered sets"; license = stdenv.lib.licenses.bsd3; @@ -33956,6 +34112,7 @@ self: { buildDepends = [ base containers data-fix IfElse mtl transformers ]; + jailbreak = true; homepage = "https://github.com/kwf/data-kiln"; description = "Sculpt mutable recursive data with reference equality; bake it using a data kiln into an immutable lazy structure"; license = stdenv.lib.licenses.bsd3; @@ -33984,7 +34141,7 @@ self: { buildDepends = [ base comonad containers semigroupoids transformers ]; - configureFlags = [ "-fderivedatatypeable" ]; + jailbreak = true; homepage = "http://github.com/roconnor/data-lens/"; description = "Used to be Haskell 98 Lenses"; license = stdenv.lib.licenses.bsd3; @@ -33997,7 +34154,6 @@ self: { version = "2.0.5"; sha256 = "0r8cfgn6wx304b5ihmwgsxxjwalb7086wii655mgmb6cn3nirpyk"; buildDepends = [ base comonad data-lens mtl transformers ]; - configureFlags = [ "-fderivedatatypeable" ]; homepage = "http://github.com/roconnor/data-lens-fd/"; description = "Lenses"; license = stdenv.lib.licenses.bsd3; @@ -34011,6 +34167,7 @@ self: { sha256 = "0frzjfcp7w1ayfai1m07n0fpj3z1vbi971bc1kn1iarxhakny651"; buildDepends = [ base data-lens ixset ]; testDepends = [ QuickCheck ]; + jailbreak = true; homepage = "https://github.com/dag/data-lens-ixset"; description = "A Lens for IxSet"; license = stdenv.lib.licenses.bsd3; @@ -34083,6 +34240,7 @@ self: { version = "0.1.2"; sha256 = "1yzxkch0xzy76iyad0yshfnpvz38xklqdlyj8lgqnqsllw0vwh0m"; buildDepends = [ base semigroups ]; + jailbreak = true; homepage = "http://github.com/glehel/data-nat"; description = "data Nat = Zero | Succ Nat"; license = stdenv.lib.licenses.bsd3; @@ -34095,6 +34253,7 @@ self: { version = "0.3.1.9"; sha256 = "0z8m23kw8mj6hhy1r8y1vvlxxpwl273dhanszig2673a1sw0l98l"; buildDepends = [ base bytestring failure text time ]; + jailbreak = true; homepage = "http://github.com/snoyberg/data-object/tree/master"; description = "Represent hierachichal structures, called objects in JSON. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -34112,6 +34271,7 @@ self: { base bytestring bytestring-trie convertible-text data-object failure JSONb text ]; + jailbreak = true; homepage = "http://github.com/snoyberg/data-object-json/tree/master"; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -34131,7 +34291,7 @@ self: { base bytestring conduit containers convertible-text data-object failure text transformers yaml ]; - configureFlags = [ "-f-buildtests" ]; + jailbreak = true; homepage = "http://github.com/snoyberg/data-object-yaml"; description = "Serialize data to and from Yaml files (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -34144,7 +34304,6 @@ self: { version = "1.0.0.4"; sha256 = "17plwr0ayll8na73vhdsfxk86dnds4rpj8v6nww7shb6vk5v3hf5"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "A data type for non-exclusive disjunction"; license = stdenv.lib.licenses.bsd3; @@ -34180,6 +34339,7 @@ self: { version = "0.2.3"; sha256 = "1ygbhn399d4hlrdjmg7gxbr5akydb78p6qa80rv7m6j0fsqzbf6y"; buildDepends = [ base deepseq mtl parallel pretty time ]; + jailbreak = true; description = "Prettyprint and compare Data values"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -34209,7 +34369,6 @@ self: { base binary containers HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-f-test-strict" ]; homepage = "https://github.com/sebastian-philipp/r-tree"; description = "R-Tree is a spatial data structure similar to Quadtrees or B-Trees"; license = stdenv.lib.licenses.mit; @@ -34222,6 +34381,7 @@ self: { version = "0.0"; sha256 = "0bcizcf6i1hfpk7ry64si40mfdndgd8k0h9mzh873xp1v2qali7n"; buildDepends = [ base stm transformers ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Mutable_variable"; description = "Unify STRef and IORef in plain Haskell 98"; license = stdenv.lib.licenses.bsd3; @@ -34237,7 +34397,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers ]; - configureFlags = [ "-f-tests" ]; homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/IOReification"; description = "Reify a recursive data structure into an explicit graph"; license = stdenv.lib.licenses.bsd3; @@ -34295,6 +34454,7 @@ self: { version = "20090215.0"; sha256 = "0h6z4yibjbnzck2fvh9mnppz9j0lzgx8nzmzm08q5yzmzjydy3rk"; buildDepends = [ base vector-space ]; + jailbreak = true; homepage = "http://code.haskell.org/data-spacepart"; description = "Deprecated. Now called \"spacepart\". Space partitioning data structures."; license = stdenv.lib.licenses.bsd3; @@ -34316,6 +34476,7 @@ self: { base cereal containers deepseq lens QuickCheck safecopy test-framework test-framework-quickcheck2 transformers vector ]; + jailbreak = true; homepage = "https://github.com/Palmik/data-store"; description = "Type safe, in-memory dictionary with multidimensional keys"; license = stdenv.lib.licenses.bsd3; @@ -34335,9 +34496,6 @@ self: { base containers deepseq ghc-heap-view HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ - "-f-test-strict" "-ftest-properties" "-f-with-sizeable" - ]; description = "An efficient implementation of maps from strings to arbitrary values"; license = stdenv.lib.licenses.mit; }) {}; @@ -34471,7 +34629,6 @@ self: { base bytestring cmdargs containers directory either filepath lens postgresql-simple text time transformers ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/markhibberd/database-migrate"; description = "Database versioning and migration (experimental)"; license = stdenv.lib.licenses.bsd3; @@ -34484,7 +34641,7 @@ self: { version = "0.0.1"; sha256 = "1aqp7a46p758f1q99cn700mgc1dic896gpsih3vj2fmffqj42gd7"; buildDepends = [ base containers ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://dbs.informatik.uni-halle.de/Lehre/LP09/"; description = "Demonstrate how a database can be implemented the functional way"; license = stdenv.lib.licenses.bsd3; @@ -34499,7 +34656,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base containers ]; - configureFlags = [ "-f-tests" ]; homepage = "http://www.haskell.org/haskellwiki/Library/Data_encoding"; description = "Data encoding library"; license = stdenv.lib.licenses.bsd3; @@ -34564,6 +34720,7 @@ self: { version = "0.2.2.0"; sha256 = "08d90fii0nmvmfxhhw4k5ja13jyxg79n527089lrc2r31l3wj40a"; buildDepends = [ base base-unicode-symbols parsec syb time ]; + jailbreak = true; homepage = "http://redmine.iportnov.ru/projects/dates/"; description = "Small library for parsing different dates formats"; license = stdenv.lib.licenses.bsd3; @@ -34642,7 +34799,7 @@ self: { HDBC-postgresql HDBC-sqlite3 HUnit mtl process random template-haskell text time yaml-light ]; - configureFlags = [ "-f-testing" ]; + jailbreak = true; description = "An implementation of relational database \"migrations\""; license = stdenv.lib.licenses.bsd3; }) {}; @@ -34683,6 +34840,7 @@ self: { buildDepends = [ base containers dbus-core monads-tf text transformers ]; + jailbreak = true; homepage = "http://john-millikin.com/software/haskell-dbus/"; description = "Monadic and object-oriented interfaces to DBus"; license = stdenv.lib.licenses.gpl3; @@ -34701,6 +34859,7 @@ self: { base binary bytestring containers data-binary-ieee754 libxml-sax network parsec text unix vector xml-types ]; + jailbreak = true; homepage = "https://john-millikin.com/software/dbus-core/"; description = "Low-level D-Bus protocol implementation"; license = stdenv.lib.licenses.gpl3; @@ -34716,6 +34875,7 @@ self: { sha256 = "0dg03nv7bsjydywhby0rv1a6jc90gf2885djxd8pb9aly2ncpjxx"; buildDepends = [ base containers dbus parsec template-haskell ]; testDepends = [ base containers dbus QuickCheck ]; + jailbreak = true; description = "Quasi-quoter for DBus functions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -34729,6 +34889,7 @@ self: { version = "0.1.1.0"; sha256 = "1rwxbv92x7c0psp2s88cn168zkxdghviym9zpaz13av7ix06zx7a"; buildDepends = [ base containers dbus syb template-haskell text ]; + jailbreak = true; description = "TemplateHaskell generator of DBus bindings"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -34746,6 +34907,7 @@ self: { base bytestring cereal containers QuickCheck quickcheck-instances test-framework test-framework-quickcheck2 ]; + jailbreak = true; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -34772,6 +34934,7 @@ self: { buildDepends = [ base containers deepseq parsec transformers wl-pprint ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler common utilities"; license = stdenv.lib.licenses.mit; @@ -34792,6 +34955,7 @@ self: { ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra ddc-source-tetra deepseq directory filepath mtl process ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler build framework"; license = stdenv.lib.licenses.mit; @@ -34820,6 +34984,7 @@ self: { buildDepends = [ array base containers ddc-base deepseq directory mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler core language and type checker"; license = stdenv.lib.licenses.mit; @@ -34836,6 +35001,7 @@ self: { buildDepends = [ array base containers ddc-base ddc-core deepseq mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler semantic evaluator for the core language"; license = stdenv.lib.licenses.mit; @@ -34853,6 +35019,7 @@ self: { array base containers ddc-base ddc-core ddc-core-salt ddc-core-simpl deepseq mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler data flow compiler"; license = stdenv.lib.licenses.mit; @@ -34870,6 +35037,7 @@ self: { array base containers ddc-base ddc-core ddc-core-salt ddc-core-simpl mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler LLVM code generator"; license = stdenv.lib.licenses.mit; @@ -34886,6 +35054,7 @@ self: { buildDepends = [ array base containers ddc-base ddc-core deepseq mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler C code generator"; license = stdenv.lib.licenses.mit; @@ -34902,6 +35071,7 @@ self: { buildDepends = [ array base containers ddc-base ddc-core deepseq mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler code transformations"; license = stdenv.lib.licenses.mit; @@ -34919,6 +35089,7 @@ self: { array base containers ddc-base ddc-core ddc-core-salt ddc-core-simpl deepseq mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler intermediate language"; license = stdenv.lib.licenses.mit; @@ -34940,6 +35111,7 @@ self: { ddc-core-tetra ddc-interface ddc-source-tetra deepseq directory filepath mtl process transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler top-level driver"; license = stdenv.lib.licenses.mit; @@ -34969,6 +35141,7 @@ self: { array base containers ddc-base ddc-core ddc-core-salt ddc-core-tetra deepseq mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler source language"; license = stdenv.lib.licenses.mit; @@ -34993,6 +35166,7 @@ self: { ddc-core-tetra ddc-driver ddc-interface ddc-source-tetra directory filepath haskeline mtl process transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; @@ -35011,6 +35185,7 @@ self: { buildDepends = [ base buildbox containers directory filepath process random stm ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler test driver and buildbot"; license = stdenv.lib.licenses.mit; @@ -35030,6 +35205,7 @@ self: { base containers ddc-base ddc-core ddc-core-eval ddc-core-simpl haskeline haskell-src-exts ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciple Core language interactive interpreter"; license = stdenv.lib.licenses.mit; @@ -35072,7 +35248,6 @@ self: { pureMD5 regex-compat regex-tdfa template-haskell text time unix Unixutils utf8-string zlib ]; - configureFlags = [ "-flistlike" "-fnetwork-uri" ]; homepage = "https://github.com/ddssff/debian-haskell"; description = "Modules for working with the Debian package system"; license = stdenv.lib.licenses.bsd3; @@ -35127,6 +35302,7 @@ self: { version = "0.1.0.0"; sha256 = "1fnp2c2rdpihvxm5j22z1mrf8pnpcnasvfsrlg7lvg5m76md7k3v"; buildDepends = [ base comonad-transformers ]; + jailbreak = true; description = "The categorical dual of transformers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -35138,6 +35314,7 @@ self: { version = "0.0.1.1"; sha256 = "0z5krcl4xd385f7v2bsnfyr7zidqwfjvc6b432gbbn2vcrx966c7"; buildDepends = [ base binary bytestring conduit ]; + jailbreak = true; homepage = "https://github.com/hansonkd/decoder-conduit"; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = stdenv.lib.licenses.bsd3; @@ -35159,7 +35336,7 @@ self: { haskell-src-exts-qq hmk mtl parsec process Stream stringtable-atom time unix wl-pprint ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "http://www.lix.polytechnique.fr/dedukti"; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; @@ -35181,6 +35358,7 @@ self: { accelerate base mtl QuickCheck repa repa-algorithms test-framework test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/ajtulloch/deeplearning-hs"; description = "Deep Learning in Haskell"; license = stdenv.lib.licenses.mit; @@ -35214,12 +35392,6 @@ self: { testDepends = [ base deepseq HUnit parallel random template-haskell ]; - configureFlags = [ - "-fnfdata_instance_pattern" "-fuse_sop" - "-f-warn_pattern_match_failure" "-fuse_ww_deepseq" - "-fjust_alias_gseqable" "-fparallelism_experiment" - "-fhaskell98_fragment" - ]; homepage = "http://fremissant.net/deepseq-bounded"; description = "Bounded deepseq, including support for generic deriving"; license = stdenv.lib.licenses.bsd3; @@ -35250,6 +35422,7 @@ self: { sha256 = "12wk8higrp12b22zzz1b4ar1q5h7flk22bp2rvswsqri2zkbi965"; buildDepends = [ base deepseq template-haskell ]; testDepends = [ base deepseq template-haskell ]; + jailbreak = true; description = "Template Haskell based deriver for optimised NFData instances"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -35289,6 +35462,7 @@ self: { array base bytestring containers deepseq ghc-prim GLURaw OpenGL OpenGLRaw primitive vector ]; + jailbreak = true; homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "The base modules of the Definitive framework"; license = "unknown"; @@ -35309,6 +35483,7 @@ self: { definitive-reactive directory filepath old-locale primitive time unix vector ]; + jailbreak = true; homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; @@ -35331,6 +35506,7 @@ self: { JuicyPixels mtl primitive stb-truetype transformers utf8-string vector zlib ]; + jailbreak = true; homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; @@ -35349,6 +35525,7 @@ self: { array base bytestring containers cpu deepseq definitive-base ghc-prim GLURaw OpenGL OpenGLRaw primitive utf8-string vector ]; + jailbreak = true; homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A parser combinator library for the Definitive framework"; license = "unknown"; @@ -35367,6 +35544,7 @@ self: { array base bytestring clock containers deepseq definitive-base primitive vector ]; + jailbreak = true; homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A simple Reactive library"; license = "unknown"; @@ -35386,6 +35564,7 @@ self: { alsa-core alsa-pcm array base bytestring clock containers deepseq definitive-base primitive sample-frame storable-record vector ]; + jailbreak = true; homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package to handle sound and play it back"; license = "unknown"; @@ -35402,6 +35581,7 @@ self: { buildDepends = [ array base containers exceptions mtl parsec text transformers ]; + jailbreak = true; homepage = "http://github.com/YoEight/deiko-config"; description = "Small and typesafe configuration library"; license = stdenv.lib.licenses.bsd3; @@ -35435,6 +35615,7 @@ self: { transformers ]; testDepends = [ base bytestring deka QuickCheck quickpull ]; + jailbreak = true; homepage = "https://github.com/massysett/deka"; description = "Tests for deka, decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -35524,7 +35705,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base directory filepath ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "http://protempore.net/denominate/"; description = "Functions supporting bulk file and directory name normalization"; license = stdenv.lib.licenses.bsd3; @@ -35637,6 +35818,7 @@ self: { version = "0.7.3"; sha256 = "05f77vkqzia91rywkg68ad24j98a7h9aqkd0568x2zmqcndzbisy"; buildDepends = [ applicative-extras base labeled-tree mtl ]; + jailbreak = true; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; }) {}; @@ -35668,6 +35850,7 @@ self: { version = "0.1.1"; sha256 = "0bggj2jb3bbgxcz75v8q2yx29v88skiwjaj3fxkkynnv5zvrbgwr"; buildDepends = [ base instant-generics template-haskell ]; + jailbreak = true; homepage = "http://github.com/konn/derive-IG"; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = stdenv.lib.licenses.bsd3; @@ -35687,6 +35870,7 @@ self: { base containers haskell-src-exts haskell-src-meta pretty template-haskell ]; + jailbreak = true; description = "Instance deriving for (a subset of) GADTs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -35698,6 +35882,7 @@ self: { version = "0.2.1"; sha256 = "11c378mh5razibd9ljffm5353v4plrgvkfb62p6029f04sf29jnc"; buildDepends = [ array base containers template-haskell ]; + jailbreak = true; homepage = "http://github.com/baldo/derive-trie"; description = "Automatic derivation of Trie implementations"; license = stdenv.lib.licenses.bsd3; @@ -35775,6 +35960,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring utf8-string ]; + jailbreak = true; description = "Get rid of unicode (utf-8) symbols in Haskell sources"; license = stdenv.lib.licenses.mit; }) {}; @@ -35847,6 +36033,7 @@ self: { version = "0.2"; sha256 = "100xlxqhy33kllyb4dy7q0bwwy5wn9w45qy1cb5f0yb0dqff1pnx"; buildDepends = [ base HTTP mtl network split ]; + jailbreak = true; homepage = "http://www.dmwit.com/dgs"; description = "Haskell front-end for DGS' bot interface"; license = stdenv.lib.licenses.bsd3; @@ -35859,6 +36046,7 @@ self: { version = "0.1.1.2"; sha256 = "08j65fgxrbp8mdhs887w6hj4wakxrkbk9nr5kk9jy0bahw7dw9c5"; buildDepends = [ base deepseq ]; + jailbreak = true; description = "An EDSL for teaching Haskell with diagrams - data types"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -35874,6 +36062,7 @@ self: { buildDepends = [ base containers data-pprint deepseq dia-base mtl xhtml ]; + jailbreak = true; description = "An EDSL for teaching Haskell with diagrams - functions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -35889,9 +36078,6 @@ self: { buildDepends = [ diagrams-contrib diagrams-core diagrams-lib diagrams-svg ]; - configureFlags = [ - "-f-rasterific" "-f-ps" "-fsvg" "-f-gtk" "-f-cairo" - ]; homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative vector graphics"; license = stdenv.lib.licenses.bsd3; @@ -35914,9 +36100,8 @@ self: { diagrams-postscript diagrams-svg directory exceptions filepath hashable haskell-src-exts hint lens mtl split transformers ]; - configureFlags = [ - "-fcairo" "-fsvg" "-fps" "-frasterific" "-fps" "-fsvg" "-fcairo" - ]; + configureFlags = [ "-fcairo" "-fsvg" "-fps" "-frasterific" ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; @@ -36084,6 +36269,7 @@ self: { base cmdargs colour diagrams-core diagrams-lib filepath HPDF lens monoid-extras mtl semigroups split vector-space ]; + jailbreak = true; homepage = "http://www.alpheccar.org"; description = "PDF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -36170,6 +36356,7 @@ self: { version = "0.6"; sha256 = "1qs4m1xy62pv6gjgip9vx2pwlv2gzjq1h86yiiq15yg4gcbn5fav"; buildDepends = [ base diagrams-core diagrams-lib dlist mtl ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "TikZ backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -36200,6 +36387,7 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://monoid.at/code"; description = "Cryptographically secure n-sided dice via rejection sampling"; license = stdenv.lib.licenses.lgpl21; @@ -36227,7 +36415,6 @@ self: { version = "0.0.1"; sha256 = "0qkyfmys5k6la10dvi8wsmw120xfarjblpkr33xiazll2m9845wh"; buildDepends = [ base ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/diet"; description = "Discrete Interval Encoding Tree"; license = stdenv.lib.licenses.bsd3; @@ -36241,6 +36428,7 @@ self: { sha256 = "1pcddda822n5zsjzs4ld4prjj04v4cgpk3hvjn7ivmdnb06g85il"; buildDepends = [ attoparsec base text ]; testDepends = [ attoparsec base hspec text ]; + jailbreak = true; description = "A parser for diff file formats"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -36318,6 +36506,7 @@ self: { version = "0.1"; sha256 = "0qij2pn107dfb9rl9rrd77l69wmfp9fghv9ysql2d7g5qdr306pd"; buildDepends = [ base polynomial ]; + jailbreak = true; homepage = "https://github.com/bgamari/digamma"; description = "A robust implementation of the digamma function"; license = stdenv.lib.licenses.bsd3; @@ -36331,7 +36520,6 @@ self: { sha256 = "04gy2zp8yzvv7j9bdfvmfzcz3sqyqa6rwslqcn4vyair2vmif5v4"; buildDepends = [ base bytestring ]; extraLibraries = [ zlib ]; - configureFlags = [ "-f-bytestring-in-base" ]; description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) zlib;}; @@ -36420,6 +36608,7 @@ self: { buildDepends = [ base blaze-html blaze-markup digestive-functors text ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/digestive-functors"; description = "Blaze frontend for the digestive-functors library"; license = stdenv.lib.licenses.bsd3; @@ -36436,6 +36625,7 @@ self: { buildDepends = [ base bytestring digestive-functors happstack-server text ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/digestive-functors"; description = "Happstack backend for the digestive-functors library"; license = stdenv.lib.licenses.bsd3; @@ -36452,6 +36642,7 @@ self: { buildDepends = [ base blaze-builder digestive-functors heist mtl text xmlhtml ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/digestive-functors"; description = "Heist frontend for the digestive-functors library"; license = stdenv.lib.licenses.bsd3; @@ -36465,6 +36656,7 @@ self: { sha256 = "00n1cxkrkd3ayl7pp6pr7nyx6zcwqpsqzflnnnf0f8dabrz4wzdc"; buildDepends = [ base digestive-functors hsp hsx text ]; buildTools = [ trhsx ]; + jailbreak = true; homepage = "http://src.seereason.com/digestive-functors-hsp"; description = "HSP support for digestive-functors"; license = stdenv.lib.licenses.bsd3; @@ -36499,6 +36691,7 @@ self: { base bytestring containers digestive-functors directory filepath mtl snap-core text ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/digestive-functors"; description = "Snap backend for the digestive-functors library"; license = stdenv.lib.licenses.bsd3; @@ -36514,7 +36707,6 @@ self: { sha256 = "18l6ca3kgp0g8zmai6jsq6pz7hjilcnyspvz95h9pqklhh2z32qk"; buildDepends = [ base lens ]; testDepends = [ base directory doctest filepath QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/NICTA/digit"; description = "A data-type representing digits 0-9 and other combinations"; license = stdenv.lib.licenses.bsd3; @@ -36574,6 +36766,7 @@ self: { strict-concurrency template-haskell text transformers unordered-containers wai wai-eventsource wai-extra warp web-css ]; + jailbreak = true; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = stdenv.lib.licenses.mit; }) {}; @@ -36593,6 +36786,7 @@ self: { aeson base blaze-html bytestring dingo-core dingo-widgets fclabels shakespeare-js template-haskell text transformers ]; + jailbreak = true; description = "Dingo Example"; license = stdenv.lib.licenses.mit; }) {}; @@ -36611,6 +36805,7 @@ self: { file-embed shakespeare-js template-haskell text transformers unordered-containers ]; + jailbreak = true; description = "Dingo Widgets"; license = stdenv.lib.licenses.mit; }) {}; @@ -36682,6 +36877,7 @@ self: { monad-control mtl network old-locale SafeSemaphore time transformers-base unix utf8-string ]; + jailbreak = true; homepage = "http://ireneknapp.com/software/"; description = "Native webserver that acts as a library"; license = stdenv.lib.licenses.bsd3; @@ -36723,9 +36919,6 @@ self: { testDepends = [ base base16-bytestring bytestring directory HUnit text ]; - configureFlags = [ - "-furifilenames" "-ffulltextsearch" "-f-systemlib" - ]; homepage = "https://github.com/IreneKnapp/direct-sqlite"; description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; license = stdenv.lib.licenses.bsd3; @@ -36743,6 +36936,7 @@ self: { base bytestring containers deepseq hashable parallel QuickCheck unordered-containers vector ]; + jailbreak = true; description = "Finite directed cubical complexes and associated algorithms"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -36949,7 +37143,6 @@ self: { old-locale random rank1dynamic stm syb template-haskell time transformers ]; - configureFlags = [ "-f-prof" "-fth" ]; homepage = "http://haskell-distributed.github.com/"; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -36978,7 +37171,6 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; - configureFlags = [ "-f-perf" ]; homepage = "http://github.com/haskell-distributed/distributed-process-async"; description = "Cloud Haskell Async API"; license = stdenv.lib.licenses.bsd3; @@ -37002,7 +37194,7 @@ self: { libssh2 mtl network-transport network-transport-tcp pureMD5 rank1dynamic transformers unix ]; - configureFlags = [ "-f-build-demos" ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process"; description = "Microsoft Azure backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; @@ -37033,7 +37225,7 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; - configureFlags = [ "-f-perf" ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -37067,7 +37259,6 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - configureFlags = [ "-f-perf" ]; homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -37098,7 +37289,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - configureFlags = [ "-f-perf" ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; license = stdenv.lib.licenses.bsd3; @@ -37167,7 +37358,7 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - configureFlags = [ "-f-perf" ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-platform"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -37201,7 +37392,7 @@ self: { stm test-framework test-framework-hunit time transformers unordered-containers ]; - configureFlags = [ "-f-perf" ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-registry"; description = "Cloud Haskell Extended Process Registry"; license = stdenv.lib.licenses.bsd3; @@ -37223,7 +37414,6 @@ self: { network network-multicast network-transport network-transport-tcp transformers ]; - configureFlags = [ "-f-build-example" ]; homepage = "http://haskell-distributed.github.com"; description = "Simple zero-configuration backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; @@ -37289,7 +37479,6 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - configureFlags = [ "-f-perf" ]; homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -37313,6 +37502,7 @@ self: { testDepends = [ base network network-transport network-transport-tcp test-framework ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-tests"; description = "Tests for distributed-process"; license = stdenv.lib.licenses.bsd3; @@ -37338,6 +37528,7 @@ self: { version = "1.0.0.0"; sha256 = "0zh9ap3hhylpk7bsp54hm9gj5x8f8zvm5sg7nydmxnigyq0b3l4y"; buildDepends = [ array base containers MonadRandom random ]; + jailbreak = true; homepage = "https://github.com/redelmann/haskell-distribution"; description = "Finite discrete probability distributions"; license = stdenv.lib.licenses.asl20; @@ -37355,6 +37546,7 @@ self: { base Chart Chart-cairo colour containers data-default-class distribution lens ]; + jailbreak = true; homepage = "https://github.com/redelmann/haskell-distribution-plot"; description = "Easily plot distributions from the distribution package.."; license = stdenv.lib.licenses.asl20; @@ -37372,7 +37564,6 @@ self: { base ghc-prim tagged transformers transformers-compat ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-f-lib-werror" ]; homepage = "http://github.com/ekmett/distributive/"; description = "Distributive functors -- Dual to Traversable"; license = stdenv.lib.licenses.bsd3; @@ -37444,6 +37635,7 @@ self: { version = "0.0.1"; sha256 = "089b6z8hcv6q9y77zy8m96lc00r1ckzmff0mybp9l1akj7gwdpix"; buildDepends = [ base containers logict template-haskell ]; + jailbreak = true; homepage = "http://gitorious.org/djinn-th"; description = "Generate executable Haskell code from a type"; license = stdenv.lib.licenses.bsd3; @@ -37510,6 +37702,7 @@ self: { buildDepends = [ base bytestring containers contstuff dns iproute time ]; + jailbreak = true; description = "Caching DNS resolver library and mass DNS resolver utility"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -37559,7 +37752,7 @@ self: { sqlite tagchup text time transformers unix xhtml-combinators xml xml-basic ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "https://github.com/j3h/doc-review"; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = stdenv.lib.licenses.bsd3; @@ -37616,6 +37809,7 @@ self: { aeson base bytestring containers data-default lens network-uri pipes pipes-bytestring pipes-http pipes-text text wreq ]; + jailbreak = true; homepage = "https://github.com/denibertovic/docker-hs"; description = "Haskell wrapper for Docker Remote API"; license = stdenv.lib.licenses.bsd3; @@ -37808,6 +38002,7 @@ self: { base hscolour hspec lens mtl random random-extras random-fu transformers ]; + jailbreak = true; homepage = "http://github.com/egonschiele/dominion"; description = "A simulator for the board game Dominion"; license = stdenv.lib.licenses.bsd3; @@ -37880,7 +38075,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers ]; - configureFlags = [ "-f-devel" ]; description = "A simple interface for building .dot graph files."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -37897,7 +38091,6 @@ self: { testDepends = [ base bytestring test-framework test-framework-quickcheck2 text ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/double-conversion"; description = "Fast conversion between double precision floating point and text"; license = stdenv.lib.licenses.bsd3; @@ -37939,7 +38132,7 @@ self: { version = "0.1.4"; sha256 = "1wf3pf2k4i6jvpfsjlxdj6v53qd33jj1z1ipaf3p47glgx4xw3lm"; buildDepends = [ base bytestring curl feed tagsoup xml ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "http://code.haskell.org/~dons/code/download-curl"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; @@ -37958,6 +38151,7 @@ self: { buildDepends = [ base bytestring filepath http-enumerator tagsoup text ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/download-media-content"; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = stdenv.lib.licenses.bsd3; @@ -37970,7 +38164,7 @@ self: { version = "0.7.0.1"; sha256 = "19rc0h94lgxyndaw41wgnc0prwffl780i6nqsn9b7byvgy97f15y"; buildDepends = [ array base ghc-prim pretty random vector ]; - configureFlags = [ "-f-dtrace" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common config and debugging functions"; license = stdenv.lib.licenses.bsd3; @@ -37990,6 +38184,7 @@ self: { base containers dph-base dph-lifted-vseg dph-prim-par HUnit old-time parseargs random vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell example programs"; license = stdenv.lib.licenses.bsd3; @@ -38007,6 +38202,7 @@ self: { array base containers dph-base dph-prim-par ghc pretty random template-haskell vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = stdenv.lib.licenses.bsd3; @@ -38023,6 +38219,7 @@ self: { buildDepends = [ array base dph-base dph-prim-par ghc random template-haskell vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = stdenv.lib.licenses.bsd3; @@ -38040,6 +38237,7 @@ self: { array base containers dph-base dph-lifted-base dph-prim-par ghc pretty random template-haskell vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators"; license = stdenv.lib.licenses.bsd3; @@ -38063,6 +38261,7 @@ self: { version = "0.7.0.1"; sha256 = "17m03gylc61d7mx26rz70kwmi014rv1g14683vraa1b77pci5h8j"; buildDepends = [ base dph-base random vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (abstract interface)"; license = stdenv.lib.licenses.bsd3; @@ -38080,6 +38279,7 @@ self: { base dph-base dph-prim-interface dph-prim-seq old-time random vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (production version)"; license = stdenv.lib.licenses.bsd3; @@ -38096,6 +38296,7 @@ self: { buildDepends = [ base dph-base dph-prim-interface ghc-prim primitive random vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = stdenv.lib.licenses.bsd3; @@ -38150,7 +38351,6 @@ self: { isExecutable = true; buildDepends = [ base containers ]; testDepends = [ base containers hspec QuickCheck ]; - configureFlags = [ "-f-examples" "-f-no-tests" ]; homepage = "https://github.com/yamadapc/haskell-drawille"; description = "A port of asciimoo's drawille to haskell"; license = stdenv.lib.licenses.gpl3; @@ -38173,6 +38373,7 @@ self: { pem resourcet template-haskell time tls tls-extra transformers urlencoded utf8-string ]; + jailbreak = true; homepage = "http://github.com/cakoose/dropbox-sdk-haskell"; description = "A library to access the Dropbox HTTP API"; license = stdenv.lib.licenses.mit; @@ -38192,6 +38393,7 @@ self: { base containers directory filepath haskell98 process regex-posix time ]; + jailbreak = true; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38223,6 +38425,7 @@ self: { attoparsec base bytestring containers entropy hslogger mwc-random parallel primitive repa strict transformers vector ]; + jailbreak = true; description = "DSMC library for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38241,6 +38444,7 @@ self: { base bytestring cmdargs ConfigFile dsmc gloss gloss-raster hslogger mtl repa strict transformers vector ]; + jailbreak = true; description = "DSMC toolkit for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38252,6 +38456,7 @@ self: { version = "0.3.0.0"; sha256 = "15pqja0q1lram7xi5xk8dlcfg5m1z0l4zscqw24wm50hmqpxi09d"; buildDepends = [ base parsec ]; + jailbreak = true; homepage = "https://github.com/lcycon/hs-dson"; description = "Haskell DogeScript Object Notation Parser"; license = stdenv.lib.licenses.gpl3; @@ -38264,6 +38469,7 @@ self: { version = "0.4.1.1"; sha256 = "1zflz9vhcz7psssn6hrizmwdmrvpagxhl0648k6f1n9xj50kp99y"; buildDepends = [ base parsec ]; + jailbreak = true; homepage = "https://github.com/alvare/dson-parsec"; description = "DSON parser"; license = stdenv.lib.licenses.mit; @@ -38278,7 +38484,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base random ]; - configureFlags = [ "-fbuildexamples" "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/DSP"; description = "Haskell Digital Signal Processing"; license = "GPL"; @@ -38291,6 +38497,7 @@ self: { version = "0.4.0.4"; sha256 = "15zy1dhfs87hxq1qm54ym0pdhvg7l76m7vy5y06dnksb1sblhaqm"; buildDepends = [ base base-unicode-symbols dlist ]; + jailbreak = true; homepage = "https://github.com/basvandijk/dstring"; description = "Difference strings"; license = stdenv.lib.licenses.bsd3; @@ -38330,6 +38537,7 @@ self: { lifted-base monad-control network resourcet text transformers uri-conduit xml-catalog xml-conduit xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Parse and render DTD files (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -38372,7 +38580,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-test" ]; description = "Haskell interface to the DTrace system tracing utility"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38413,6 +38620,7 @@ self: { testDepends = [ base HUnit MissingH QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; description = "Frontend development build tool"; license = stdenv.lib.licenses.mit; }) {}; @@ -38435,7 +38643,6 @@ self: { hashtables mtl process QuickCheck test-framework test-framework-quickcheck2 unordered-containers ]; - configureFlags = [ "-f-test" "-f-stresstest" ]; description = "Efficient automatic differentiation and code generation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38517,6 +38724,7 @@ self: { base bytestring bytestring-mmap containers dwarf-el elf lens pretty transformers ]; + jailbreak = true; description = "High-level wrapper around the dwarf library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38590,6 +38798,7 @@ self: { base bytestring cairo colour deepseq either GLFW-b GLUtil OpenGL pango pipes transformers ]; + jailbreak = true; homepage = "https://github.com/adamwalker/dynamic-graph"; description = "Draw and update graphs in real time with OpenGL"; license = stdenv.lib.licenses.bsd3; @@ -38704,6 +38913,7 @@ self: { version = "0.1"; sha256 = "10g8w50hhw8ap6lvsv9apmmfaqvqjwzhnq4mx1npapb8cmsmzgdb"; buildDepends = [ base bytestring network ]; + jailbreak = true; description = "Socket operations with timeouts"; license = "unknown"; }) {}; @@ -38719,6 +38929,7 @@ self: { buildDepends = [ aeson base bytestring either http-conduit mtl resourcet text ]; + jailbreak = true; homepage = "http://github.com/sanetracker/easy-api"; description = "Utility code for building HTTP API bindings more quickly"; license = stdenv.lib.licenses.mit; @@ -38784,6 +38995,7 @@ self: { version = "0.1.0"; sha256 = "0r3pl63fxrrfafwp3791xh0c47pb4jqqcm9lk52g0gaqg0s8x5qk"; buildDepends = [ base time ]; + jailbreak = true; description = "Time in ebeats"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38837,6 +39049,7 @@ self: { buildDepends = [ base containers data-default lens parsec safe transformers ]; + jailbreak = true; homepage = "https://github.com/fabianbergmark/ECMA-262"; description = "A ECMA-262 interpreter library"; license = stdenv.lib.licenses.bsd2; @@ -38854,6 +39067,7 @@ self: { isExecutable = true; buildDepends = [ base bytestring digest directory process vcd ]; extraLibraries = [ canlib ]; + jailbreak = true; description = "Tools for automotive ECU development"; license = stdenv.lib.licenses.bsd3; }) { canlib = null;}; @@ -38866,7 +39080,6 @@ self: { sha256 = "0x08p2941g7f3xsg8jgy5j73v0dihg47j2i1hb53c7h4jhvc1fmj"; buildDepends = [ base bytestring ]; testDepends = [ base bytestring hlint QuickCheck ]; - configureFlags = [ "-ftest-hlint" "-ftest-properties" ]; homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; @@ -38907,7 +39120,7 @@ self: { testDepends = [ aeson base bifunctors bytestring directory tasty tasty-golden text ]; - configureFlags = [ "-f-build-executable" ]; + jailbreak = true; homepage = "http://github.com/brendanhay/ede"; description = "Templating language with similar syntax and features to Liquid or Jinja2"; license = "unknown"; @@ -38933,7 +39146,6 @@ self: { sha256 = "0fmr2chrpp990lyjfk13s4d8h1hdw853wk54233mpmxlh0sd32ki"; editedCabalFile = "978022c24ce2326e9fabd18ce30d687b72034eae80cabc5ede83312d96a1d1df"; buildDepends = [ base edenmodules parallel ]; - configureFlags = [ "-fpar" ]; description = "Semi-explicit parallel programming skeleton library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38971,6 +39183,7 @@ self: { buildDepends = [ ALUT base cmdtheline containers gloss random wraparound ]; + jailbreak = true; homepage = "http://frigidcode.com/code/edge"; description = "Top view space combat arcade game"; license = stdenv.lib.licenses.gpl3; @@ -38985,7 +39198,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base containers random ]; - configureFlags = [ "-fsplitbase" "-f-benchmark" "-f-tests" ]; homepage = "http://github.com/batterseapower/edit-distance"; description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; license = stdenv.lib.licenses.bsd3; @@ -39011,7 +39223,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-gtk" ]; description = "Programs demoing the use of symmetric, stateful edit lenses"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -39023,6 +39234,7 @@ self: { version = "1.0.0.2"; sha256 = "15jz0b913xd8yd3nzk4vrlj0vzbhjarl05h9j0mdcfgxns5j0yxi"; buildDepends = [ base text vty vty-ui ]; + jailbreak = true; homepage = "https://github.com/maxpow4h/editable"; description = "Interactive editors for Generics"; license = stdenv.lib.licenses.bsd2; @@ -39036,6 +39248,7 @@ self: { sha256 = "101zhzja14n8bhbrly7w2aywx3sxyzgyjdrmgpg4gn4alf4lzdlz"; buildDepends = [ base ]; extraLibraries = [ libedit ]; + jailbreak = true; homepage = "http://code.haskell.org/editline"; description = "Bindings to the editline library (libedit)"; license = stdenv.lib.licenses.bsd3; @@ -39081,6 +39294,7 @@ self: { base Cabal ghc-prim hashtables HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; @@ -39100,6 +39314,7 @@ self: { base Cabal ghc-prim hashtables HUnit mzv QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; @@ -39136,7 +39351,6 @@ self: { version = "0.2.1.2"; sha256 = "0zjblpsd837ngg1pb1rqb3wyszwx93hpn08qg0b6f68vks83z66s"; buildDepends = [ base mtl ]; - configureFlags = [ "-fmtl" ]; homepage = "https://github.com/YellPika/effin"; description = "A Typeable-free implementation of extensible effects"; license = stdenv.lib.licenses.bsd3; @@ -39247,6 +39461,7 @@ self: { editedCabalFile = "5154a0f9083521b4c60cee92f2614b253961fd1e2dd9e7c5b541630df8597d80"; buildDepends = [ base bytestring containers mtl transformers ]; extraLibraries = [ eibclient ]; + jailbreak = true; description = "EIBd Client"; license = stdenv.lib.licenses.gpl3; }) { eibclient = null;}; @@ -39334,7 +39549,6 @@ self: { aeson base ekg-core http-client lens network network-uri old-locale text time unordered-containers vector wreq ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/ocharles/ekg-bosun"; description = "Send ekg metrics to a Bosun instance"; license = stdenv.lib.licenses.bsd3; @@ -39422,6 +39636,7 @@ self: { buildDepends = [ base bytestring ekg-core network text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/tibbe/ekg-statsd"; description = "Push metrics to statsd"; license = stdenv.lib.licenses.bsd3; @@ -39545,6 +39760,7 @@ self: { test-framework-quickcheck2 text transformers union-find unordered-containers ]; + jailbreak = true; homepage = "http://elm-lang.org"; description = "Values to help with elm-package, elm-make, and elm-lang.org."; license = stdenv.lib.licenses.bsd3; @@ -39583,6 +39799,7 @@ self: { directory Elm filepath HTTP http-client http-client-tls http-types mtl network optparse-applicative process vector ]; + jailbreak = true; homepage = "http://github.com/elm-lang/elm-get"; description = "Tool for sharing and using Elm libraries"; license = stdenv.lib.licenses.bsd3; @@ -39604,6 +39821,7 @@ self: { containers directory elm-compiler elm-package filepath mtl optparse-applicative text ]; + jailbreak = true; homepage = "http://elm-lang.org"; description = "A build tool for Elm projects"; license = stdenv.lib.licenses.bsd3; @@ -39628,6 +39846,7 @@ self: { http-types mtl network optparse-applicative pretty process text time unordered-containers vector zip-archive ]; + jailbreak = true; homepage = "http://github.com/elm-lang/elm-package"; description = "Package manager for Elm libraries"; license = stdenv.lib.licenses.bsd3; @@ -39714,6 +39933,7 @@ self: { buildDepends = [ base blaze-markup Elm shakespeare-js text yesod-core ]; + jailbreak = true; homepage = "http://elm-lang.org"; description = "The Elm language Yesod compatibility module"; license = stdenv.lib.licenses.bsd3; @@ -39731,6 +39951,7 @@ self: { array base bytestring encoding HaskellNet hsemail old-locale old-time parsec process time ]; + jailbreak = true; description = "Sending eMail in Haskell made easy"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -39768,6 +39989,7 @@ self: { buildDepends = [ aeson attoparsec base bytestring containers HTTP network ]; + jailbreak = true; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -39810,6 +40032,7 @@ self: { base bytestring cmdargs directory dns doctest email-validate HUnit parallel-io pcre-light tasty tasty-hunit ]; + jailbreak = true; description = "Perform basic syntax and deliverability checks on email addresses"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -39866,6 +40089,7 @@ self: { sha256 = "0cpcwrb6wqwq371wqjmhzfhdwk3vfhjjgz4vgjsjvw6cdhbpw5p1"; buildDepends = [ base ]; testDepends = [ base HUnit QuickCheck syb ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/EMGM"; description = "Extensible and Modular Generics for the Masses"; license = stdenv.lib.licenses.bsd3; @@ -39914,7 +40138,7 @@ self: { array base binary bytestring containers extensible-exceptions ghc-prim HaXml mtl regex-compat ]; - configureFlags = [ "-fsystemencoding" "-fsplitbase" ]; + jailbreak = true; homepage = "http://code.haskell.org/encoding/"; description = "A library for various character encodings"; license = stdenv.lib.licenses.bsd3; @@ -39927,7 +40151,6 @@ self: { version = "0.1.0.1"; sha256 = "031608wws9bcgz1zywvkml68p4a6s8br7c0fhg5rdqyy7g4bympd"; buildDepends = [ base between transformers ]; - configureFlags = [ "-f-pedantic" ]; homepage = "https://github.com/trskop/endo"; description = "Endomorphism utilities"; license = stdenv.lib.licenses.bsd3; @@ -40005,7 +40228,6 @@ self: { version = "0.3.4.1"; sha256 = "10myxs2a7838sywnlfggpsd7lmvzphl10zdh1vbbi18n3x79gyk0"; buildDepends = [ base bytestring unix ]; - configureFlags = [ "-f-halvm" ]; homepage = "https://github.com/TomMD/entropy"; description = "A platform independent entropy source"; license = stdenv.lib.licenses.bsd3; @@ -40085,6 +40307,7 @@ self: { version = "0.5.1.0"; sha256 = "1fq4zmhc825bmyslfm7kbsa29qq773cgrz4npj2bcfl0jkbl3ndc"; buildDepends = [ base enummapset-th ]; + jailbreak = true; homepage = "https://github.com/liyang/enumfun"; description = "Finitely represented /total/ EnumMaps"; license = stdenv.lib.licenses.bsd3; @@ -40107,6 +40330,7 @@ self: { base cereal containers deepseq hspec hspec-expectations HUnit lens QuickCheck safecopy semigroups ]; + jailbreak = true; description = "Map of maps using Enum types as keys"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40118,7 +40342,6 @@ self: { version = "0.5.2.0"; sha256 = "065gxljrjw59rdf7abq0v0c29wg1ymg984ckixnjrcs1yks0c2js"; buildDepends = [ base containers deepseq ]; - configureFlags = [ "-f-debug" ]; homepage = "https://github.com/michalt/enummapset"; description = "IntMap and IntSet with Enum keys/elements"; license = stdenv.lib.licenses.bsd3; @@ -40161,6 +40384,7 @@ self: { bytestring containers http-types mtl network old-locale text time transformers ]; + jailbreak = true; homepage = "http://github.com/tel/env-parser"; description = "Pull configuration information from the ENV"; license = stdenv.lib.licenses.mit; @@ -40186,6 +40410,7 @@ self: { version = "2.0.12.4"; sha256 = "1jpz58zlkhgf2fl4fzicpdkqqdbwy3sw56dga8yvjmgv5zcqqshx"; buildDepends = [ base ]; + jailbreak = true; homepage = "http://epanet.de/developer/haskell.html"; description = "Haskell binding for EPANET"; license = stdenv.lib.licenses.gpl3; @@ -40198,6 +40423,7 @@ self: { version = "0.2.1"; sha256 = "0sg5pipzc4s9xq83ari7rigjbvhyh76kqnp57i98bs3k54ba53ym"; buildDepends = [ base stm time ]; + jailbreak = true; homepage = "http://github.com/baldo/epass"; description = "Baisc, Erlang-like message passing supporting sockets"; license = stdenv.lib.licenses.bsd3; @@ -40357,6 +40583,7 @@ self: { version = "0.2.0.4"; sha256 = "1f94y6h7qg7rck7rxf6j8sygkh1xmfk0z1lr71inx6s74agjyc9j"; buildDepends = [ base singletons template-haskell void ]; + jailbreak = true; description = "Proof assistant for Haskell using DataKinds & PolyKinds"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40441,6 +40668,7 @@ self: { version = "0.6.0.0"; sha256 = "0nr0c2qq30ji50pyjrklrb6a73i6qkqws7ywbfpa4pcd176xwlrw"; buildDepends = [ aeson base bytestring containers text ]; + jailbreak = true; description = "A text censorship library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40458,6 +40686,7 @@ self: { buildDepends = [ aeson aeson-pretty base bytestring containers eros text ]; + jailbreak = true; description = "DEPRECATED in favor of eros-http"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40476,6 +40705,7 @@ self: { aeson base blaze-html bytestring eros http-types markdown text wai warp ]; + jailbreak = true; description = "JSON HTTP interface to Eros"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40498,6 +40728,7 @@ self: { version = "0.1.0.0"; sha256 = "0rv59fhlfr03qis957mjgl4gyk1i5axfyvr680z3ykbfd3k5gc1s"; buildDepends = [ base either mtl transformers ]; + jailbreak = true; homepage = "https://github.com/echatav/error-continuations"; description = "Error Continuations"; license = stdenv.lib.licenses.publicDomain; @@ -40538,6 +40769,7 @@ self: { buildDepends = [ ansi-wl-pprint base containers either-unwrap InfixApplicative mtl ]; + jailbreak = true; homepage = "http://github.com/gcross/error-message"; description = "Composable error messages"; license = stdenv.lib.licenses.bsd3; @@ -40589,7 +40821,7 @@ self: { mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck transformers ]; - configureFlags = [ "-fexamples" ]; + jailbreak = true; homepage = "http://github.com/ekmett/ersatz"; description = "A monad for expressing SAT or QSAT problems using observable sharing"; license = stdenv.lib.licenses.bsd3; @@ -40608,7 +40840,6 @@ self: { buildDepends = [ array base containers ersatz toysolver transformers ]; - configureFlags = [ "-f-examples" ]; homepage = "https://github.com/msakai/ersatz-toysat"; description = "toysat driver as backend for ersatz"; license = stdenv.lib.licenses.bsd3; @@ -40629,7 +40860,7 @@ self: { aeson attoparsec attoparsec-expr base bytestring regex-compat text unordered-containers vector yaml ]; - configureFlags = [ "-fregex" "-fyaml" "-futil" "-f-dev" ]; + jailbreak = true; homepage = "https://bitbucket.org/kayo/ert"; description = "Easy Runtime Templates"; license = stdenv.lib.licenses.gpl3; @@ -40649,6 +40880,7 @@ self: { attoparsec base bytestring containers directory fgl mtl network stm stream-fusion tuple unix ]; + jailbreak = true; homepage = "http://www.killersmurf.com/projects/esotericbot"; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = stdenv.lib.licenses.bsd3; @@ -40673,7 +40905,6 @@ self: { persistent persistent-sqlite persistent-template QuickCheck resourcet text transformers ]; - configureFlags = [ "-f-mysql" "-f-postgresql" ]; homepage = "https://github.com/prowdsponsor/esqueleto"; description = "Type-safe EDSL for SQL queries on persistent backends"; license = stdenv.lib.licenses.bsd3; @@ -40687,7 +40918,6 @@ self: { version = "1.0.0.1"; sha256 = "0l1c2k4c5bpfr7h03fdcfnvm5nsv605sxnd8agi1v2qakwxhdjcp"; buildDepends = [ ad base distributive lens linear reflection ]; - configureFlags = [ "-f-werror" ]; homepage = "https://github.com/GaloisInc/estimator"; description = "State-space estimation algorithms such as Kalman Filters"; license = stdenv.lib.licenses.bsd3; @@ -40705,6 +40935,7 @@ self: { base binary containers deepseq list-tries MonadRandom mtl pretty prettyclass QuickCheck text ]; + jailbreak = true; description = "Tool for managing probability estimation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40718,6 +40949,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bio bytestring containers random ]; + jailbreak = true; homepage = "http://blog.malde.org/"; description = "Repeats from ESTs"; license = "GPL"; @@ -40855,6 +41087,7 @@ self: { base bytestring conduit containers failure hexpat http-conduit http-types monad-control mtl time ]; + jailbreak = true; description = "Free foreign exchange/currency feed from the European Central Bank"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -40896,7 +41129,6 @@ self: { testDepends = [ base non-negative QuickCheck random transformers utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://code.haskell.org/~thielema/event-list/"; description = "Event lists with relative or absolute time stamps"; license = "GPL"; @@ -40988,7 +41220,6 @@ self: { version = "0.2.0.7"; sha256 = "05q31mh5x6i90n3ddxyqnhhjga7vbsbi947iywyqi53h2z2iw8f7"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "Efficient exact computation of combinatoric functions"; license = stdenv.lib.licenses.bsd3; @@ -41017,6 +41248,7 @@ self: { buildDepends = [ base exception-transformers monads-fd transformers ]; + jailbreak = true; homepage = "http://www.eecs.harvard.edu/~mainland/"; description = "Exception monad transformer instances for monads-fd classes"; license = stdenv.lib.licenses.bsd3; @@ -41033,6 +41265,7 @@ self: { buildDepends = [ base exception-transformers monads-tf transformers ]; + jailbreak = true; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Exception monad transformer instances for monads-tf classes"; license = stdenv.lib.licenses.bsd3; @@ -41130,6 +41363,7 @@ self: { version = "0.2"; sha256 = "1f7v2f7jmqx0nkl2wla88mnb21nava74b73rvsmfbj4kxmwchsgy"; buildDepends = [ base contravariant ]; + jailbreak = true; homepage = "http://github.com/glehel/exists"; description = "Existential datatypes holding evidence of constraints"; license = stdenv.lib.licenses.bsd3; @@ -41155,6 +41389,7 @@ self: { version = "0.0.1"; sha256 = "0i8agr9np8pg40z58z8jz1fvq3vqjk2sx247dn33mvqyd03hnbss"; buildDepends = [ AspectAG base HList murder uu-parsinglib ]; + jailbreak = true; description = "Extensible Pandoc"; license = "LGPL"; }) {}; @@ -41170,6 +41405,7 @@ self: { buildDepends = [ base bytestring enumerator hexpat text transformers xml-types ]; + jailbreak = true; homepage = "http://john-millikin.com/software/expat-enumerator/"; description = "Enumerator-based API for Expat"; license = stdenv.lib.licenses.mit; @@ -41213,6 +41449,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ ansi-wl-pprint base haskell-src-exts ]; + jailbreak = true; homepage = "https://github.com/joelteon/explain"; description = "Show how expressions are parsed"; license = stdenv.lib.licenses.mit; @@ -41239,7 +41476,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base transformers ]; - configureFlags = [ "-fsplitbase" "-f-buildtests" ]; homepage = "http://www.haskell.org/haskellwiki/Exception"; description = "Exceptions which are explicit in the type signature"; license = stdenv.lib.licenses.bsd3; @@ -41252,6 +41488,7 @@ self: { version = "0.6.0.5"; sha256 = "0irz1zy6iaipym73x343zvr6cqym6ci2vbjbyr564d29ymd6ldzd"; buildDepends = [ base base-unicode-symbols tagged ]; + jailbreak = true; homepage = "https://github.com/basvandijk/explicit-iomodes/"; description = "File handles with explicit IOModes"; license = stdenv.lib.licenses.bsd3; @@ -41264,6 +41501,7 @@ self: { version = "0.2.0.2"; sha256 = "0h3dlgkd2gx8zr3sh949nhqgrdg943dgpp4v1n599jjjpqpw16hj"; buildDepends = [ base bytestring explicit-iomodes ]; + jailbreak = true; homepage = "https://github.com/basvandijk/explicit-iomodes-bytestring/"; description = "Extends explicit-iomodes with ByteString operations"; license = stdenv.lib.licenses.bsd3; @@ -41276,6 +41514,7 @@ self: { version = "0.1.0.8"; sha256 = "12ny5wa1j1wp8fbg5k8zkv4a3axmssxcvfvhg3frsm4dych6hmyg"; buildDepends = [ base explicit-iomodes text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/explicit-iomodes-text/"; description = "Extends explicit-iomodes with Text operations"; license = stdenv.lib.licenses.bsd3; @@ -41288,6 +41527,7 @@ self: { version = "0.9"; sha256 = "0jshv56i60mzlfddvfkcx0j7rzqdlhy6h09bmqci15wzisvpvjpq"; buildDepends = [ base containers derive mtl template-haskell ]; + jailbreak = true; homepage = "http://sebfisch.github.com/explicit-sharing"; description = "Explicit Sharing of Monadic Effects"; license = stdenv.lib.licenses.publicDomain; @@ -41430,6 +41670,7 @@ self: { buildDepends = [ base data-lens hashable template-haskell unordered-containers ]; + jailbreak = true; description = "Sums/products/lists/trees which can be extended in other modules"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -41506,6 +41747,7 @@ self: { base bytestring bytestring-mmap directory elf filepath optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/Peaker/extractelf"; description = "Extract an ELF's metadata and sections into files"; license = stdenv.lib.licenses.bsd3; @@ -41530,6 +41772,7 @@ self: { random resourcet string-conversions text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/ez-couch"; description = "A high level static library for working with CouchDB"; license = stdenv.lib.licenses.mit; @@ -41542,6 +41785,7 @@ self: { version = "0.0.2.0"; sha256 = "0apgad2rqpgxypm10n98agmfrlxydcawvsvyafdwj8jhynfycx03"; buildDepends = [ base free ]; + jailbreak = true; homepage = "http://github.com/haskell-faceted/haskell-faceted"; description = "Faceted computation for dynamic information flow security"; license = stdenv.lib.licenses.asl20; @@ -41561,7 +41805,6 @@ self: { array base Cabal containers deepseq parallel primes QuickCheck random toolshed ]; - configureFlags = [ "-fthreaded" "-f-llvm" ]; homepage = "http://functionalley.eu"; description = "Rational arithmetic in an irrational world"; license = "GPL"; @@ -41674,6 +41917,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers haskell98 SDL SDL-mixer SDL-ttf ]; + jailbreak = true; homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html"; description = "A fun falling blocks game"; license = "GPL"; @@ -41691,6 +41935,7 @@ self: { base binary containers hashable intervals lens tables text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/Taneb/family-tree"; description = "A family tree library for the Haskell programming language"; license = stdenv.lib.licenses.bsd3; @@ -41796,7 +42041,6 @@ self: { editedCabalFile = "74cd87692a90492171802f25c034ef047f0b68aaa1b53303d4e50ce3ec30e98a"; buildDepends = [ base bytestring cgi ]; extraLibraries = [ fcgi ]; - configureFlags = [ "-fsmall_base" ]; description = "A Haskell library for writing FastCGI programs"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) fcgi;}; @@ -41849,7 +42093,7 @@ self: { split spoon syb text time transformers uniplate unordered-containers utf8-string vector ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; @@ -41901,6 +42145,7 @@ self: { version = "0.2.0"; sha256 = "1mzjna8yc7jczgggpcgh9i6akiy72d60jczvmzxngh778z3g5zmi"; buildDepends = [ fay-base fay-jquery ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Clientside HTML generation for fay"; license = stdenv.lib.licenses.bsd3; @@ -41978,7 +42223,7 @@ self: { http-conduit HUnit lifted-base monad-control QuickCheck resourcet text time transformers ]; - configureFlags = [ "-fconduit11" "-f-debug" ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/fb"; description = "Bindings to Facebook's API"; license = stdenv.lib.licenses.bsd3; @@ -42008,6 +42253,7 @@ self: { base bytestring containers cryptohash hashable text unordered-containers ]; + jailbreak = true; description = "Algo for Formal Concept Analysis"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -42038,6 +42284,7 @@ self: { version = "0.1"; sha256 = "1yvsnk9awik143jh2268w1l5x70kmky60gac10fy2y1450dcn65x"; buildDepends = [ base cgi HaXml xhtml ]; + jailbreak = true; homepage = "http://peteg.org/"; description = "Server-Side Integration for FCKeditor"; license = stdenv.lib.licenses.bsd3; @@ -42064,6 +42311,7 @@ self: { version = "0.2.1"; sha256 = "1j15fxrpwnjnbjkswsy6jxn8f0bj2nhcdsf5976i7rka7gsjzr3d"; buildDepends = [ base fclabels monadLib ]; + jailbreak = true; description = "MonadLib monadic interface for the \"fclabels\" package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -42105,6 +42353,7 @@ self: { version = "0.1.0.0"; sha256 = "1xkmzpdc7920vjkz3v77ds1wf2c896rkxykdd36my6aw85qg9pa6"; buildDepends = [ base text ]; + jailbreak = true; homepage = "https://github.com/iand675/feature-flags"; description = "A simple library for dynamically enabling and disabling functionality"; license = stdenv.lib.licenses.mit; @@ -42139,6 +42388,7 @@ self: { aeson base bytestring containers hlint HsOpenSSL hspec http-streams io-streams lens text ]; + jailbreak = true; homepage = "https://github.com/relrod/fedora-packages-hs"; description = "Haskell interface to the Fedora Packages webapp API"; license = stdenv.lib.licenses.bsd3; @@ -42170,6 +42420,7 @@ self: { buildDepends = [ base directory feed old-locale old-time time xml ]; + jailbreak = true; homepage = "http://www.syntaxpolice.org/darcs_repos/feed-cli"; description = "A simple command line interface for creating and updating feeds like RSS"; license = stdenv.lib.licenses.bsd3; @@ -42189,7 +42440,6 @@ self: { base curl directory feed haskell98 HTTP old-locale pureMD5 regex-posix tagsoup time utf8-string ]; - configureFlags = [ "-f-nano-md5" ]; description = "(unsupported)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -42254,6 +42504,7 @@ self: { base bytestring QuickCheck random tasty tasty-golden tasty-quickcheck tasty-th utf8-string ]; + jailbreak = true; homepage = "http://feldspar.github.com"; description = "A functional embedded language for DSP and parallelism"; license = stdenv.lib.licenses.bsd3; @@ -42310,7 +42561,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base HTTP json network pretty utf8-string ]; - configureFlags = [ "-f-old-base" ]; description = "Haskell binding to the FriendFeed API"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -42357,7 +42607,7 @@ self: { isExecutable = true; buildDepends = [ base JuicyPixels mtl transformers vector ]; pkgconfigDepends = [ libavcodec libavformat libavutil libswscale ]; - configureFlags = [ "-f-buildrasterdemo" "-f-builddemo" ]; + jailbreak = true; description = "Minimal bindings to the FFmpeg library"; license = stdenv.lib.licenses.bsd3; }) { libavcodec = null; libavformat = null; libavutil = null; @@ -42373,6 +42623,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring haskell98 hs-ffmpeg SDL stm ]; + jailbreak = true; homepage = "http://patch-tag.com/r/VasylPasternak/ffmpeg-tutorials"; description = "Tutorials on ffmpeg usage to play video/audio"; license = stdenv.lib.licenses.bsd3; @@ -42391,7 +42642,7 @@ self: { ]; testDepends = [ base carray QuickCheck storable-complex ]; pkgconfigDepends = [ fftw3 fftw3f ]; - configureFlags = [ "-fbase4" "-fsplitbase" ]; + jailbreak = true; description = "Bindings to the FFTW library"; license = stdenv.lib.licenses.bsd3; }) { fftw3 = null; fftw3f = null;}; @@ -42449,7 +42700,7 @@ self: { containers directory filepath hslogger mtl old-locale old-time process regex-compat statistics syb tabular time vector ]; - configureFlags = [ "-fanalyse" ]; + jailbreak = true; homepage = "http://github.com/dmpots/fibon/wiki"; description = "Tools for running and analyzing Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; @@ -42506,6 +42757,7 @@ self: { sha256 = "1mmlw5nk09w829gjp8lc0p280vdkh68rv05b1j55x99l7xywgvj7"; buildDepends = [ base template-haskell ]; testDepends = [ base template-haskell ]; + jailbreak = true; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = stdenv.lib.licenses.bsd2; }) {}; @@ -42533,6 +42785,7 @@ self: { buildDepends = [ base parsec process system-filepath template-haskell text ]; + jailbreak = true; homepage = "https://github.com/jfischoff/file-command-qq"; description = "Quasiquoter for system commands involving filepaths"; license = stdenv.lib.licenses.mit; @@ -42629,6 +42882,7 @@ self: { editedCabalFile = "42c2b0c550f4c73d044f186a58e34285632705b6936dc24fb6012eb10bf70cc7"; buildDepends = [ base ]; testDepends = [ base QuickCheck random ]; + jailbreak = true; homepage = "http://www-users.cs.york.ac.uk/~ndm/filepath/"; description = "Library for manipulating FilePaths in a cross platform way"; license = stdenv.lib.licenses.bsd3; @@ -42641,6 +42895,7 @@ self: { version = "0.1.0.0"; sha256 = "08rb2nafnh5vx7i6i3ddhq4h1s2ffgz8ailap5knr1xl7izgyywp"; buildDepends = [ base base-io-access filepath ]; + jailbreak = true; description = "IO Access for filepath"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -42657,7 +42912,6 @@ self: { base comonad comonad-transformers data-lens directory filepath mtl transformers ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/filepather"; description = "Functions on System.FilePath"; license = stdenv.lib.licenses.bsd3; @@ -42677,7 +42931,6 @@ self: { parsec process split time utf8-string xml ]; testDepends = [ base Diff directory filepath HUnit mtl time ]; - configureFlags = [ "-fmaxcount" ]; description = "Interface for versioning file stores"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -42699,6 +42952,7 @@ self: { base blaze-builder bytestring conduit hspec QuickCheck text transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Use system-filepath data types with conduits. (deprecated)"; license = stdenv.lib.licenses.mit; @@ -42878,7 +43132,6 @@ self: { buildDepends = [ base Cabal containers factory mtl QuickCheck toolshed unix ]; - configureFlags = [ "-f-llvm" ]; homepage = "http://functionalley.eu"; description = "Calculates file-size frequency-distribution"; license = "GPL"; @@ -42942,7 +43195,6 @@ self: { version = "15320.3"; sha256 = "0ls5fxwq2lnb0rjqih4isfwiv0603ga12gxnf7w3rpqp5qhrhas8"; buildDepends = [ base mmtl ]; - configureFlags = [ "-f-use_mtl" ]; description = "Simple fix-expression parser"; license = "LGPL"; }) {}; @@ -42989,6 +43241,7 @@ self: { version = "0.5.0.1"; sha256 = "010gx32av4cn5bqq1zrrcah50ay528vw01fvv1xhfpkrx1ll9wka"; buildDepends = [ base ]; + jailbreak = true; description = "Binary fixed-point arithmetic"; license = stdenv.lib.licenses.mit; }) {}; @@ -43000,6 +43253,7 @@ self: { version = "0.5.0.1"; sha256 = "029mn44d1i794b1pbpa0zmf6b20zl0cvsf77mbfdkqnyx8986883"; buildDepends = [ base fixed-point vector ]; + jailbreak = true; description = "Unbox instances for the fixed-point package"; license = stdenv.lib.licenses.mit; }) {}; @@ -43011,6 +43265,7 @@ self: { version = "0.5.0.1"; sha256 = "10b29gqy3rpwd5wf2b65p0llm8ksyp1p7k43rm1n5g5z67wkd7dx"; buildDepends = [ base fixed-point vector-space ]; + jailbreak = true; description = "vector-space instances for the fixed-point package"; license = stdenv.lib.licenses.mit; }) {}; @@ -43026,6 +43281,7 @@ self: { buildDepends = [ base hmpfr integer-gmp reflection tagged template-haskell ]; + jailbreak = true; homepage = "http://github.com/ekmett/fixed-precision"; description = "Fixed Precision Arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -43038,6 +43294,7 @@ self: { version = "0.3.1.1"; sha256 = "0vb5h2v2qx19d7xibf7ksv2cha2pngh49mfpkh43f9vrwc6042ph"; buildDepends = [ array base tagged ]; + jailbreak = true; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -43125,10 +43382,6 @@ self: { dlist enumerator HaXml MissingH network old-time parallel QuickCheck text ]; - configureFlags = [ - "-f-with-fix44" "-f-with-fix43" "-fwith-fix42" "-fwith-fix41" - "-fwith-fix40" "-f-developer" - ]; homepage = "http://github.com/urv/fixhs"; description = "FIX (co)parser"; license = stdenv.lib.licenses.lgpl21; @@ -43141,7 +43394,6 @@ self: { version = "0.1.5"; sha256 = "0mmkkydvdiw4nawgw3w7a9gpcxc3wzzlhz2083hqa6sxhx8x3b29"; buildDepends = [ base containers ]; - configureFlags = [ "-fbase4" "-fwithutils" "-f-withquickcheck" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Uniplate-style generic traversals for optionally annotated fixed-point types"; license = stdenv.lib.licenses.bsd3; @@ -43166,6 +43418,7 @@ self: { version = "1.5.0.2"; sha256 = "1walxcyi1wrv28vgy318c88z3mprz6mc8qfhbjgxb156iwfv80w5"; buildDepends = [ base time ]; + jailbreak = true; homepage = "https://github.com/pharpend/fixtime"; description = "Some fixes to the time package"; license = stdenv.lib.licenses.bsd2; @@ -43178,6 +43431,7 @@ self: { version = "0.1.0.1"; sha256 = "169xaj7iczz0mnvd03pf95dcvy918jscpzap6z9y62kb0daskg4p"; buildDepends = [ base ]; + jailbreak = true; description = "Functional Fizz/Buzz"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -43223,6 +43477,7 @@ self: { buildDepends = [ base monad-par monad-par-extras mtl mwc-random primitive vector ]; + jailbreak = true; homepage = "http://jtobin.github.com/flat-mcmc"; description = "Painless general-purpose sampling"; license = stdenv.lib.licenses.bsd3; @@ -43264,6 +43519,7 @@ self: { version = "0.1.0"; sha256 = "0vvl9w3i374k720sscbcsbha89fcfk1hcvdr0nk4y7gkp13xwdba"; buildDepends = [ base data-type mtl QuickCheck ]; + jailbreak = true; description = "Flexible wrappers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -43275,6 +43531,7 @@ self: { version = "0.0.1"; sha256 = "1dara0az10fxx46jmplf2l6a6x8qqjk00fxjzb9n10ndd4lxcsm3"; buildDepends = [ base data-type flexiwrap mtl smallcheck ]; + jailbreak = true; description = "SmallCheck (Serial) instances for flexiwrap"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -43292,7 +43549,6 @@ self: { buildDepends = [ base filepath HTTP mime network random utf8-string xhtml xml ]; - configureFlags = [ "-f-old-base" ]; description = "Haskell binding to the Flickr API"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -43318,7 +43574,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base containers haskell98 parsec ]; - configureFlags = [ "-f-pure" ]; + jailbreak = true; homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "f-lite compiler, interpreter and libraries"; license = stdenv.lib.licenses.bsd3; @@ -43362,7 +43618,6 @@ self: { version = "0.2.4"; sha256 = "1zsxjwgm8nkphnmsbz03yvplc2r02qybb387n910j4j6vya98khc"; buildDepends = [ array base integer-gmp ]; - configureFlags = [ "-fgmp" ]; homepage = "https://bitbucket.org/dafis/floatshow"; description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; license = stdenv.lib.licenses.bsd3; @@ -43417,6 +43672,7 @@ self: { lens mtl pipes pipes-aeson pipes-http pipes-parse template-haskell text unordered-containers uuid ]; + jailbreak = true; homepage = "https://github.com/brewtown/hs-flowdock"; description = "Flowdock client library for Haskell"; license = stdenv.lib.licenses.mit; @@ -43466,6 +43722,7 @@ self: { buildDepends = [ array base binary bio bytestring cmdargs containers mtl random ]; + jailbreak = true; homepage = "http://biohaskell.org/Applications/Flower"; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; @@ -43538,6 +43795,7 @@ self: { sha256 = "18r7q7sh35sr71ays0c9ic6f7vmrblpw25mz1y5v9sbk5x2lh64s"; buildDepends = [ base bindings-DSL containers directory ]; extraLibraries = [ fluidsynth ]; + jailbreak = true; homepage = "https://github.com/MostAwesomeDude/hsfluidsynth"; description = "Haskell bindings to FluidSynth"; license = stdenv.lib.licenses.mit; @@ -43553,6 +43811,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory filepath mtl process Unixutils ]; + jailbreak = true; homepage = "http://github.com/jabolopes/fmark"; description = "A Friendly Markup language without syntax"; license = stdenv.lib.licenses.bsd3; @@ -43632,9 +43891,7 @@ self: { testDepends = [ base bytestring deepseq directory doctest filepath mtl semigroups ]; - configureFlags = [ - "-f-test-hlint" "-foptimize" "-f-test-hlint" "-ftest-doctests" - ]; + configureFlags = [ "-f-test-hlint" ]; homepage = "http://github.com/ekmett/folds"; description = "Beautiful Folding"; license = stdenv.lib.licenses.bsd3; @@ -43681,6 +43938,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base GLFW-b OpenGL ]; + jailbreak = true; description = "Basic4x6 font for OpenGL"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -43694,7 +43952,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers GLUT haskell98 OpenGL ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://sourceforge.net/projects/fooengine/?abmode=1"; description = "Paper soccer, an OpenGL game"; license = "GPL"; @@ -43712,6 +43969,7 @@ self: { base comonad comonad-transformers containers contravariant transformers ]; + jailbreak = true; description = "Functor, Monad, MonadPlus, etc for free"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -43775,6 +44033,7 @@ self: { version = "0.1.1"; sha256 = "0nxcjx3cf8bkl0cwkpgz5c6byld13kw2601q4157fmfa370bi11h"; buildDepends = [ base transformers ]; + jailbreak = true; homepage = "http://code.google.com/p/forkable-monad/"; description = "An implementation of forkIO for monad stacks"; license = stdenv.lib.licenses.bsd3; @@ -43797,6 +44056,7 @@ self: { indents interpolatedstring-perl6 jmacro MissingH mtl network pandoc parsec process text transformers urlencoded wl-pprint-text ]; + jailbreak = true; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; }) {}; @@ -43809,6 +44069,7 @@ self: { sha256 = "1vv9b0hif5hi3jkd1n6j85b5mkfkjyixldblm2l4qfgrj95igmph"; buildDepends = [ haskell2010 parsec ]; testDepends = [ haskell2010 parsec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/bytbox/hs-format"; description = "Rendering from and scanning to format strings"; license = stdenv.lib.licenses.mit; @@ -43827,6 +44088,7 @@ self: { buildDepends = [ base data-concurrent-queue old-locale stm text time ]; + jailbreak = true; description = "A utility for writing the date to dzen2"; license = stdenv.lib.licenses.mit; }) {}; @@ -43865,6 +44127,7 @@ self: { interpolatedstring-perl6 jmacro MissingH mtl network pandoc parsec process text urlencoded utf8-string zlib ]; + jailbreak = true; homepage = "http://texodus.github.com/forml"; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; @@ -43882,7 +44145,7 @@ self: { applicative-extras base blaze-html bytestring haskell98 syb transformers xhtml ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; homepage = "http://github.com/chriseidhof/formlets/tree/master"; description = "Formlets implemented in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -43911,6 +44174,7 @@ self: { version = "0.1.0.0"; sha256 = "1hmcicxnxcl99chidkbg1kspjzpxxcw8qh4lrwvmlpz2knzf11g3"; buildDepends = [ array-forth base free mtl ]; + jailbreak = true; description = "A simple eDSL for generating arrayForth code"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -43955,7 +44219,6 @@ self: { shakespeare-i18n stm syb template-haskell text time transformers transformers-base unordered-containers vector yesod-core ]; - configureFlags = [ "-f-dev" "-f-jenkins-build" ]; homepage = "https://www.fpcomplete.com/page/api"; description = "Simple interface to the FP Complete IDE API"; license = stdenv.lib.licenses.bsd3; @@ -44027,6 +44290,7 @@ self: { QuickCheck regex-compat test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/jrp2014/fptest"; description = "IEEE754r floating point conformance tests"; license = stdenv.lib.licenses.bsd3; @@ -44070,6 +44334,7 @@ self: { version = "0.1.0.3"; sha256 = "0kjpfqy528s11kfigp27kr5a4xw8kn11mpgjzb6fapdbip6y9579"; buildDepends = [ base semigroups ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/fraction"; description = "Fractions"; license = stdenv.lib.licenses.bsd3; @@ -44107,6 +44372,7 @@ self: { haskelldb-hdbc-odbc HDBC HDBC-odbc HTTP MissingH mtl old-time pretty utf8-string ]; + jailbreak = true; description = "A simple web framework"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -44119,6 +44385,7 @@ self: { version = "0.1"; sha256 = "0wy1c9xgd6ykymqciga1sla83wfdwy17p88bygfp6pflbc0rw57g"; buildDepends = [ base frame pandoc ]; + jailbreak = true; description = "A markdown to Frame GUI writer for Pandoc"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -44186,6 +44453,7 @@ self: { JuicyPixels-util lens linear mtl OpenGL OpenGLRaw random reflection template-haskell transformers vector void ]; + jailbreak = true; homepage = "https://github.com/fumieval/free-game"; description = "Create games for free"; license = stdenv.lib.licenses.bsd3; @@ -44202,7 +44470,7 @@ self: { buildDepends = [ base comonad-transformers free kan-extensions mtl transformers ]; - configureFlags = [ "-f-test-properties" ]; + jailbreak = true; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -44289,7 +44557,6 @@ self: { base bytestring cgi csv dataenc directory filepath free-theorems process time xhtml ]; - configureFlags = [ "-f-our_server" ]; description = "CGI-based web interface for the free-theorems package"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -44341,6 +44608,7 @@ self: { buildDepends = [ array base cpphs directory mtl parallel pretty random syb ]; + jailbreak = true; homepage = "http://fremissant.net/freesect"; description = "A Haskell syntax extension for generalised sections"; license = stdenv.lib.licenses.bsd3; @@ -44387,7 +44655,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-examples" ]; description = "Haskell binding for FreeType 2 library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -44568,6 +44835,7 @@ self: { version = "0.1.2"; sha256 = "07lx4928d1fnjbpfmky4jhhk7sqj98b11vdbv4f67p3bwfn5lrp8"; buildDepends = [ base directory filepath ]; + jailbreak = true; homepage = "https://github.com/Raynes/fsutils"; description = "File system utilities for Haskell that are missing from built in libraries"; license = stdenv.lib.licenses.mit; @@ -44604,7 +44872,7 @@ self: { buildDepends = [ base base-unicode-symbols bytestring safe transformers usb ]; - configureFlags = [ "-f-nolib" "-f-hpc" "-f-test" ]; + jailbreak = true; description = "A thin layer over USB to communicate with FTDI chips"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -44621,6 +44889,7 @@ self: { base byteorder bytestring conduit MissingH network transformers utf8-string ]; + jailbreak = true; homepage = "https://github.com/litherum/ftp-conduit"; description = "FTP client package with conduit interface based off http-conduit"; license = stdenv.lib.licenses.bsd3; @@ -44639,7 +44908,6 @@ self: { buildDepends = [ base hslogger MissingH mtl network parsec regex-compat ]; - configureFlags = [ "-f-buildtests" ]; homepage = "http://software.complete.org/ftphs"; description = "FTP Client and Server Library"; license = "LGPL"; @@ -44670,6 +44938,7 @@ self: { buildDepends = [ base containers free-theorems mtl pretty Shellac Shellac-readline ]; + jailbreak = true; description = "Shell interface to the FreeTheorems library"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -44712,7 +44981,7 @@ self: { array base containers QuickCheck tasty tasty-quickcheck text vector ]; buildTools = [ alex happy ]; - configureFlags = [ "-f-build-search-demo" ]; + jailbreak = true; description = "In-memory full text search engine"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -44766,6 +45035,7 @@ self: { version = "0.1"; sha256 = "0dxym6xrylngw8r5spi246nmi8fvvxxx776qismcr04zqshv7ygw"; buildDepends = [ base numeric-prelude ]; + jailbreak = true; homepage = "github.com/kreuzschlitzschraubenzieher/function-instances-algebra"; description = "Instances of the Algebra.* classes for functions"; license = stdenv.lib.licenses.bsd3; @@ -44778,6 +45048,7 @@ self: { version = "0.0"; sha256 = "1la9xqm5gs6a6cb18wyx9wr0nx6p5ryhczvb72d0zm6xrjrf0r5s"; buildDepends = [ base HList ]; + jailbreak = true; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -44868,6 +45139,7 @@ self: { buildDepends = [ base bytestring directory filepath haskell98 HFuse unix ]; + jailbreak = true; homepage = "http://github.com/nathanwiegand/funion"; description = "A unioning file-system using HFuse"; license = stdenv.lib.licenses.bsd3; @@ -44880,6 +45152,7 @@ self: { version = "0.1"; sha256 = "0zblrfg8mfbc1hzxb36hk2lb3c167xmpcvg8h595m9kjpdmj4ayw"; buildDepends = [ base mtl ]; + jailbreak = true; description = "A generalization of pattern matching"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -44898,6 +45171,7 @@ self: { array base bimap bitset containers fgl mtl parse-dimacs pretty QuickCheck random time ]; + jailbreak = true; homepage = "http://github.com/dbueno/funsat"; description = "A modern DPLL-style SAT solver"; license = stdenv.lib.licenses.bsd3; @@ -44912,7 +45186,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring network unix ]; - configureFlags = [ "-f-static" ]; + jailbreak = true; description = "Simple IP-over-UDP tunnel using TUNTAP"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -44972,6 +45246,7 @@ self: { base containers HUnit mtl QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 time ]; + jailbreak = true; homepage = "https://github.com/tlaitinen/fuzzy-timings"; description = "Translates high-level definitions of \"fuzzily\" scheduled objects (e.g. play this commercial 10 times per hour between 9:00-13:00) to a list of accurately scheduled objects using glpk-hs."; license = stdenv.lib.licenses.mit; @@ -45002,6 +45277,7 @@ self: { base ghcjs-base hashable transformers unordered-containers vector Yampa ]; + jailbreak = true; homepage = "https://github.com/ZioCrocifisso/FWGL"; description = "FRP 2D/3D game engine"; license = stdenv.lib.licenses.bsd3; @@ -45045,6 +45321,7 @@ self: { version = "1.1"; sha256 = "1wl29h702g79kwy4ca35x1q37aaj3rphf1i9vdm2hmd44bzrwvkk"; buildDepends = [ base containers probability random ]; + jailbreak = true; description = "Simple probability library for dice rolls, card games and similar"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45069,7 +45346,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cairo containers glib gtk time ]; - configureFlags = [ "-fsmall_base" ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; }) {}; @@ -45122,7 +45398,6 @@ self: { version = "1.2"; sha256 = "0mks5nwc19i0wsc5hhxh0ji2bh0224y3r89b3p9dfzzn64n3za6v"; buildDepends = [ base ]; - configureFlags = [ "-f-old-base" ]; description = "A Functional Implementation of the Garsia-Wachs Algorithm"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45186,7 +45461,6 @@ self: { extraLibraries = [ expat fontconfig freetype gd libjpeg libpng zlib ]; - configureFlags = [ "-fbytestring-in-base" ]; description = "A Haskell binding to a subset of the GD graphics library"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) expat; inherit (pkgs) fontconfig; @@ -45236,6 +45510,7 @@ self: { testDepends = [ base containers gdiff mtl template-haskell th-expand-syns uniplate ]; + jailbreak = true; homepage = "https://github.com/jfischoff/gdiff-th"; description = "Generate gdiff GADTs and Instances"; license = stdenv.lib.licenses.bsd3; @@ -45250,6 +45525,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base GLUT OpenGLRaw Vec ]; + jailbreak = true; description = "zooming rotating fractal gears graphics demo"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -45307,6 +45583,7 @@ self: { array base bitmap bitmap-opengl containers FTGL lens linear OpenGL random SDL SDL-image stb-image transformers ]; + jailbreak = true; homepage = "http://corbinsimpson.com/"; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; @@ -45338,6 +45615,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ attoparsec base text ]; + jailbreak = true; homepage = "https://github.com/womfoo/gender"; description = "Identify a persons gender by their first name"; license = stdenv.lib.licenses.lgpl21; @@ -45374,6 +45652,7 @@ self: { version = "1.0.3"; sha256 = "0i51xx2hhjqjdvyzy2jza921jcfhy37azyp1cfaakvrj9kxl2w2q"; buildDepends = [ base mtl random ]; + jailbreak = true; homepage = "http://liamoc.net/pdf/Generator.pdf"; description = "Actually useful monadic random value generators"; license = stdenv.lib.licenses.bsd3; @@ -45403,6 +45682,7 @@ self: { version = "1.0.1"; sha256 = "1h6xs56c351137mjc3hdba7yfcw8jy9dvzj0vdrgwm0dprn0xh29"; buildDepends = [ base binary bytestring ghc-prim ]; + jailbreak = true; description = "Generic Data.Binary derivation using GHC generics."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45469,7 +45749,6 @@ self: { generic-deriving hlint mtl nats parallel semigroups simple-reflect split text unordered-containers vector ]; - configureFlags = [ "-ftest-hlint" "-ftest-doctests" ]; homepage = "https://github.com/jfischoff/generic-maybe"; description = "A generic version of Data.Maybe"; license = stdenv.lib.licenses.bsd3; @@ -45494,6 +45773,7 @@ self: { sha256 = "016gg232r453i7grbjg2hb69ww8jqgafnq32f38lv7l81dgzwfxj"; buildDepends = [ base ghc-prim ]; testDepends = [ base ghc-prim hspec QuickCheck ]; + jailbreak = true; description = "Generic implementation of Storable"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45571,6 +45851,7 @@ self: { array base cabal-macosx containers directory filepath GenI graphviz hslogger json mtl process text transformers wx wxcore yaml-light ]; + jailbreak = true; homepage = "http://projects.haskell.org/GenI"; description = "GenI graphical user interface"; license = "GPL"; @@ -45591,6 +45872,7 @@ self: { base blaze-html blaze-markup bytestring cmdargs directory filepath GenI geniserver HTTP http-streams io-streams json text ]; + jailbreak = true; homepage = "http://kowey.github.io/GenI"; description = "Companion tools for use with the GenI surface realiser"; license = stdenv.lib.licenses.gpl2; @@ -45610,6 +45892,7 @@ self: { base binary containers GenI haskell98 HaXml HUnit mtl parsec QuickCheck utf8-string ]; + jailbreak = true; homepage = "http://wiki.loria.fr/wiki/GenI"; description = "Conversion utility for the GenI generator"; license = "GPL"; @@ -45653,6 +45936,7 @@ self: { base bytestring cmdargs GenI http-types json snap-core snap-server text transformers utf8-string ]; + jailbreak = true; description = "Simple HTTP server for GenI results"; license = "GPL"; }) {}; @@ -45664,6 +45948,7 @@ self: { version = "0.1.0.2"; sha256 = "1a9b2h4swfwx5zwcyr2zdhxdxi9f68pwpglijxhxb5javjc4dppr"; buildDepends = [ base MonadRandom syb syz ]; + jailbreak = true; homepage = "http://github.com/jsnajder/genprog"; description = "Genetic programming library"; license = stdenv.lib.licenses.bsd3; @@ -45705,7 +45990,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/NICTA/geodetic"; description = "Geodetic calculations"; license = stdenv.lib.licenses.bsd3; @@ -45724,6 +46008,7 @@ self: { array base dimensional HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/PaulJohnson/geodetics"; description = "Terrestrial coordinate systems and associated calculations"; license = stdenv.lib.licenses.bsd3; @@ -45755,7 +46040,7 @@ self: { testDepends = [ base bytestring directory doctest filepath hlint QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "https://github.com/domdere/hs-geojson"; description = "A thin GeoJSON Layer above the aeson library"; license = stdenv.lib.licenses.bsd3; @@ -45823,9 +46108,6 @@ self: { ]; testDepends = [ base Cabal directory filepath HTF HUnit process ]; buildTools = [ alex happy ]; - configureFlags = [ - "-f-c-runtime" "-fcustom-binary" "-fserver" "-finterrupt" - ]; homepage = "http://www.grammaticalframework.org/"; description = "Grammatical Framework"; license = "unknown"; @@ -45900,6 +46182,7 @@ self: { version = "0.1"; sha256 = "0aw4wnbzfw031xqmq0lpi4zz2md1f43nj921ni91mhdl5xgqcajm"; buildDepends = [ base ghc ]; + jailbreak = true; description = "Explicitly prevent sharing"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45935,6 +46218,7 @@ self: { mtl optparse-applicative parsec SVGFonts template-haskell th-lift transformers ]; + jailbreak = true; description = "Analyze and visualize event logs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45985,7 +46269,6 @@ self: { base binary bytestring containers ghc template-haskell transformers ]; testDepends = [ base deepseq ]; - configureFlags = [ "-fghc_7_7" "-f-prim-supports-any" ]; postInstall = '' ensureDir "$out/share/ghci" ln -s "$out/share/$pname-$version/ghci" "$out/share/ghci/$pname" @@ -46043,6 +46326,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base parsec process ]; + jailbreak = true; description = "Generate a bash completion from the GHC manpage"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46120,6 +46404,7 @@ self: { base directory filepath HUnit process QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/23Skidoo/ghc-parmake"; description = "A parallel wrapper for 'ghc --make'"; license = stdenv.lib.licenses.bsd3; @@ -46166,6 +46451,7 @@ self: { buildDepends = [ base Cabal cmdargs filepath parsec process split ]; + jailbreak = true; description = "Simple utility to fix BROKEN package dependencies for cabal-install"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46178,7 +46464,6 @@ self: { version = "0.3"; sha256 = "1m2ny3f5i1ihvpq0vigpzj701gzrbzdz5h7f41qn37ikp9a6kd5a"; buildDepends = [ base Cabal directory filepath ghc ghc-paths ]; - configureFlags = [ "-f-lib-werror" ]; homepage = "https://github.com/JPMoresmau/ghc-pkg-lib"; description = "Provide library support for ghc-pkg information"; license = stdenv.lib.licenses.bsd3; @@ -46191,7 +46476,6 @@ self: { version = "0.3.1.0"; sha256 = "1726hddr7lyklagni1f7m27yak35ailn1zy6401ripppj3m0f03b"; buildDepends = [ rts ]; - configureFlags = [ "-f-include-ghc-prim" ]; description = "GHC primitives"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46225,6 +46509,7 @@ self: { version = "0.2.0.0"; sha256 = "0rwx7l89r5yfi1187c0zgx1ph2rsagyvrizb1c0vnbyrwhpbslh0"; buildDepends = [ base ghc ]; + jailbreak = true; homepage = "http://github.com/nominolo/ghc-syb"; description = "Data and Typeable instances for the GHC API"; license = stdenv.lib.licenses.bsd3; @@ -46251,7 +46536,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ attoparsec base containers text time ]; - configureFlags = [ "-f-dump" ]; homepage = "https://github.com/maoe/ghc-time-alloc-prof"; description = "Library for parsing GHC time and allocation profiling reports"; license = stdenv.lib.licenses.bsd3; @@ -46270,7 +46554,6 @@ self: { base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl svgcairo text transformers xdot ]; - configureFlags = [ "-ffull" "-fgraph" ]; postInstall = '' ensureDir "$out/share/ghci" ln -s "$out/share/$pname-$version/ghci" "$out/share/ghci/$pname" @@ -46287,6 +46570,7 @@ self: { version = "0.1.1"; sha256 = "1jlym5k2d43avkgw7ff3pdaad5j2q5yq803cy74bgy0z69x77v1w"; buildDepends = [ base cairo colour diagrams gtk ]; + jailbreak = true; description = "Display simple diagrams from ghci"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46305,7 +46589,7 @@ self: { array base bytestring directory filepath ghc ghc-paths haskeline mtl process unix ]; - configureFlags = [ "-fghc-612" "-fnewer-ghc" ]; + jailbreak = true; homepage = "http://code.haskell.org/~judah/ghci-haskeline"; description = "An implementation of ghci using the Haskeline line-input library"; license = stdenv.lib.licenses.bsd3; @@ -46318,6 +46602,7 @@ self: { version = "0.1.0.0"; sha256 = "06lg1czsr6k5h18aks33p2kbahiidhv7xsrv7n1fcvqsgglzgk3z"; buildDepends = [ base ghc MissingH ]; + jailbreak = true; homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for interactively evaluating Haskell code"; license = stdenv.lib.licenses.mit; @@ -46337,6 +46622,7 @@ self: { array base bytestring directory filepath ghc ghc-paths haskeline process transformers unix ]; + jailbreak = true; homepage = "https://github.com/hvr/ghci-ng"; description = "Extended GHCi fork"; license = stdenv.lib.licenses.bsd3; @@ -46398,9 +46684,6 @@ self: { version = "0.1.1.3"; sha256 = "0pdxb2s7fflrh8sbqakv0qi13jkn3d0yc32xhg2944yfjg5fvlly"; buildDepends = [ base glib gtk3 mtl text transformers webkitgtk3 ]; - configureFlags = [ - "-fgtk3" "-f-jsc" "-f-webkit" "-fjsffi" "-f-ghcjs" - ]; description = "DOM library that supports both GHCJS and WebKitGTK"; license = stdenv.lib.licenses.mit; }) {}; @@ -46438,6 +46721,7 @@ self: { text time unix unordered-containers vector wai wai-websockets warp websockets yesod yesod-static ]; + jailbreak = true; homepage = "http://github.com/shapr/ghclive/"; description = "Interactive Haskell interpreter in a browser"; license = stdenv.lib.licenses.bsd3; @@ -46473,7 +46757,6 @@ self: { iteratee-compress mmap mtl old-locale SHA storable-endian time ui-command unix zlib ]; - configureFlags = [ "-fsplitbase" ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; }) {}; @@ -46539,6 +46822,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ aeson base bytestring conduit http-conduit text ]; + jailbreak = true; homepage = "http://github.com/simonmichael/gist"; description = "A reliable command-line client for gist.github.com"; license = stdenv.lib.licenses.gpl3; @@ -46605,14 +46889,7 @@ self: { buildTools = [ bup curl git gnupg1 lsof openssh perl rsync wget which ]; - configureFlags = [ - "-fAssistant" "-fProduction" "-fnetwork-uri" "-f-ekg" - "-ftorrentparser" "-fdesktopnotify" "-fcryptohash" "-ftahoe" - "-fquvi" "-ffeed" "-ftdfa" "-ftestsuite" "-f-androidsplice" - "-f-android" "-fproduction" "-fdns" "-fxmpp" "-fpairing" - "-fwebapp-secure" "-fwebapp" "-fassistant" "-fdbus" "-finotify" - "-fwebdav" "-fs3" - ]; + configureFlags = [ "-fAssistant" "-fProduction" ]; preConfigure = "export HOME=$TEMPDIR"; checkPhase = '' cp dist/build/git-annex/git-annex git-annex @@ -46640,6 +46917,7 @@ self: { buildDepends = [ base directory filepath optparse-applicative parsec pretty process ]; + jailbreak = true; homepage = "https://github.com/dougalstanton/git-checklist"; description = "Maintain per-branch checklists in Git"; license = "GPL"; @@ -46780,7 +47058,6 @@ self: { optparse-applicative process QuickCheck text time transformers unix unix-compat utf8-string ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://git-repair.branchable.com/"; description = "repairs a damanged git repisitory"; license = "GPL"; @@ -46828,7 +47105,6 @@ self: { base directory filepath hspec process transformers transformers-base unix ]; - configureFlags = [ "-fgpl" ]; homepage = "https://github.com/anchor/git-vogue"; description = "A framework for pre-commit checks"; license = stdenv.lib.licenses.bsd3; @@ -46893,7 +47169,6 @@ self: { unix-compat ]; buildTools = [ git ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/joeyh/github-backup"; description = "backs up everything github knows about a repository, to the repository"; license = "GPL"; @@ -46971,7 +47246,7 @@ self: { random recaptcha safe SHA split syb tagsoup text time uri url utf8-string uuid xhtml xml xss-sanitize zlib ]; - configureFlags = [ "-fplugins" "-fnetwork-uri" ]; + jailbreak = true; homepage = "http://gitit.net"; description = "Wiki using happstack, git or darcs, and pandoc"; license = "GPL"; @@ -47162,6 +47437,7 @@ self: { aeson base directory doctest Glob hspec HUnit process QuickCheck transformers ]; + jailbreak = true; homepage = "https://github.com/myfreeweb/gitson"; description = "A document store library for Git + JSON"; license = stdenv.lib.licenses.asl20; @@ -47180,9 +47456,6 @@ self: { transformers ]; extraLibraries = [ mesa ]; - configureFlags = [ - "-fuseglxgetprocaddress" "-fusenativewindowslibraries" - ]; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) mesa;}; @@ -47207,6 +47480,7 @@ self: { buildDepends = [ base glib gtk ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ libglade ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the glade library"; license = stdenv.lib.licenses.lgpl21; @@ -47232,6 +47506,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers GLFW-b lens mtl OpenGL ]; + jailbreak = true; homepage = "zyghost.com"; description = "An OpenGL micro framework"; license = stdenv.lib.licenses.gpl2; @@ -47248,7 +47523,6 @@ self: { buildDepends = [ base bytestring containers text utf8-string ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ glib ]; - configureFlags = [ "-fclosure_signals" ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GLIB library for Gtk2Hs"; license = stdenv.lib.licenses.lgpl21; @@ -47262,6 +47536,7 @@ self: { sha256 = "1i604gj3ssabr3dcas6gfh20d4psqwl1j4d7wk4p3gy0hvjvr8fb"; buildDepends = [ base containers text ]; testDepends = [ base Cabal containers HUnit text ]; + jailbreak = true; homepage = "https://github.com/klangner/glider-nlp"; description = "Natural Language Processing library"; license = stdenv.lib.licenses.bsd3; @@ -47335,6 +47610,7 @@ self: { version = "1.0.1.1"; sha256 = "0fvhh6q6z114qyi5rhwzxhrlqfhx6af97187b49lyvx2k9zkzvzp"; buildDepends = [ base containers stm ]; + jailbreak = true; description = "Namespaced, global, and top-level mutable variables without unsafePerformIO"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -47353,6 +47629,7 @@ self: { array base GlomeTrace GlomeVec GLUT haskell98 OpenGL parallel random time ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Glome"; description = "ray tracer"; license = "GPL"; @@ -47369,7 +47646,7 @@ self: { buildDepends = [ base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL ]; - configureFlags = [ "-f-explicitbackend" "-f-glfw" "-fglut" ]; + jailbreak = true; homepage = "http://gloss.ouroborus.net"; description = "Painless 2D vector graphics, animations and simulations"; license = stdenv.lib.licenses.mit; @@ -47383,7 +47660,7 @@ self: { sha256 = "1nj2rnp2bg3xmi4xbaws9jc7qx3b4qqg9fyvfv13xdav28d7iqb0"; editedCabalFile = "3c0195c2208cb3c6786b8d1f27a17f5249af3797f6a37af410e95f23d03fb8d6"; buildDepends = [ accelerate accelerate-cuda base gloss ]; - configureFlags = [ "-fcuda" ]; + jailbreak = true; description = "Extras to interface Gloss and Accelerate"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -47407,6 +47684,7 @@ self: { version = "0.1.0.4"; sha256 = "0zzpdryfcqvxpzv53ymsvkm2nza9ryvzqgf3n89pnvrni91avgj3"; buildDepends = [ base gloss reactive-banana ]; + jailbreak = true; homepage = "https://github.com/Twey/gloss-banana"; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = stdenv.lib.licenses.gpl3; @@ -47500,7 +47778,7 @@ self: { buildDepends = [ accelerate accelerate-cuda base gloss gloss-accelerate ]; - configureFlags = [ "-fcuda" ]; + jailbreak = true; description = "Parallel rendering of raster images using Accelerate"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -47512,6 +47790,7 @@ self: { version = "1.9.2.1"; sha256 = "05wdiadwjykz8x0fimznp3q1drm4v3vnv6cv6wjkj1xsclmhb99k"; buildDepends = [ base bmp bytestring containers GLUT OpenGL ]; + jailbreak = true; description = "Gloss picture data types and rendering functions"; license = stdenv.lib.licenses.mit; }) {}; @@ -47523,6 +47802,7 @@ self: { version = "0.1.0.0"; sha256 = "0ygjqzb1pn092j0d0gcwhxdv940rdlvpaj1gxa347mdgvp4jb9za"; buildDepends = [ base gloss sodium ]; + jailbreak = true; homepage = "https://github.com/Twey/gloss-sodium"; description = "A Sodium interface to the Gloss drawing package"; license = stdenv.lib.licenses.agpl3; @@ -47578,6 +47858,7 @@ self: { ad array base gtk gtkglext mtl OpenGL OpenGLRaw parsec priority-queue qd reflection Vec ]; + jailbreak = true; description = "Mandelbrot Set explorer using GTK"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -47622,6 +47903,7 @@ self: { buildDepends = [ array base containers glib gtk haskell98 mtl ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ gnome_vfs gnome_vfs_module ]; + jailbreak = true; homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; @@ -47658,10 +47940,6 @@ self: { deepseq filepath old-locale process temporary time transformers utility-ht ]; - configureFlags = [ - "-f-executeshell" "-f-executepipe" "-f-buildexamples" - "-f-buildtests" "-fsplitbase" - ]; homepage = "http://www.haskell.org/haskellwiki/Gnuplot"; description = "2D and 3D plots using gnuplot"; license = stdenv.lib.licenses.bsd3; @@ -47723,6 +48001,7 @@ self: { base cairo containers directory filepath goatee gtk mtl parsec ]; testDepends = [ base HUnit ]; + jailbreak = true; homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = stdenv.lib.licenses.agpl3; @@ -47788,6 +48067,7 @@ self: { base blaze-html cmdargs data-default hamlet pandoc shakespeare-css syb text time ]; + jailbreak = true; description = "Google HTML5 Slide generator"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -47850,6 +48130,7 @@ self: { aeson attoparsec base bytestring containers enumerator haskell98 http-enumerator http-types mtl text time timerep transformers url ]; + jailbreak = true; homepage = "http://github.com/michaelxavier/GooglePlus"; description = "Haskell implementation of the Google+ API v1"; license = stdenv.lib.licenses.bsd3; @@ -47931,6 +48212,7 @@ self: { base GPX hxt QuickCheck statistics test-framework test-framework-quickcheck2 time vector xsd ]; + jailbreak = true; description = "For manipulating GPS coordinates and trails"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -47951,6 +48233,7 @@ self: { filepath gd gps GPX hsmagick html http-enumerator process random tar time xsd ]; + jailbreak = true; homepage = "https://github.com/robstewart57/Gps2HtmlReport"; description = "GPS to HTML Summary Report"; license = stdenv.lib.licenses.bsd3; @@ -47968,6 +48251,7 @@ self: { attoparsec base conduit filepath monad-control old-locale text time void xml-conduit xml-types ]; + jailbreak = true; description = "Read GPX files using conduits"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -47984,6 +48268,7 @@ self: { testDepends = [ base directory filepath hspec network process stm unix ]; + jailbreak = true; description = "Library to write graceful shutdown / upgrade service"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -48034,6 +48319,7 @@ self: { buildDepends = [ arrows base containers fingertree semigroups TypeCompose ]; + jailbreak = true; homepage = "http://grapefruit-project.org/"; description = "Functional Reactive Programming core"; license = stdenv.lib.licenses.bsd3; @@ -48161,6 +48447,7 @@ self: { base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl graph-rewriting-layout OpenGL parsec ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Interactive graph rewriting system implementing various well-known combinators"; license = stdenv.lib.licenses.bsd3; @@ -48178,6 +48465,7 @@ self: { AC-Vector base base-unicode-symbols containers GLUT graph-rewriting graph-rewriting-layout OpenGL ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "OpenGL interface for interactive port graph rewriting"; license = stdenv.lib.licenses.bsd3; @@ -48199,6 +48487,7 @@ self: { graph-rewriting-layout graph-rewriting-strategies IndentParser OpenGL parsec ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system"; license = stdenv.lib.licenses.bsd3; @@ -48234,6 +48523,7 @@ self: { base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl graph-rewriting-layout OpenGL parsec ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Two evalutors of the SKI combinator calculus as interactive graph rewrite systems"; license = stdenv.lib.licenses.bsd3; @@ -48271,6 +48561,7 @@ self: { graph-rewriting graph-rewriting-gl graph-rewriting-layout OpenGL uu-parsinglib ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluate first-order applicative term rewrite systems interactively using graph reduction"; license = stdenv.lib.licenses.bsd3; @@ -48291,6 +48582,7 @@ self: { base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl graph-rewriting-layout IndentParser OpenGL parsec ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluator of the lambda-calculus in an interactive graph rewriting system with explicit sharing"; license = stdenv.lib.licenses.bsd3; @@ -48319,6 +48611,7 @@ self: { buildDepends = [ base containers fgl mtl parsec syb template-haskell ]; + jailbreak = true; homepage = "http://github.com/konn/graph-utils/"; description = "A simple wrapper & quasi quoter for fgl"; license = stdenv.lib.licenses.bsd3; @@ -48365,6 +48658,7 @@ self: { base containers mtl QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/tel/graphbuilder"; description = "A declarative, monadic graph construction language for small graphs"; license = stdenv.lib.licenses.mit; @@ -48382,6 +48676,7 @@ self: { base bifunctors containers hashable lens-family lens-family-core mtl transformers ]; + jailbreak = true; homepage = "https://github.com/5outh/graphene"; description = "A minimal Graph Theory library"; license = stdenv.lib.licenses.mit; @@ -48396,7 +48691,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bitmap FTGL OpenGL stb-image ]; - configureFlags = [ "-f-examples" "-fftgl" ]; + jailbreak = true; homepage = "http://github.com/luqui/graphics-drawingcombinators"; description = "A functional interface to 2D drawing in OpenGL"; license = stdenv.lib.licenses.bsd3; @@ -48413,6 +48708,7 @@ self: { buildDepends = [ base bitmap-opengl containers hxt OpenGL stb-image transformers ]; + jailbreak = true; homepage = "http://github.com/luqui/collada"; description = "Load 3D geometry in the COLLADA format"; license = stdenv.lib.licenses.bsd3; @@ -48511,7 +48807,6 @@ self: { polyparse process temporary text transformers wl-pprint-text ]; testDepends = [ base containers fgl filepath QuickCheck text ]; - configureFlags = [ "-f-test-parsing" ]; homepage = "http://projects.haskell.org/graphviz/"; description = "Bindings to Graphviz for graph visualisation"; license = stdenv.lib.licenses.bsd3; @@ -48556,6 +48851,7 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/mhwombat/gray-extended"; description = "Gray encoding schemes"; license = stdenv.lib.licenses.bsd3; @@ -48598,7 +48894,6 @@ self: { buildDepends = [ base binary bytestring clock hostname network stm system-uuid time ]; - configureFlags = [ "-f-debug" ]; homepage = "http://code.google.com/p/greg/"; description = "A scalable distributed logger with a high-precision global time axis"; license = stdenv.lib.licenses.bsd3; @@ -48684,7 +48979,6 @@ self: { groundhog-sqlite groundhog-th mtl regex-compat syb template-haskell text time transformers ]; - configureFlags = [ "-f-mysql" "-f-postgresql" "-fsqlite" ]; homepage = "http://github.com/lykahb/groundhog"; description = "Type-safe datatype-database mapping library"; license = stdenv.lib.licenses.bsd3; @@ -48828,6 +49122,7 @@ self: { regex-compat text transformers-base unordered-containers vector wai wai-extra warp ]; + jailbreak = true; homepage = "http://github.com/iand675/growler"; description = "A revised version of the scotty library that attempts to be simpler and more performant"; license = stdenv.lib.licenses.mit; @@ -48848,7 +49143,7 @@ self: { base bytestring containers directory filepath FTGL gtk gtkglext mtl old-locale OpenGL OpenGLRaw parallel qd qd-vec ruff time Vec ]; - configureFlags = [ "-f-mpfr" ]; + jailbreak = true; description = "fractal explorer GUI using the ruff library"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -48867,7 +49162,7 @@ self: { base containers data-memocombinators filepath gruff qd qd-vec random ruff Vec ]; - configureFlags = [ "-f-mpfr" ]; + jailbreak = true; description = "Mandelbrot Set examples using ruff and gruff"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -48933,6 +49228,7 @@ self: { buildDepends = [ base containers mtl parsec permute sindre text X11 ]; + jailbreak = true; homepage = "http://sigkill.dk/programs/gsmenu"; description = "A visual generic menu"; license = stdenv.lib.licenses.bsd3; @@ -48954,6 +49250,7 @@ self: { gstreamer gstreamer-audio gstreamer-base gstreamer-controller gstreamer-dataprotocol gstreamer-net gstreamer-plugins-base ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GStreamer open source multimedia framework"; license = stdenv.lib.licenses.lgpl21; @@ -48976,7 +49273,6 @@ self: { base containers extensible-exceptions haskeline HTTP json mtl unix url utf8-string ]; - configureFlags = [ "-f-gui" ]; homepage = "http://github.com/styx/gtc"; description = "Console and GUI interface for Google Translate service"; license = "GPL"; @@ -49007,9 +49303,6 @@ self: { ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ glib gtk ]; - configureFlags = [ - "-ffmode-binary" "-f-have-quartz-gtk" "-fhave-gio" "-fdeprecated" - ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; @@ -49066,6 +49359,7 @@ self: { sha256 = "0gh8kwd9758ws941xbxhrm3144pmnqln0md5r6vjbq7s1x54bsrf"; buildDepends = [ array base containers glib gtk haskell98 mtl ]; pkgconfigDepends = [ gtk ]; + jailbreak = true; homepage = "http://www.haskell.org/gtk2hs/"; description = "GTK+ Serialized event"; license = stdenv.lib.licenses.lgpl21; @@ -49102,6 +49396,7 @@ self: { version = "0.2.0"; sha256 = "0zf3k0c5h5wcgkqr8np5kvgz4c9nha86k5whsn4f1wk0ikj98dfq"; buildDepends = [ base containers gtk ]; + jailbreak = true; description = "Convenient Gtk canvas with mouse and keyboard input"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -49134,7 +49429,6 @@ self: { random ]; buildTools = [ alex happy ]; - configureFlags = [ "-fclosuresignals" ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Tools to build the Gtk2Hs suite of User Interface libraries"; license = stdenv.lib.licenses.gpl2; @@ -49259,6 +49553,7 @@ self: { version = "0.2.1"; sha256 = "01wikd60b48qcz6vk31kwfkpkf2za5laxbhdyns45s90lvr98rvi"; buildDepends = [ base cairo glib gtk mtl ]; + jailbreak = true; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; }) {}; @@ -49280,9 +49575,6 @@ self: { ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ glib gtk3 ]; - configureFlags = [ - "-ffmode-binary" "-f-build-demos" "-fhave-gio" - ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; @@ -49315,7 +49607,7 @@ self: { buildDepends = [ base glib gtk pango ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ gtkglext pangox_compat ]; - configureFlags = [ "-f-use-deprecated" "-f-have-quartz-gtk" ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GTK+ OpenGL Extension"; license = stdenv.lib.licenses.lgpl21; @@ -49333,6 +49625,7 @@ self: { buildDepends = [ array base containers glib gtk haskell98 mtl ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ gtkimageview ]; + jailbreak = true; homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GtkImageView library"; license = stdenv.lib.licenses.lgpl21; @@ -49421,6 +49714,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cairo containers filepath gtk ]; + jailbreak = true; homepage = "http://gitorious.org/maximus/gulcii"; description = "graphical untyped lambda calculus interactive interpreter"; license = stdenv.lib.licenses.gpl2; @@ -49490,7 +49784,6 @@ self: { base MonadRandom mtl text transformers vty vty-ui ]; testDepends = [ base HUnit MonadRandom mtl transformers ]; - configureFlags = [ "-fvty" "-fexe" ]; homepage = "https://github.com/Javran/h2048"; description = "a haskell implementation of Game 2048"; license = stdenv.lib.licenses.mit; @@ -49548,7 +49841,6 @@ self: { buildDepends = [ base monads-tf transformers vector ]; buildTools = [ c2hs ]; extraLibraries = [ csound64 libsndfile ]; - configureFlags = [ "-fuseframework" "-fusedouble" "-fsplitbase" ]; description = "interface to CSound API"; license = "LGPL"; }) { csound64 = null; inherit (pkgs) libsndfile;}; @@ -49660,9 +49952,6 @@ self: { iterable mmap mtl Octree parallel QuickCheck tagged template-haskell text vector zlib ]; - configureFlags = [ - "-f-have-text-format" "-fhave-sse2" "-fhave-mmap" - ]; homepage = "https://github.com/BioHaskell/hPDB"; description = "Protein Databank file format library"; license = stdenv.lib.licenses.bsd3; @@ -49701,6 +49990,7 @@ self: { version = "0.1.1"; sha256 = "1qz1hd05fhh9vfjxmmnl9qs29hjl2qdyvfi9h687dp1dvk36j7ns"; buildDepends = [ aeson base bytestring http-conduit network ]; + jailbreak = true; homepage = "https://github.com/WJWH/hPushover"; description = "Pushover.net API functions."; license = stdenv.lib.licenses.bsd3; @@ -49744,7 +50034,6 @@ self: { base bytestring Crypto dataenc HTTP hxt MissingH network network-uri old-locale old-time random regex-compat utf8-string ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://gregheartsfield.com/hS3/"; description = "Interface to Amazon's Simple Storage Service (S3)"; license = stdenv.lib.licenses.bsd3; @@ -49762,6 +50051,7 @@ self: { base bytestring Crypto dataenc HTTP hxt network old-locale old-time utf8-string ]; + jailbreak = true; description = "Interface to Amazon's SimpleDB service"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -49774,6 +50064,7 @@ self: { sha256 = "05l9nlrwpb9gwgj8z48paxx46lkasa82naiq7armi98salk1a9ip"; buildDepends = [ base bytestring ]; testDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/mgajda/hTalos"; description = "Parser, print and manipulate structures in PDB file format"; license = stdenv.lib.licenses.bsd3; @@ -49917,6 +50208,7 @@ self: { version = "0.2.0.2"; sha256 = "0pm8vs94dbaahqrdwfffwa1jb9ghyjnq48sirlw1dj2gcsa3np2x"; buildDepends = [ base bytestring hack ]; + jailbreak = true; homepage = "http://github.com/snoyberg/hack-handler-cgi/tree/master"; description = "Hack handler using CGI protocol. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -49965,6 +50257,7 @@ self: { sha256 = "02slh33r9qy8q0vpi4s4vvf5lmb14ypk8bixdicvxakahjvxhanr"; buildDepends = [ base bytestring hack hack-handler-cgi ]; extraLibraries = [ fcgi ]; + jailbreak = true; homepage = "http://github.com/snoyberg/hack-handler-fastcgi/tree/master"; description = "Hack handler direct to fastcgi (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -50026,6 +50319,7 @@ self: { buildDepends = [ base bytestring failure hack network web-encodings ]; + jailbreak = true; homepage = "http://github.com/snoyberg/hack-handler-simpleserver/tree/master"; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -50111,7 +50405,6 @@ self: { air base bytestring containers data-default directory filepath hack2 network-uri old-locale text time ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/nfjinjing/hack2-contrib"; description = "Hack2 contrib"; license = stdenv.lib.licenses.bsd3; @@ -50147,6 +50440,7 @@ self: { base bytestring cgi containers data-default enumerator hack2 happstack-server mtl network ]; + jailbreak = true; homepage = "https://github.com/nfjinjing/hack2-handler-happstack-server"; description = "Hack2 Happstack server handler"; license = stdenv.lib.licenses.bsd3; @@ -50256,6 +50550,7 @@ self: { ansi-terminal async attoparsec base Cabal cpphs directory filepath haskell-src-exts HTTP mtl process text ]; + jailbreak = true; homepage = "https://github.com/blitzcode/hackage-diff"; description = "Compare the public API of different versions of a Hackage library"; license = stdenv.lib.licenses.mit; @@ -50275,7 +50570,6 @@ self: { base bytestring containers directory download-curl filepath gnuplot old-locale old-time parsedate ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/hackage-plot"; description = "Generate cumulative graphs of hackage uploads"; license = stdenv.lib.licenses.bsd3; @@ -50338,11 +50632,7 @@ self: { vector xml zlib ]; buildTools = [ alex happy ]; - configureFlags = [ - "-f-test-create-user" "-f-build-hackage-import" - "-fbuild-hackage-build" "-fbuild-hackage-mirror" - "-fbuild-hackage-server" "-f-debug" "-f-minimal" - ]; + jailbreak = true; description = "The Hackage web server"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -50361,7 +50651,6 @@ self: { base bytestring directory download filepath hsparklines old-locale old-time parsedate tagsoup ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/hackage-sparks"; description = "Generate sparkline graphs of hackage statistics"; license = stdenv.lib.licenses.bsd3; @@ -50467,7 +50756,6 @@ self: { base bytestring containers deepseq directory extensible-exceptions filepath HUnit mtl pretty process time unix xml ]; - configureFlags = [ "-fsplit-base" ]; description = "Hackage and Portage integration tool"; license = "GPL"; }) {}; @@ -50484,6 +50772,7 @@ self: { base containers monad-control mtl resourcet stm stm-chans transformers-base ]; + jailbreak = true; homepage = "https://github.com/Forkk/hactor"; description = "Lightweight Erlang-style actors for Haskell"; license = stdenv.lib.licenses.mit; @@ -50496,6 +50785,7 @@ self: { version = "0.0.3.1"; sha256 = "0nxcl3v9gnnyjzdpk30m2pmrhwcva9rky2dxrj4nnkr67ajm2dj0"; buildDepends = [ base stm ]; + jailbreak = true; homepage = "https://github.com/treep/hactors"; description = "Practical actors for Haskell"; license = stdenv.lib.licenses.mit; @@ -50513,7 +50803,6 @@ self: { isExecutable = true; buildDepends = [ base haddock-api ]; testDepends = [ base Cabal directory filepath process ]; - configureFlags = [ "-f-in-ghc-tree" ]; preCheck = "unset GHC_PACKAGE_PATH"; homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; @@ -50551,7 +50840,7 @@ self: { buildDepends = [ array base Cabal containers directory filepath ghc ghc-paths pretty ]; - configureFlags = [ "-f-in-ghc-tree" ]; + jailbreak = true; homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; @@ -50628,6 +50917,7 @@ self: { protobuf socks stm text transformers unix unordered-containers vector xmlhtml ]; + jailbreak = true; homepage = "http://github.com/jystic/hadoop-rpc"; description = "Use the Hadoop RPC interface from Haskell"; license = stdenv.lib.licenses.asl20; @@ -50655,6 +50945,7 @@ self: { attoparsec base bytestring hadoop-rpc tasty tasty-hunit tasty-quickcheck vector ]; + jailbreak = true; homepage = "http://github.com/jystic/hadoop-tools"; description = "Fast command line tools for working with Hadoop"; license = stdenv.lib.licenses.asl20; @@ -50730,7 +51021,7 @@ self: { http-client http-client-tls http-types tagsoup text time transformers ]; - configureFlags = [ "-fnewtime" ]; + jailbreak = true; description = "Mailgun REST api interface for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -50744,6 +51035,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring configurator hailgun text ]; + jailbreak = true; description = "A program to send emails throught the Mailgun api"; license = stdenv.lib.licenses.mit; }) {}; @@ -50778,6 +51070,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text time unix wai wai-test ]; + jailbreak = true; description = "Multi-app web platform framework"; license = stdenv.lib.licenses.mit; broken = true; @@ -50797,6 +51090,7 @@ self: { base bson bytestring containers ghc-paths hails iterIO iterio-server mongoDB mtl ]; + jailbreak = true; description = "Dynamic launcher of Hails applications"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -50821,6 +51115,7 @@ self: { testDepends = [ base hspec http-types mtl persistent scotty time wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/tfausak/hairy"; description = "A JSON REST API"; license = stdenv.lib.licenses.mit; @@ -50850,6 +51145,7 @@ self: { statistics test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "http://indiana.edu/~ppaml/"; description = "A probabilistic programming embedded DSL"; license = stdenv.lib.licenses.bsd3; @@ -50880,6 +51176,7 @@ self: { version = "0.1"; sha256 = "1ddmnzan16vn0fbp1fgsidahayihhr0vw8saypdqq7lnhqw8j9d4"; buildDepends = [ base HTTP network ]; + jailbreak = true; homepage = "https://code.reaktor42.de/projects/hakismet"; description = "Akismet spam protection library"; license = stdenv.lib.licenses.mit; @@ -50897,6 +51194,7 @@ self: { base haskell-src-meta parsec template-haskell text transformers ]; testDepends = [ base QuickCheck ]; + jailbreak = true; description = "A mako-like quasi-quoter template library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -50933,9 +51231,6 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time ]; - configureFlags = [ - "-fcheckexternal" "-fwatchserver" "-fpreviewserver" - ]; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; @@ -50965,6 +51260,7 @@ self: { version = "0.1.1.0"; sha256 = "11dl3rqls2yxkmycx63xr1cix4adk6b29sbwr4v5n48bqamr7p1j"; buildDepends = [ base blaze-html blaze-markup hakyll ]; + jailbreak = true; description = "Blaze templates for Hakyll"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -50978,6 +51274,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base directory filepath hakyll pandoc ]; + jailbreak = true; homepage = "http://jaspervdj.be/hakyll"; description = "Extra modules for the hakyll website compiler"; license = stdenv.lib.licenses.bsd3; @@ -51010,6 +51307,7 @@ self: { testDepends = [ base binary QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; description = "A hakyll library that helps maintain a separate links database"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -51041,6 +51339,7 @@ self: { version = "0.2.1"; sha256 = "0bgwcxarsa40aylvg4cc7ha5y87xklkc4ifwd17l69l4xbb4iqpk"; buildDepends = [ base blaze-html blaze-markup Elm hakyll mtl ]; + jailbreak = true; homepage = "https://github.com/maxsnew/hakyll-elm"; description = "Hakyll wrapper for the Elm compiler"; license = stdenv.lib.licenses.bsd3; @@ -51066,6 +51365,7 @@ self: { haskell-src-exts HUnit mtl split tagged test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://github.com/haskell-suite/halberd/"; description = "A tool to generate missing import statements for Haskell modules"; license = stdenv.lib.licenses.bsd3; @@ -51098,7 +51398,7 @@ self: { array base bytestring cereal containers directory filepath fingertree HFuse mtl QuickCheck random time unix ]; - configureFlags = [ "-fbuild-tests" ]; + jailbreak = true; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -51110,6 +51410,7 @@ self: { version = "2.4.1"; sha256 = "1anyf6mh13rmj5a0lsayrcxzvm3zk0a2943pzkgz06y3aqgmcbdb"; buildDepends = [ base directory HaXml pandoc ]; + jailbreak = true; homepage = "http://github.com/peti/halipeto"; description = "Haskell Static Web Page Generator"; license = "GPL"; @@ -51165,6 +51466,7 @@ self: { base bytestring containers directory filepath Glob preprocessor-tools ]; + jailbreak = true; description = "Haskell macro preprocessor"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -51195,6 +51497,7 @@ self: { base containers directory filepath haskore HaXml musicxml non-negative process ]; + jailbreak = true; homepage = "https://troglodita.di.uminho.pt/svn/musica/work/HaMusic"; description = "Library to handle abstract music"; license = stdenv.lib.licenses.bsd3; @@ -51277,10 +51580,6 @@ self: { base blaze-html blaze-markup bytestring cereal containers fingertree HTTP monadLib old-locale random time unix ]; - configureFlags = [ - "-f-word32-in-random" "-fweb-server" "-f-example" "-f-enable-tests" - "-f-bounded-channels" - ]; description = "IPv4 Network Stack"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -51304,6 +51603,7 @@ self: { version = "0.1.0.0"; sha256 = "07jspsi8y921n5m5ar93w4gqaff4mjx79ss416ccm4s1k4l2km0b"; buildDepends = [ base bytestring hans pfq ]; + jailbreak = true; homepage = "https://github.com/tolysz/hans-pfq"; description = "Driver for real ethernet devices for HaNS"; license = stdenv.lib.licenses.bsd3; @@ -51338,6 +51638,7 @@ self: { buildDepends = [ array base bytestring containers glib gtk mtl ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ appindicator ]; + jailbreak = true; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; }) { appindicator = null;}; @@ -51352,7 +51653,6 @@ self: { isExecutable = true; buildDepends = [ base glib gtk3 text ]; pkgconfigDepends = [ appindicator ]; - configureFlags = [ "-f-demo" ]; homepage = "https://github.com/mlacorte/happindicator3"; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; @@ -51418,7 +51718,7 @@ self: { HStringTemplateHelpers HTTP mtl old-time parsec pretty pureMD5 safe syb ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -51432,7 +51732,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base happstack-server ]; - configureFlags = [ "-f-tests" "-fbase4" ]; + jailbreak = true; homepage = "http://happstack.com"; description = "The haskell application server stack + code generation"; license = stdenv.lib.licenses.bsd3; @@ -51452,6 +51752,7 @@ self: { happstack-ixset happstack-server happstack-state mtl old-time random ]; + jailbreak = true; homepage = "http://n-sch.de/happstack-auth"; description = "A Happstack Authentication Suite"; license = stdenv.lib.licenses.bsd3; @@ -51492,6 +51793,7 @@ self: { base bytestring cereal clientsession happstack-server monad-control mtl safecopy transformers-base ]; + jailbreak = true; homepage = "http://happstack.com"; description = "client-side session data"; license = stdenv.lib.licenses.bsd3; @@ -51513,7 +51815,7 @@ self: { happstack-server happstack-state happstack-util HTTP HUnit mtl network old-time syb unix ]; - configureFlags = [ "-f-tests" "-fbase4" ]; + jailbreak = true; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -51534,9 +51836,7 @@ self: { base binary bytestring containers mtl pretty syb syb-with-class syb-with-class-instances-text template-haskell text time ]; - configureFlags = [ - "-f-new-haxml" "-f-old-haxml" "-f-tests" "-fbase4" - ]; + jailbreak = true; homepage = "http://happstack.com"; description = "Happstack data manipulation libraries"; license = stdenv.lib.licenses.bsd3; @@ -51582,7 +51882,6 @@ self: { web-routes-mtl ]; buildTools = [ trhsx ]; - configureFlags = [ "-f-formlets" "-fbase4" ]; homepage = "http://src.seereason.com/happstack-facebook/"; description = "A package for building Facebook applications using Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51615,6 +51914,7 @@ self: { buildDepends = [ aeson base fay happstack-fay-ajax happstack-server mtl ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51627,6 +51927,7 @@ self: { version = "0.2.0"; sha256 = "0zdkvvmywnfvqg5jdvf29qczzxmprvspxj0r1vj46fd6vld53j4j"; buildDepends = [ fay-base fay-jquery ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51659,6 +51960,7 @@ self: { version = "7.0.4"; sha256 = "1l12gyyqzblb9psk6692r9xw640jxzyxqldfyg2yrzz8y0zi649a"; buildDepends = [ base happstack-server shakespeare text ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Support for Hamlet HTML templates in Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51676,6 +51978,7 @@ self: { base blaze-builder bytestring either filepath happstack-server heist mtl text ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Support for using Heist templates in Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51700,7 +52003,7 @@ self: { MissingH mtl network old-time parsec PBKDF2 pureMD5 random safe syb text utf8-string ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; homepage = "http://patch-tag.com/r/tphyahoo/HAppSHelpers/home"; description = "Convenience functions for Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51734,6 +52037,7 @@ self: { buildDepends = [ base bytestring happstack-server hslogger HStringTemplate mtl ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Support for using HStringTemplate in Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51753,7 +52057,7 @@ self: { base containers happstack-data happstack-util mtl syb syb-with-class template-haskell ]; - configureFlags = [ "-f-tests" "-fbase4" ]; + jailbreak = true; homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; @@ -51772,6 +52076,7 @@ self: { base base64-bytestring bytestring cereal digest happstack-server jmacro text utf8-string wl-pprint-text ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Support for using JMacro with Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51815,7 +52120,7 @@ self: { buildDepends = [ base happstack-server mtl plugins-auto template-haskell th-lift ]; - configureFlags = [ "-f-tests" "-fbase4" ]; + jailbreak = true; homepage = "http://happstack.com"; description = "The haskell application server stack + reload"; license = stdenv.lib.licenses.bsd3; @@ -51841,7 +52146,6 @@ self: { transformers transformers-base unix utf8-string xhtml zlib ]; testDepends = [ base bytestring containers HUnit parsec zlib ]; - configureFlags = [ "-fnetwork-uri" "-ftemplate_haskell" ]; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -51882,7 +52186,7 @@ self: { filepath happstack-data happstack-util hslogger mtl old-time random stm syb template-haskell unix ]; - configureFlags = [ "-f-replication" "-f-tests" "-fbase4" ]; + jailbreak = true; homepage = "http://happstack.com"; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; @@ -51921,7 +52225,7 @@ self: { hslogger mtl network old-locale old-time parsec process random template-haskell time unix unix-compat ]; - configureFlags = [ "-f-tests" "-fbase4" ]; + jailbreak = true; homepage = "http://happstack.com"; description = "Web framework"; license = stdenv.lib.licenses.bsd3; @@ -51943,7 +52247,7 @@ self: { template-haskell text web-routes web-routes-boomerang web-routes-happstack web-routes-th ]; - configureFlags = [ "-f-embed" ]; + jailbreak = true; homepage = "http://hub.darcs.net/dag/yui/browse/happstack-yui"; description = "Utilities for using YUI3 with Happstack"; license = stdenv.lib.licenses.bsd3; @@ -51961,7 +52265,6 @@ self: { buildDepends = [ array base containers mtl ]; testDepends = [ base process ]; buildTools = [ perl ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://www.haskell.org/happy/"; description = "Happy is a parser generator for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -51995,6 +52298,7 @@ self: { aeson base filepath http-types lifted-base monad-control mtl text time transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/cstrahan/happybara"; description = "Acceptance test framework for web applications"; license = stdenv.lib.licenses.mit; @@ -52015,6 +52319,7 @@ self: { filepath happybara http-types lifted-base monad-control mtl network process text time transformers transformers-base vector word8 ]; + jailbreak = true; homepage = "https://github.com/cstrahan/happybara/happybara-webkit"; description = "WebKit Happybara driver"; license = stdenv.lib.licenses.mit; @@ -52027,6 +52332,7 @@ self: { version = "0.0.1"; sha256 = "0vh9ig9mvg12qgysk7gbqwiib3m2ciwi10asb1i0x25xjp585shi"; buildDepends = [ base directory filepath process ]; + jailbreak = true; homepage = "https://github.com/cstrahan/happybara/happybara-webkit-server"; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = stdenv.lib.licenses.mit; @@ -52080,6 +52386,7 @@ self: { base bindings-DSL monad-control resourcet transformers ]; pkgconfigDepends = [ groonga ]; + jailbreak = true; description = "Low level bindings for Groonga"; license = stdenv.lib.licenses.lgpl21; }) { groonga = null;}; @@ -52122,7 +52429,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base QuickCheck ]; - configureFlags = [ "-f-test" ]; homepage = "http://github.com/nonowarn/has"; description = "Entity based records"; license = stdenv.lib.licenses.bsd3; @@ -52169,6 +52475,7 @@ self: { base bytestring hascat-lib hascat-setup hascat-system HaXml haxr html HTTP network unix ]; + jailbreak = true; description = "Hascat Web Server"; license = "unknown"; }) {}; @@ -52186,6 +52493,7 @@ self: { base bytestring containers directory haskell98 HaXml html HTTP mtl network old-locale old-time parsec plugins xhtml ]; + jailbreak = true; description = "Hascat Package"; license = "unknown"; }) {}; @@ -52219,6 +52527,7 @@ self: { base bytestring containers hascat-lib HaXml HTTP mtl network old-time parsec plugins unix ]; + jailbreak = true; description = "Hascat System Package"; license = "unknown"; }) {}; @@ -52237,7 +52546,7 @@ self: { lens transformers ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; + jailbreak = true; homepage = "http://github.com/analytics/hash/"; description = "Hashing tools"; license = stdenv.lib.licenses.bsd3; @@ -52257,7 +52566,6 @@ self: { base bytestring ghc-prim HUnit QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 text unix ]; - configureFlags = [ "-f-sse41" "-fsse2" "-finteger-gmp" ]; homepage = "http://github.com/tibbe/hashable"; description = "A class for types that can be converted to a hash value"; license = stdenv.lib.licenses.bsd3; @@ -52275,7 +52583,6 @@ self: { base bifunctors bytestring generic-deriving hashable transformers ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; homepage = "http://github.com/analytics/hashable-extras/"; description = "Higher-rank Hashable"; license = stdenv.lib.licenses.bsd3; @@ -52294,6 +52601,7 @@ self: { base ghc-prim hashable QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/wowus/hashable-generics"; description = "Automatically generates Hashable instances with GHC.Generics."; license = stdenv.lib.licenses.bsd3; @@ -52313,7 +52621,6 @@ self: { base binary bytestring containers dataenc directory extensible-exceptions filepath mmap mtl zlib ]; - configureFlags = [ "-f-hpc" "-f-diff" "-f-test" ]; description = "Hashed file storage support code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -52325,7 +52632,6 @@ self: { version = "1.3.0.1"; sha256 = "16scl1rbq0f18mggrj4lbhgkz7kzshsw9a523rjd8cjkdjz1ijwr"; buildDepends = [ base containers deepseq hashable ]; - configureFlags = [ "-f-oldcontainers" ]; homepage = "http://git.auryn.cz/haskell/hashmap/"; description = "Persistent containers Map and Set based on hashing"; license = stdenv.lib.licenses.bsd3; @@ -52343,6 +52649,7 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/mkscrg/hashring"; description = "Efficient consistent hashing"; license = stdenv.lib.licenses.bsd3; @@ -52355,10 +52662,6 @@ self: { version = "1.2.0.2"; sha256 = "0dqq5ssgkqzplqf5dmc4l8cj28j5py7i6n6a069qn4cibvxfjaq1"; buildDepends = [ base ghc-prim hashable primitive vector ]; - configureFlags = [ - "-f-portable" "-f-sse42" "-f-debug" "-f-bounds-checking" - "-funsafe-tricks" - ]; homepage = "http://github.com/gregorycollins/hashtables"; description = "Mutable hash tables in the ST monad"; license = stdenv.lib.licenses.bsd3; @@ -52372,6 +52675,7 @@ self: { version = "0.2.0"; sha256 = "0g9jmc15g36iy0wmmsj74qwybh509j4lf8jzv3dws7c2j24kc7l7"; buildDepends = [ base hashable hashtables loch-th placeholders ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/hashtables-plus"; description = "Extensions for a \"hashtables\" library"; license = stdenv.lib.licenses.mit; @@ -52384,7 +52688,6 @@ self: { version = "0.1.2"; sha256 = "03wn142r0sh7adfghjqwb2mgq4rgkqs8nq2rx2jq717dr2xp987n"; buildDepends = [ base containers mtl ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://huygens.functor.nl/hasim/"; description = "Process-Based Discrete Event Simulation library"; license = stdenv.lib.licenses.bsd3; @@ -52402,7 +52705,6 @@ self: { buildDepends = [ base constraints ghc-prim reflection tagged transformers void ]; - configureFlags = [ "-f-optimize" ]; homepage = "http://github.com/ekmett/hask"; description = "Categories"; license = stdenv.lib.licenses.bsd3; @@ -52478,7 +52780,7 @@ self: { base freenect hcwiid IfElse MissingH mtl SDL SDL-image SDL-mixer SDL-ttf transformers vector Yampa ]; - configureFlags = [ "-fkinect" "-fwiimote" ]; + jailbreak = true; homepage = "http://github.com/ivanperez-keera/haskanoid"; description = "A breakout game written in Yampa using SDL"; license = "unknown"; @@ -52517,6 +52819,7 @@ self: { aeson base bytestring connection containers hspec http-conduit http-types monads-tf stm text wai warp ]; + jailbreak = true; homepage = "https://github.com/jonplussed/haskbot-core"; description = "Easily-extensible chatbot for Slack messaging service"; license = stdenv.lib.licenses.mit; @@ -52542,6 +52845,7 @@ self: { optparse-applicative regex-tdfa regex-tdfa-text system-fileio system-filepath text time ]; + jailbreak = true; homepage = "https://github.com/maurotrb/haskdeep"; description = "Computes and audits file hashes"; license = stdenv.lib.licenses.bsd3; @@ -52592,9 +52896,7 @@ self: { base bytestring containers directory filepath terminfo transformers unix utf8-string ]; - configureFlags = [ - "-fterminfo" "-f-legacy-encoding" "-f-libiconv" "-fterminfo" - ]; + configureFlags = [ "-fterminfo" ]; homepage = "http://trac.haskell.org/haskeline"; description = "A command-line interface for user input, written in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -52607,6 +52909,7 @@ self: { version = "0.6.2"; sha256 = "0xgdq2xgw2ccyfzkj5n36s5n6km5l947d2iy4y1qms8kbc05zmfl"; buildDepends = [ base haskeline mtl ]; + jailbreak = true; homepage = "http://community.haskell.org/~aslatter/code/haskeline-class"; description = "Class interface for working with Haskeline"; license = stdenv.lib.licenses.bsd3; @@ -52660,6 +52963,7 @@ self: { stringsearch temporary test-framework test-framework-hunit time transformers ]; + jailbreak = true; description = "Transform text from the command-line using Haskell expressions"; license = stdenv.lib.licenses.asl20; }) {}; @@ -52690,6 +52994,7 @@ self: { testDepends = [ base bytestring mtl QuickCheck tasty tasty-quickcheck tasty-th ]; + jailbreak = true; description = "BrainFuck interpreter"; license = stdenv.lib.licenses.mit; }) {}; @@ -52721,6 +53026,7 @@ self: { version = "0.1.0.1"; sha256 = "0g95vhqga7hq6w6x993d29wpphcqidmm0vzni93blqka7yfc7ybb"; buildDepends = [ base process ]; + jailbreak = true; description = "Simple CoffeeScript API"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -52766,6 +53072,7 @@ self: { ghc-paths haddock monad-loops text unordered-containers ]; testDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/chrisdone/haskell-docs"; description = "A program to find and display the docs and type of a name"; license = stdenv.lib.licenses.bsd3; @@ -52791,6 +53098,7 @@ self: { base containers directory-tree doctest filemanip filepath hlint tasty tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/evolutics/haskell-formatter"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.gpl3; @@ -52813,6 +53121,7 @@ self: { lifted-base monad-control network network-conduit process-conduit system-filepath text transformers transformers-base unix ]; + jailbreak = true; homepage = "https://github.com/yihuang/haskell-ftp"; description = "A Haskell ftp server with configurable backend"; license = stdenv.lib.licenses.bsd3; @@ -52888,7 +53197,6 @@ self: { ]; buildTools = [ c2hs ]; extraLibraries = [ mpi ]; - configureFlags = [ "-f-mpich14" "-f-test" ]; homepage = "http://github.com/bjpop/haskell-mpi"; description = "Distributed parallel programming in Haskell using MPI"; license = stdenv.lib.licenses.bsd3; @@ -52945,6 +53253,7 @@ self: { test-framework-quickcheck2 test-framework-th text transformers transformers-base unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; @@ -52997,6 +53306,7 @@ self: { base bytestring cairo containers directory filepath glib gtk old-locale poppler template-haskell time zlib ]; + jailbreak = true; homepage = "http://michaeldadams.org/projects/haskell-pdf-presenter/"; description = "Tool for presenting PDF-based presentations"; license = stdenv.lib.licenses.gpl3; @@ -53026,6 +53336,7 @@ self: { zlib ]; buildTools = [ alex happy ]; + jailbreak = true; homepage = "http://code.haskell.org/~dons/code/haskell-platform-test"; description = "A test system for the Haskell Platform environment"; license = stdenv.lib.licenses.bsd3; @@ -53101,7 +53412,6 @@ self: { sha256 = "1vscvbsly7k0zqb7fi6bm38dfacyl8qgmv0h25fqkn95c0v5dif7"; buildDepends = [ array base pretty syb ]; buildTools = [ happy ]; - configureFlags = [ "-fsplit-base" ]; description = "Support for manipulating Haskell source code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -53169,6 +53479,7 @@ self: { base containers ghc-prim haskell-src-exts pretty syb template-haskell ]; + jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -53204,7 +53515,6 @@ self: { version = "0.1.0"; sha256 = "051lsg9j3dgkr2akannfaddawdhybvsnm6x6xafmdmwn31v73z98"; buildDepends = [ base containers haskell-src-exts pretty ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/haskell-type-exts"; description = "A type checker for Haskell/haskell-src-exts"; license = stdenv.lib.licenses.bsd3; @@ -53217,6 +53527,7 @@ self: { version = "0.1.0.0"; sha256 = "0fv533nac6dlawgffr1kvn4xpv63hdcb4wgyqbbg2s6dg9a2hw38"; buildDepends = [ base process ]; + jailbreak = true; description = "Simple TypeScript API"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -53265,7 +53576,6 @@ self: { array base HaXml html mtl network polyparse pretty random regex-compat stm utf8-string ]; - configureFlags = [ "-f-debug" "-f-examples" ]; homepage = "http://patch-tag.com/r/adept/haskell-xmpp/home"; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = stdenv.lib.licenses.bsd3; @@ -53310,7 +53620,7 @@ self: { buildDepends = [ array base directory old-locale old-time process time ]; - configureFlags = [ "-futctime-in-directory" ]; + jailbreak = true; homepage = "http://www.haskell.org/definition/"; description = "Compatibility with Haskell 98"; license = stdenv.lib.licenses.bsd3; @@ -53420,6 +53730,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base haskell98 haskelldb mtl plugins ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the dynamically loaded drivers"; license = stdenv.lib.licenses.bsd3; @@ -53438,7 +53749,7 @@ self: { buildDepends = [ base containers directory haskelldb mtl old-time ]; - configureFlags = [ "-fsplit-base" ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "An experimental HaskellDB back-end in pure Haskell (no SQL)"; license = stdenv.lib.licenses.bsd3; @@ -53473,6 +53784,7 @@ self: { buildDepends = [ base haskelldb haskelldb-hdbc HDBC HDBC-mysql mtl ]; + jailbreak = true; description = "HaskellDB support for the HDBC MySQL driver"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -53539,7 +53851,7 @@ self: { version = "1.0.0"; sha256 = "0j1aqix21pqcsw7skl897pd1ir6hg836g4zb2h5338h4gih6blx0"; buildDepends = [ base haskelldb hsql mtl old-time ]; - configureFlags = [ "-fsplit-base" ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for HSQL"; license = stdenv.lib.licenses.bsd3; @@ -53558,6 +53870,7 @@ self: { buildDepends = [ base haskelldb haskelldb-hsql hsql hsql-mysql mtl ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL MySQL driver"; license = stdenv.lib.licenses.bsd3; @@ -53576,6 +53889,7 @@ self: { buildDepends = [ base haskelldb haskelldb-hsql hsql hsql-odbc mtl ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL ODBC driver"; license = stdenv.lib.licenses.bsd3; @@ -53594,6 +53908,7 @@ self: { buildDepends = [ base haskelldb haskelldb-hsql hsql hsql-oracle mtl ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL Oracle driver"; license = stdenv.lib.licenses.bsd3; @@ -53613,6 +53928,7 @@ self: { buildDepends = [ base haskelldb haskelldb-hsql hsql hsql-postgresql mtl ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = stdenv.lib.licenses.bsd3; @@ -53631,6 +53947,7 @@ self: { buildDepends = [ base haskelldb haskelldb-hsql hsql hsql-sqlite mtl ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL SQLite driver"; license = stdenv.lib.licenses.bsd3; @@ -53650,6 +53967,7 @@ self: { buildDepends = [ base haskelldb haskelldb-hsql hsql hsql-sqlite3 mtl ]; + jailbreak = true; homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL SQLite3 driver"; license = stdenv.lib.licenses.bsd3; @@ -53662,6 +53980,7 @@ self: { version = "2.1.0"; sha256 = "12whvz0qy9lqk1frfl5px9lhr1nwy519vj2z9c3g8nqjzscwzayb"; buildDepends = [ base haskelldb mtl template-haskell ]; + jailbreak = true; homepage = "http://trac.haskell.org/haskelldb-th"; description = "Template Haskell utilities for HaskellDB"; license = stdenv.lib.licenses.bsd3; @@ -53754,6 +54073,7 @@ self: { aeson base bytestring http-conduit http-types network old-locale text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/Raynes/haskheap"; description = "Haskell bindings to refheap"; license = stdenv.lib.licenses.mit; @@ -53807,6 +54127,7 @@ self: { aeson base bytestring containers http-streams io-streams old-locale time vector ]; + jailbreak = true; description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)"; license = stdenv.lib.licenses.mit; }) {}; @@ -53830,7 +54151,7 @@ self: { deepseq either HUnit json-rpc mtl pbkdf QuickCheck split test-framework test-framework-hunit test-framework-quickcheck2 text ]; - configureFlags = [ "-f-testnet" ]; + jailbreak = true; homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the Bitcoin protocol"; license = stdenv.lib.licenses.publicDomain; @@ -53854,6 +54175,7 @@ self: { HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/plaprade/haskoin-crypto"; description = "Implementation of Bitcoin cryptographic primitives"; license = stdenv.lib.licenses.publicDomain; @@ -53875,6 +54197,7 @@ self: { base binary bytestring haskoin-crypto haskoin-util HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/plaprade/haskoin-protocol"; description = "Implementation of the Bitcoin network protocol messages"; license = stdenv.lib.licenses.publicDomain; @@ -53898,6 +54221,7 @@ self: { HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/plaprade/haskoin-script"; description = "Implementation of Bitcoin script parsing and evaluation"; license = stdenv.lib.licenses.publicDomain; @@ -53917,6 +54241,7 @@ self: { base binary bytestring containers either HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/plaprade/haskoin-util"; description = "Utility functions for the Network.Haskoin project"; license = stdenv.lib.licenses.publicDomain; @@ -53949,6 +54274,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time unordered-containers vector yaml ]; + jailbreak = true; homepage = "http://github.com/plaprade/haskoin-wallet"; description = "Implementation of a Bitcoin hierarchical deterministric wallet (BIP32)"; license = stdenv.lib.licenses.publicDomain; @@ -54019,7 +54345,6 @@ self: { haskell-src markov-chain midi non-negative parsec process random transformers utility-ht ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Haskore"; description = "The Haskore Computer Music System"; license = "GPL"; @@ -54038,7 +54363,6 @@ self: { base bytestring data-accessor directory event-list haskore midi non-negative old-time process transformers unix utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Haskore/"; description = "Routines for realtime playback of Haskore songs"; license = "GPL"; @@ -54061,7 +54385,7 @@ self: { haskore-realtime hosc hsc3 non-negative opensoundcontrol-ht process random supercollider-ht transformers unix utility-ht ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskore back-end for SuperCollider"; license = "GPL"; @@ -54082,7 +54406,7 @@ self: { base data-accessor event-list haskore non-negative numeric-prelude random synthesizer-core utility-ht ]; - configureFlags = [ "-f-buildexamples" "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Music rendering coded in Haskell"; license = "GPL"; @@ -54113,7 +54437,6 @@ self: { buildDepends = [ base bytestring directory filepath json unix utf8-string ]; - configureFlags = [ "-f-debug" ]; homepage = "http://github.com/MarcWeber/hasktags"; description = "Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"; license = stdenv.lib.licenses.bsd3; @@ -54295,6 +54618,7 @@ self: { aeson attoparsec base bytestring containers hastache text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/proger/hastache-aeson"; description = "render hastache templates using aeson values"; license = stdenv.lib.licenses.bsd3; @@ -54309,6 +54633,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base curl filepath mtl ]; + jailbreak = true; description = "A universal pastebin tool, written in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -54333,9 +54658,7 @@ self: { random shellmate system-fileio tar transformers utf8-string websockets ]; - configureFlags = [ - "-fportable" "-f-only-library" "-f-static" "-fportable" - ]; + configureFlags = [ "-fportable" ]; homepage = "http://haste-lang.org/"; description = "Haskell To ECMAScript compiler"; license = stdenv.lib.licenses.bsd3; @@ -54349,6 +54672,7 @@ self: { version = "0.0.1.0"; sha256 = "02rqm4qjaww2c622bqd1bb2mjb73w2s7d7pwvz94x03npxkf4hn1"; buildDepends = [ base containers directory filepath haste-lib ]; + jailbreak = true; homepage = "http://github.com/ajnsit/haste-markup"; description = "A port of blaze-markup and blaze-html to Haste"; license = stdenv.lib.licenses.mit; @@ -54362,7 +54686,6 @@ self: { version = "0.1.0.7"; sha256 = "0qikaiqk408x90p1wqz0p7jc2ri4raqnl4d50x3g5abqj2y1h93n"; buildDepends = [ base haste-compiler transformers ]; - configureFlags = [ "-f-haste-inst" ]; homepage = "https://github.com/agocorona/haste-perch"; description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler"; license = stdenv.lib.licenses.gpl3; @@ -54484,6 +54807,7 @@ self: { aeson base bytestring containers hashable HUnit text unordered-containers ]; + jailbreak = true; homepage = "https://github.com/facebook/Haxl"; description = "A Haskell library for efficient, concurrent, and concise data access"; license = stdenv.lib.licenses.bsd3; @@ -54507,6 +54831,7 @@ self: { http-client-tls http-conduit resourcet text time transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/facebook/Haxl"; description = "An example Haxl data source for accessing the Facebook Graph API"; license = stdenv.lib.licenses.bsd3; @@ -54528,6 +54853,7 @@ self: { mtl optparse-applicative parsec split template-haskell transformers utf8-string zlib ]; + jailbreak = true; homepage = "https://github.com/joelteon/haxparse"; description = "Readable HaxBall replays"; license = stdenv.lib.licenses.mit; @@ -54548,7 +54874,6 @@ self: { mtl network network-uri old-locale old-time template-haskell time utf8-string ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://www.haskell.org/haskellwiki/HaXR"; description = "XML-RPC client and server library"; license = stdenv.lib.licenses.bsd3; @@ -54561,6 +54886,7 @@ self: { version = "3000.5"; sha256 = "1h1g4r7c5k3rja49ip4m21f2sscn06xjxharnlyazvvs6mzfysif"; buildDepends = [ base haxr template-haskell ]; + jailbreak = true; homepage = "http://www.haskell.org/haxr/"; description = "Automatic deriving of XML-RPC structs for Haskell records"; license = stdenv.lib.licenses.bsd3; @@ -54620,6 +54946,7 @@ self: { aeson base bytestring http-conduit http-types optparse-applicative pandoc url ]; + jailbreak = true; homepage = "https://github.com/Gonzih/hayoo-cli"; description = "Hayoo CLI"; license = stdenv.lib.licenses.mit; @@ -54638,7 +54965,6 @@ self: { buildDepends = [ base cairo filepath glade gtk haskell98 process svgcairo time unix ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://hback.googlecode.com/"; description = "N-back memory game"; license = stdenv.lib.licenses.bsd3; @@ -54660,7 +54986,6 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 vector ]; - configureFlags = [ "-f-profile" "-f-local" ]; homepage = "http://www.alpheccar.org"; description = "Bayesian Networks"; license = stdenv.lib.licenses.bsd3; @@ -54676,6 +55001,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory ghc ghc-mod ghc-paths libhbb ]; + jailbreak = true; homepage = "https://bitbucket.org/bhris/hbb"; description = "Haskell Busy Bee, a backend for text editors"; license = stdenv.lib.licenses.lgpl21; @@ -54738,7 +55064,7 @@ self: { buildDepends = [ base primitive storable-complex vector ]; testDepends = [ base HUnit tasty tasty-hunit vector ]; extraLibraries = [ blas lapack ]; - configureFlags = [ "-f-cblas" "-f-openblas" ]; + jailbreak = true; homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -54757,6 +55083,7 @@ self: { aeson base blaze-markup bytestring cereal containers deepseq hashable path-pieces safecopy text unordered-containers uuid vector ]; + jailbreak = true; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -54782,7 +55109,7 @@ self: { semigroups stm system-fileio text time transformers transformers-base unix webkitgtk3 zeromq4-haskell ]; - configureFlags = [ "-fthreaded" ]; + jailbreak = true; homepage = "https://bitbucket.org/k0ral/hbro"; description = "Minimal KISS-compliant browser"; license = "unknown"; @@ -54803,6 +55130,7 @@ self: { network-uri pango parsec process safe system-fileio text time transformers-base unix webkitgtk3 ]; + jailbreak = true; homepage = "https://bitbucket.org/k0ral/hbro-contrib"; description = "Third-party extensions to hbro"; license = "unknown"; @@ -54818,7 +55146,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base containers filepath haskell98 mtl ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://www.bytelabs.org/hburg.html"; description = "Haskell Bottom Up Rewrite Generator"; license = stdenv.lib.licenses.bsd3; @@ -54833,6 +55160,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring language-c ]; + jailbreak = true; homepage = "http://tomahawkins.org"; description = "A toy C compiler"; license = stdenv.lib.licenses.bsd3; @@ -54911,6 +55239,7 @@ self: { stm tagged tasty temporary text transformers transformers-base ]; testDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/bennofs/hcltest/"; description = "A testing library for command line applications"; license = stdenv.lib.licenses.bsd3; @@ -54928,6 +55257,7 @@ self: { base bytestring containers directory mtl old-locale pretty process random stm time ]; + jailbreak = true; homepage = "http://github.com/tbh/hcron"; description = "A simple job scheduler, which just runs some IO action at a given time"; license = stdenv.lib.licenses.bsd3; @@ -54999,6 +55329,7 @@ self: { version = "0.0.1.1"; sha256 = "034zsmqgavh4ns69f6j4a1afyqbd1b7h35macmf20vzxj0j0bawj"; buildDepends = [ attoparsec base containers HDBC text ]; + jailbreak = true; homepage = "http://bitbucket.com/dpwiz/hdbc-postgresql-hstore"; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = stdenv.lib.licenses.mit; @@ -55085,6 +55416,7 @@ self: { quickcheck-instances safe test-framework test-framework-hunit test-framework-quickcheck2 text time uuid ]; + jailbreak = true; homepage = "https://github.com/s9gf4ult/hdbi-postgresql"; description = "PostgreSQL driver for hdbi"; license = stdenv.lib.licenses.bsd3; @@ -55125,6 +55457,7 @@ self: { quickcheck-assertions quickcheck-instances stm test-framework test-framework-hunit test-framework-quickcheck2 text time uuid ]; + jailbreak = true; homepage = "https://github.com/s9gf4ult/hdbi-tests"; description = "test suite for testing HDBI"; license = stdenv.lib.licenses.bsd3; @@ -55200,7 +55533,6 @@ self: { version = "0.2"; sha256 = "0qr8d4qbvkncv4im0iwwdr9khvkyy4ky8wnwxri1jqhylcq8vdks"; buildDepends = [ base bytestring containers QuickCheck ]; - configureFlags = [ "-f-external-udis86" ]; homepage = "https://github.com/kmcallister/hdis86"; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = stdenv.lib.licenses.bsd3; @@ -55214,6 +55546,7 @@ self: { sha256 = "0z6kpsk57gjqwpvs5v6ikiirnyyg26mbrxx827bb1v27lhsy7py0"; buildDepends = [ base bytestring ]; extraLibraries = [ markdown ]; + jailbreak = true; homepage = "https://github.com/jamwt/hdiscount"; description = "Haskell bindings to the Discount markdown library"; license = stdenv.lib.licenses.bsd3; @@ -55271,6 +55604,7 @@ self: { network-info network-multicast network-transport network-transport-tcp random template-haskell time ]; + jailbreak = true; homepage = "https://github.com/PatrickMaier/HdpH"; description = "Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; @@ -55287,6 +55621,7 @@ self: { buildDepends = [ array base bytestring cereal containers deepseq template-haskell ]; + jailbreak = true; homepage = "https://github.com/PatrickMaier/HdpH"; description = "Explicit closures in Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; @@ -55301,7 +55636,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base QuickCheck ]; - configureFlags = [ "-f-test" ]; description = "Heaps in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -55329,7 +55663,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base QuickCheck ]; - configureFlags = [ "-f-test" ]; homepage = "http://wiki.cs.pdx.edu/bartforge/heapsort"; description = "Heapsort of MArrays as a demo of imperative programming"; license = stdenv.lib.licenses.bsd3; @@ -55414,6 +55747,7 @@ self: { version = "0.1.0.0"; sha256 = "1dq7rpqg35caqj664q2ndqgd59mq7cfjahkaka5mlk1k5yjvz7av"; buildDepends = [ base bytestring either hedis mtl ]; + jailbreak = true; homepage = "http://github.com/sanetracker/hedis-simple"; description = "A simplified API for hedis"; license = stdenv.lib.licenses.mit; @@ -55432,6 +55766,7 @@ self: { base bytestring hedis HUnit lifted-base test-framework test-framework-hunit transformers ]; + jailbreak = true; homepage = "https://github.com/akaspin/hedis-tags"; description = "Tags for hedis"; license = stdenv.lib.licenses.bsd3; @@ -55454,7 +55789,7 @@ self: { base bytestring containers hspec HUnit QuickCheck template-haskell text time vector ]; - configureFlags = [ "-f-developer" ]; + jailbreak = true; homepage = "https://bitbucket.org/dpwiz/hedn"; description = "EDN parsing and encoding"; license = stdenv.lib.licenses.bsd3; @@ -55527,7 +55862,6 @@ self: { extraLibraries = [ newrelic-collector-client newrelic-common newrelic-transaction ]; - configureFlags = [ "-fdummy" "-f-example" ]; homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for Haskell"; license = stdenv.lib.licenses.mit; @@ -55547,7 +55881,6 @@ self: { buildDepends = [ base bytestring data-default-class helics vault wai ]; - configureFlags = [ "-f-example" ]; homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for wai"; license = stdenv.lib.licenses.mit; @@ -55660,7 +55993,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-threaded" ]; homepage = "http://www.haskell.org/hello/"; description = "Hello World, an example package"; license = stdenv.lib.licenses.bsd3; @@ -55684,6 +56016,7 @@ self: { base cairo containers elerea HUnit sdl2 test-framework test-framework-hunit test-framework-quickcheck2 time ]; + jailbreak = true; homepage = "http://github.com/switchface/helm"; description = "A functionally reactive game engine"; license = stdenv.lib.licenses.mit; @@ -55754,7 +56087,7 @@ self: { transformers vector vector-fftw websockets xhb ]; testDepends = [ base bytestring hspec HUnit vector ]; - configureFlags = [ "-fmouse" "-fheadmap" "-ffft" ]; + jailbreak = true; homepage = "https://github.com/nh2/haskell-hemokit"; description = "Haskell port of the Emokit EEG project"; license = stdenv.lib.licenses.mit; @@ -55774,6 +56107,7 @@ self: { transformers uuid ]; extraLibraries = [ xenctrl ]; + jailbreak = true; homepage = "https://github.com/selectel/hen"; description = "Haskell bindings to Xen hypervisor interface"; license = stdenv.lib.licenses.mit; @@ -55985,6 +56319,7 @@ self: { buildDepends = [ base filepath haskell-src HDBC HDBC-postgresql hssqlppp parsec ]; + jailbreak = true; description = "Haskell's embedded SQL"; license = "GPL"; }) {}; @@ -56088,6 +56423,7 @@ self: { version = "0.2.0.0"; sha256 = "1asv5vs694mcifffvm5a4gsplpz7frk3p3zr9lqqv1f172ql9lql"; buildDepends = [ base binary bytestring filepath ]; + jailbreak = true; homepage = "http://www.github.com/hansroland/hexif"; description = "Reading Exif data form a JPEG file with Haskell"; license = stdenv.lib.licenses.bsd3; @@ -56123,6 +56459,7 @@ self: { base bytestring containers extensible-exceptions hexpat iteratee List parallel transformers ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Hexpat/"; description = "Chunked XML parsing using iteratees"; license = stdenv.lib.licenses.bsd3; @@ -56139,6 +56476,7 @@ self: { buildDepends = [ base bytestring deepseq hexpat hexpat-tagsoup lens ]; + jailbreak = true; description = "Lenses for Hexpat"; license = stdenv.lib.licenses.mit; }) {}; @@ -56196,6 +56534,7 @@ self: { version = "0.0.0.0"; sha256 = "0wpmbzxdl63r2p398101ywzfs7b4p4x8ds4zzqbhvhs2r0fsg5wv"; buildDepends = [ base data-ref either mtl parsec transformers ]; + jailbreak = true; homepage = "https://github.com/Zankoku-Okuno/hexpr/"; description = "A framework for symbolic, homoiconic languages"; license = stdenv.lib.licenses.bsd3; @@ -56227,7 +56566,6 @@ self: { buildDepends = [ base ]; extraLibraries = [ doublefann ]; pkgconfigDepends = [ fann ]; - configureFlags = [ "-f-test" ]; description = "Haskell binding to the FANN library"; license = stdenv.lib.licenses.bsd3; }) { doublefann = null; fann = null;}; @@ -56246,6 +56584,7 @@ self: { base bytestring haskeline iteratee MissingH MonadCatchIO-transformers network transformers ]; + jailbreak = true; description = "Flash debugger"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56259,6 +56598,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base eprocess mtl wx wxcore ]; + jailbreak = true; homepage = "http://github.com/elbrujohalcon/hfiar"; description = "Four in a Row in Haskell!!"; license = stdenv.lib.licenses.bsd3; @@ -56289,7 +56629,7 @@ self: { buildDepends = [ base directory gloss haskeline hmatrix HTTP MissingH transformers ]; - configureFlags = [ "-frepl" ]; + jailbreak = true; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56301,6 +56641,7 @@ self: { version = "1.0.2"; sha256 = "04qwmjxm06akvpakc5imcx0ls9zlsz74s4r9p7xzj0q5fv20z09l"; buildDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/nornagon/hfov"; description = "Field-of-view calculation for low-resolution 2D raster grids"; license = stdenv.lib.licenses.bsd3; @@ -56403,6 +56744,7 @@ self: { base directory HUnit process template-haskell temporary test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/copton/hgdbmi"; description = "GDB Machine Interface: program-driven control of GDB"; license = stdenv.lib.licenses.bsd3; @@ -56417,7 +56759,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory filepath hylolib mtl random ]; - configureFlags = [ "-f-static" ]; homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php"; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; @@ -56480,6 +56821,7 @@ self: { aeson attoparsec base base64-bytestring bytestring case-insensitive cmdargs directory http-enumerator text ]; + jailbreak = true; homepage = "https://github.com/noteed/hgithub"; description = "Haskell bindings to the GitHub API"; license = stdenv.lib.licenses.bsd3; @@ -56494,6 +56836,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base HGL HTam random utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/hgl-example/"; description = "Various animations generated using HGL"; license = "GPL"; @@ -56513,7 +56856,6 @@ self: { buildDepends = [ base containers directory filepath mtl parsec wl-pprint ]; - configureFlags = [ "-f-test" ]; homepage = "http://github.com/polux/hgom"; description = "An haskell port of the java version of gom"; license = "GPL"; @@ -56526,6 +56868,7 @@ self: { version = "0.1.0.0"; sha256 = "0j6ybi8f5csa9rpbpy8dc9p6l6vf2qh2zk589a9nqj2phllz7mwf"; buildDepends = [ base bytestring network ]; + jailbreak = true; description = "Gopher server"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56538,6 +56881,7 @@ self: { sha256 = "1n2pi90yr9dmxp5iirp6hm8inliwpl3pnhgx7xnn4zl0z21bjgb5"; buildDepends = [ base ]; extraLibraries = [ harp ]; + jailbreak = true; homepage = "http://www.harphttp.org"; description = "Binding to libharp"; license = stdenv.lib.licenses.bsd3; @@ -56597,7 +56941,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base bytestring mtl network ]; - configureFlags = [ "-f-test" ]; description = "haskell robot for IChat protocol"; license = "GPL"; }) {}; @@ -56652,6 +56995,7 @@ self: { base diagrams-cairo diagrams-lib hierarchical-clustering hspec HUnit ]; + jailbreak = true; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56758,7 +57102,6 @@ self: { buildDepends = [ base blaze-html bytestring filepath mtl pcre-light text ]; - configureFlags = [ "-f-executable" ]; description = "source code highlighting"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56780,7 +57123,6 @@ self: { testDepends = [ base blaze-html containers Diff directory filepath process ]; - configureFlags = [ "-f-pcre-light" "-f-executable" "-fsplitbase" ]; prePatch = "sed -i -e 's|regex-pcre-builtin >= .*|regex-pcre|' highlighting-kate.cabal"; homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; @@ -56801,6 +57143,7 @@ self: { array base bytestring directory filepath optparse-applicative text transformers ]; + jailbreak = true; homepage = "http://www.bubblycloud.com/hills/"; description = "Generate STL models from SRTM elevation data"; license = stdenv.lib.licenses.bsd3; @@ -56820,6 +57163,7 @@ self: { base directory glib gtk haskell98 mozembed old-time parallel process unix ]; + jailbreak = true; homepage = "http://www.haskell.org/himerge"; description = "Haskell Graphical User Interface for Emerge"; license = "GPL"; @@ -56861,6 +57205,7 @@ self: { NetSNMP network old-time protobuf regex-posix stm text type-level unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/pyr/himpy"; description = "multithreaded snmp poller for riemann"; license = stdenv.lib.licenses.mit; @@ -56966,7 +57311,6 @@ self: { version = "0.3.7"; sha256 = "0i7mxg9ilzcgijda6j3ya5xnpbxa3wm9xswdfif95jim9w82sw0b"; buildDepends = [ base containers directory unix ]; - configureFlags = [ "-fsplit-base" ]; homepage = "https://github.com/kolmodin/hinotify.git"; description = "Haskell binding to inotify"; license = stdenv.lib.licenses.bsd3; @@ -56988,6 +57332,7 @@ self: { base bifunctors QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/joneshf/hinquire"; description = "Generate armet style query strings"; license = stdenv.lib.licenses.mit; @@ -57038,6 +57383,7 @@ self: { version = "1.4.0"; sha256 = "0iirk76n9j4iwll44gs4spnssv2kkxrw4ypp228gap5h4pyimvx5"; buildDepends = [ base eprocess exceptions hint monad-loops mtl ]; + jailbreak = true; description = "A server process that runs hint"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -57132,7 +57478,7 @@ self: { numeric-extras random statistics text text-format vector vector-space ]; - configureFlags = [ "-f-pl3" ]; + jailbreak = true; homepage = "https://people.ksp.sk/~ivan/hirt"; description = "Calculates IRT 2PL and 3PL models"; license = stdenv.lib.licenses.bsd3; @@ -57149,6 +57495,7 @@ self: { buildDepends = [ base bytestring conduit http-conduit http-types text time ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/hissmetrics"; description = "Unofficial API bindings to KISSmetrics"; license = stdenv.lib.licenses.bsd3; @@ -57170,6 +57517,7 @@ self: { hist-pl-fusion hist-pl-lexicon hist-pl-lmf hist-pl-transliter morfeusz pipes polimorf text ]; + jailbreak = true; homepage = "https://github.com/kawu/hist-pl/tree/master/umbrella"; description = "Umbrella package for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; @@ -57217,6 +57565,7 @@ self: { base binary containers dawg directory filepath hist-pl-dawg hist-pl-types pipes text transformers ]; + jailbreak = true; homepage = "https://github.com/kawu/hist-pl/tree/master/lexicon"; description = "A binary representation of the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; @@ -57229,6 +57578,7 @@ self: { version = "0.1.0"; sha256 = "146vz15fig8k1wcvcw7fg64abxvg1nyarvhigz9jkzf5yngkzwvm"; buildDepends = [ base hist-pl-types polysoup text ]; + jailbreak = true; homepage = "https://github.com/kawu/hist-pl/tree/master/lmf"; description = "LMF parsing for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; @@ -57311,6 +57661,7 @@ self: { buildDepends = [ base containers directory filepath process regex-compat regex-posix ]; + jailbreak = true; description = "Extract the interesting bits from shell history"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -57335,7 +57686,6 @@ self: { testDepends = [ base bytedump bytestring hourglass tasty tasty-quickcheck ]; - configureFlags = [ "-f-debug" "-f-executable" ]; homepage = "http://github.com/vincenthz/hit"; description = "Git operations in haskell"; license = stdenv.lib.licenses.bsd3; @@ -57434,7 +57784,6 @@ self: { frquotes mtl process template-haskell transformers uniplate utf8-string ]; - configureFlags = [ "-f-build_doc" ]; description = "A library to build valid LaTeX files"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -57471,6 +57820,7 @@ self: { buildDepends = [ array base bytestring bytestring-csv containers haskell98 parallel ]; + jailbreak = true; homepage = "http://membres-liglab.imag.fr/termier/HLCM/hlcm.html"; description = "Fast algorithm for mining closed frequent itemsets"; license = stdenv.lib.licenses.bsd3; @@ -57503,7 +57853,6 @@ self: { tabular test-framework test-framework-hunit text time transformers wizards ]; - configureFlags = [ "-fthreaded" ]; homepage = "http://hledger.org"; description = "The main command-line interface for the hledger accounting tool"; license = "GPL"; @@ -57523,6 +57872,7 @@ self: { base Chart cmdargs colour containers hledger hledger-lib HUnit safe time ]; + jailbreak = true; homepage = "http://hledger.org"; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; @@ -57537,6 +57887,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base hledger-lib time ]; + jailbreak = true; homepage = "https://github.com/gebner/hledger-diff"; description = "Compares the transactions in two ledger files"; license = stdenv.lib.licenses.gpl3; @@ -57565,6 +57916,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Cabal hledger-lib statistics time ]; + jailbreak = true; description = "computes the internal rate of return of an investment"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -57591,7 +57943,6 @@ self: { regex-tdfa regexpr safe split test-framework test-framework-hunit time transformers ]; - configureFlags = [ "-f-double" ]; homepage = "http://hledger.org"; description = "Core data types, parsers and utilities for the hledger accounting tool"; license = "GPL"; @@ -57610,6 +57961,7 @@ self: { buildDepends = [ base cmdargs hledger hledger-lib HUnit safe time vty ]; + jailbreak = true; homepage = "http://hledger.org"; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; @@ -57639,7 +57991,6 @@ self: { yesod-core yesod-static ]; testDepends = [ base hspec yesod yesod-test ]; - configureFlags = [ "-f-library-only" "-f-dev" "-fthreaded" ]; homepage = "http://hledger.org"; description = "A web interface for the hledger accounting tool"; license = "GPL"; @@ -57699,7 +58050,6 @@ self: { ansi-terminal base cmdargs containers cpphs directory extra filepath haskell-src-exts hscolour process transformers uniplate ]; - configureFlags = [ "-fgpl" "-fthreaded" ]; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -57783,7 +58133,6 @@ self: { version = "3000.0.1"; sha256 = "0p6f1jd1b01dvzffiac17f8z0l403f54vrph8k9b3549lpjfh452"; buildDepends = [ base containers mtl network parsec xhtml ]; - configureFlags = [ "-fsplit-base" ]; description = "Simple wikitext-like markup format implementation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -57801,7 +58150,6 @@ self: { vector ]; extraLibraries = [ blas liblapack ]; - configureFlags = [ "-f-openblas" ]; homepage = "https://github.com/albertoruiz/hmatrix"; description = "Numeric Linear Algebra"; license = stdenv.lib.licenses.bsd3; @@ -57815,7 +58163,7 @@ self: { sha256 = "05jgm3hnlylnfhavcicjbhbxq929whm6mapggfwbxkzajhh0paaj"; buildDepends = [ base hmatrix transformers ]; extraLibraries = [ lapack ]; - configureFlags = [ "-f-buildexamples" ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; @@ -57867,7 +58215,6 @@ self: { version = "0.2"; sha256 = "1xwl2qgji2ib0gml9hqljzwd4wrqfjpvnzm3iq2g7kcwwfg1q0dm"; buildDepends = [ base binary hmatrix storable-complex ]; - configureFlags = [ "-f-mkl" ]; homepage = "http://code.haskell.org/hmatrix-gsl-stats"; description = "GSL Statistics interface"; license = stdenv.lib.licenses.bsd3; @@ -57894,7 +58241,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base hmatrix ]; - configureFlags = [ "-f-test" ]; homepage = "http://github.com/alanfalloon/hmatrix-nipals"; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = stdenv.lib.licenses.lgpl21; @@ -57908,6 +58254,7 @@ self: { sha256 = "1r03svlxzk4r4fw5brrixjf3dlfdvr2b7f80075ynm9ajzzpfirr"; buildDepends = [ base hmatrix vector ]; extraLibraries = [ QuadProgpp ]; + jailbreak = true; description = "Bindings to the QuadProg++ quadratic programming library"; license = stdenv.lib.licenses.bsd3; }) { QuadProgpp = null;}; @@ -57932,7 +58279,6 @@ self: { sha256 = "1ziqzbfrk7xyah5n0cys1ccnmj2z91wxdamanv3y5v717zhdrqix"; buildDepends = [ base hmatrix hmatrix-gsl ]; extraLibraries = [ gsl ]; - configureFlags = [ "-f-safe-cheap" ]; homepage = "https://github.com/albertoruiz/hmatrix"; description = "Interface to GSL special functions"; license = "GPL"; @@ -57949,6 +58295,7 @@ self: { buildDepends = [ array base haskell-src-meta hmatrix parsec template-haskell tfp ]; + jailbreak = true; homepage = "http://code.haskell.org/hmatrix-static/"; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; @@ -57979,6 +58326,7 @@ self: { buildDepends = [ base haskell-src-exts haskell-src-meta hmatrix template-haskell ]; + jailbreak = true; homepage = "http://github.com/reinerp/hmatrix-syntax"; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = stdenv.lib.licenses.gpl3; @@ -57996,7 +58344,6 @@ self: { base hmatrix hmatrix-gsl HUnit QuickCheck random ]; testDepends = [ base HUnit QuickCheck random ]; - configureFlags = [ "-fgsl" ]; homepage = "https://github.com/albertoruiz/hmatrix"; description = "Tests for hmatrix"; license = stdenv.lib.licenses.bsd3; @@ -58032,6 +58379,7 @@ self: { array base bytestring bytestring-lexing delimited-text gnuplot hmatrix hmeap hosc hsc3 parsec ]; + jailbreak = true; homepage = "http://slavepianos.org/rd/?t=hmeap-utils"; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; @@ -58059,7 +58407,6 @@ self: { version = "0.2.1.0"; sha256 = "143w042krxayn2xbn3ag3mkfd9j4075adrjqs651hh3mbr8s9725"; buildDepends = [ base stm ]; - configureFlags = [ "-f-nonoteoff" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Binding to the OS level MIDI services"; license = stdenv.lib.licenses.bsd3; @@ -58079,6 +58426,7 @@ self: { base bytestring containers directory filepath mtl parsec pcre-light process unix ]; + jailbreak = true; homepage = "http://www.github.com/mboes/hmk"; description = "A make alternative based on Plan9's mk"; license = "GPL"; @@ -58116,7 +58464,6 @@ self: { old-time pcre-light process unix zlib ]; extraLibraries = [ curses ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; @@ -58130,7 +58477,6 @@ self: { sha256 = "00gqrmfwg7hk21iyfbma8h4ahpxgj21wi9fcxjdms506ahk7rwf4"; buildDepends = [ base integer-gmp ]; extraLibraries = [ mpfr ]; - configureFlags = [ "-f-use-integer-simple" ]; homepage = "http://code.google.com/p/hmpfr/"; description = "Haskell binding to the MPFR library"; license = stdenv.lib.licenses.bsd3; @@ -58187,6 +58533,7 @@ self: { base containers haskeline mtl parsec QuickCheck regex-compat syb text ]; + jailbreak = true; description = "Interpreter for the MUMPS langugae"; license = "GPL"; }) {}; @@ -58278,7 +58625,6 @@ self: { buildDepends = [ aeson base bytestring http-conduit http-types text ]; - configureFlags = [ "-f-test" ]; homepage = "https://github.com/freizl/hoauth2"; description = "hoauth2"; license = stdenv.lib.licenses.bsd3; @@ -58303,6 +58649,7 @@ self: { testDepends = [ base containers gtk3 gtksourceview3 hspec mtl text ]; + jailbreak = true; homepage = "http://svalaskevicius.github.io/hob/"; description = "A source code editor aiming for the convenience of use"; license = stdenv.lib.licenses.gpl3; @@ -58339,6 +58686,7 @@ self: { base deepseq haskell-src-exts haskell-src-meta mtl syb tagged template-haskell th-expand-syns transformers type-equality ]; + jailbreak = true; description = "A library for canonically representing terms with binding"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -58352,6 +58700,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cmdargs hint mtl ]; + jailbreak = true; homepage = "http://github.com/tanakh/hoe"; description = "Haskell One-liner Evaluator"; license = stdenv.lib.licenses.bsd3; @@ -58364,6 +58713,7 @@ self: { version = "1.0"; sha256 = "1xlsddrdv56n7ww7a377jwz43xkkckl5zygghwxs9k88wxzskvvd"; buildDepends = [ base mtl star-to-star template-haskell ]; + jailbreak = true; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; }) {}; @@ -58381,6 +58731,7 @@ self: { buildDepends = [ base cmdargs filepath irc network old-locale time unix ]; + jailbreak = true; description = "Simple IRC logger bot"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -58398,7 +58749,6 @@ self: { buildDepends = [ array base bytestring containers HUnit mtl old-locale random time ]; - configureFlags = [ "-f-http" "-fsplitbase" ]; homepage = "http://www.kfish.org/software/hogg/"; description = "Library and tools to manipulate the Ogg container format"; license = stdenv.lib.licenses.bsd3; @@ -58445,6 +58795,7 @@ self: { isExecutable = true; buildDepends = [ base X11 ]; extraLibraries = [ OIS ]; + jailbreak = true; description = "OIS bindings"; license = stdenv.lib.licenses.bsd3; }) { OIS = null;}; @@ -58468,6 +58819,7 @@ self: { version = "0.1.0.0"; sha256 = "1j2ql6izsd85skd6l9j1qfg7pj5rf513096s9bkvqip9bb4ibr4r"; buildDepends = [ base random safe ]; + jailbreak = true; description = "An engine for Texas hold'em Poker"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -58528,7 +58880,6 @@ self: { version = "0.1"; sha256 = "1wm15bdz02sjgpz2n266xd50q3p6mncnv8mhimky6ps1kmzb5r6c"; buildDepends = [ base containers mtl QuickCheck ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www-users.cs.york.ac.uk/~ndm/homeomorphic/"; description = "Homeomorphic Embedding Test"; license = stdenv.lib.licenses.bsd3; @@ -58552,6 +58903,7 @@ self: { version = "0.0.5"; sha256 = "0gnwpzs6kwhf2wm0nqcgwqa1pp7xwbnqh337pr62w40i76g252v4"; buildDepends = [ array base DirectSound haskell98 hommage ]; + jailbreak = true; homepage = "substitut-fuer-feinmotorik/projects/haskellommage"; description = "DirectSound extension (Windows) for the Hommage sound library"; license = "GPL"; @@ -58640,6 +58992,7 @@ self: { buildDepends = [ array astar base containers hfov monad-loops mtl ncurses random ]; + jailbreak = true; description = "A small, toy roguelike"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -58857,6 +59210,7 @@ self: { base bytestring Cabal containers directory errors filepath hoogle optparse-applicative process temporary transformers ]; + jailbreak = true; homepage = "http://github.com/bgamari/hoogle-index"; description = "Easily generate Hoogle indices for installed packages"; license = stdenv.lib.licenses.bsd3; @@ -58905,6 +59259,7 @@ self: { network-multicast old-locale old-time process regex-compat snap-core snap-server text time transformers unix xml ]; + jailbreak = true; homepage = "https://bitbucket.org/pvdbrand/hoovie"; description = "Haskell Media Server"; license = stdenv.lib.licenses.bsd3; @@ -58922,6 +59277,7 @@ self: { testDepends = [ base QuickCheck ]; buildTools = [ c2hs ]; pkgconfigDepends = [ opencc ]; + jailbreak = true; homepage = "https://github.com/MnO2/hopencc"; description = "Haskell binding to libopencc"; license = stdenv.lib.licenses.bsd3; @@ -58942,7 +59298,6 @@ self: { ]; buildTools = [ c2hs ]; extraLibraries = [ OpenCL ]; - configureFlags = [ "-f-debug" ]; homepage = "https://github.com/merijn/hopencl"; description = "Haskell bindings for OpenCL"; license = stdenv.lib.licenses.bsd3; @@ -59045,6 +59400,7 @@ self: { sha256 = "1rx5kvacnzm3qmc0z8n9fhrcrac059akzh9ccq0qswl7w9m4iby3"; buildDepends = [ base bytestring zlib ]; testDepends = [ base bytestring hspec QuickCheck zlib ]; + jailbreak = true; homepage = "https://github.com/ananthakumaran/hopfli"; description = "zlib compatible compression using Zopfli Compression Algorithm"; license = stdenv.lib.licenses.asl20; @@ -59086,6 +59442,7 @@ self: { base bytestring QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://rd.slavepianos.org/t/hosc"; description = "Haskell Open Sound Control"; license = "GPL"; @@ -59123,6 +59480,7 @@ self: { base bytestring cgi haskeline hosc hosc-json hsc3 json text transformers utf8-string websockets www-minus ]; + jailbreak = true; homepage = "http://rd.slavepianos.org/?t=hosc-utils"; description = "Haskell Open Sound Control Utilities"; license = "GPL"; @@ -59164,6 +59522,7 @@ self: { buildDepends = [ attoparsec base bytestring data-default dns iproute network ]; + jailbreak = true; homepage = "https://github.com/yihuang/hosts-server"; description = "An dns server which is extremely easy to config"; license = stdenv.lib.licenses.gpl3; @@ -59194,6 +59553,7 @@ self: { version = "0.1.9.13"; sha256 = "1c614gvwypfqaj4gqsdimqq40i34w393vikq5hhy3d4qll2qp8hv"; buildDepends = [ base plugins ]; + jailbreak = true; homepage = "https://github.com/mikeplus64/hotswap"; description = "Simple code hotswapping"; license = stdenv.lib.licenses.bsd3; @@ -59250,7 +59610,6 @@ self: { network OpenGL parseargs process ]; extraLibraries = [ freeglut mesa ]; - configureFlags = [ "-f-serveronly" ]; homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; license = stdenv.lib.licenses.bsd3; @@ -59359,6 +59718,7 @@ self: { filepath FindBin haskell-src-exts hint hint-server monad-loops mtl process time wx wxcore ]; + jailbreak = true; homepage = "http://haskell.hpage.com"; description = "A scrapbook for Haskell developers"; license = stdenv.lib.licenses.bsd3; @@ -59399,6 +59759,7 @@ self: { old-locale postgresql-simple process safe snap-app snap-core snap-server text time transformers utf8-string ]; + jailbreak = true; homepage = "http://hpaste.org/"; description = "Haskell paste web site"; license = "GPL"; @@ -59419,6 +59780,7 @@ self: { base bytestring directory filepath http-conduit http-types lifted-base network optparse-applicative process safe utf8-string ]; + jailbreak = true; homepage = "http://github.com/parcs/hpasteit"; description = "A command-line client for hpaste.org"; license = stdenv.lib.licenses.bsd3; @@ -59497,7 +59859,6 @@ self: { base containers data-default haste-compiler haste-perch monads-tf transformers ]; - configureFlags = [ "-f-haste-inst" ]; homepage = "https://github.com/agocorona/hplayground"; description = "monadic, reactive Formlets running in the Web browser"; license = stdenv.lib.licenses.bsd3; @@ -59531,6 +59892,7 @@ self: { base ConfigFile directory filepath HaXml HDBC HDBC-sqlite3 hslogger MissingH mtl network old-time parsec process unix ]; + jailbreak = true; homepage = "http://software.complete.org/hpodder"; description = "Podcast Aggregator (downloader)"; license = "GPL"; @@ -59555,7 +59917,7 @@ self: { vector ]; extraLibraries = [ postgresql ]; - configureFlags = [ "-f-tests" ]; + jailbreak = true; description = "Haskell bindings to libpqtypes"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) postgresql;}; @@ -59577,7 +59939,6 @@ self: { protocol-buffers-descriptor utf8-string ]; buildTools = [ alex ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/protocol-buffers/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -59601,7 +59962,7 @@ self: { protocol-buffers-fork utf8-string ]; buildTools = [ alex ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -59616,7 +59977,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base directory filepath hcg-minus random ]; - configureFlags = [ "-f-build-exec" ]; homepage = "http://rd.slavepianos.org/?t=hps"; description = "Haskell Postscript"; license = "GPL"; @@ -59631,6 +59991,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base cairo gtk hps random ]; + jailbreak = true; homepage = "http://slavepianos.org/rd/?t=hps-cairo"; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; @@ -59643,6 +60004,7 @@ self: { version = "0.1.0.0"; sha256 = "0w1yyrv4k7fi016084j4k1lh6jgxg5502r83zszr9cjc6rraj8fc"; buildDepends = [ base vector ]; + jailbreak = true; homepage = "http://stathacking.com/hps-kmeans"; description = "A nice implementation of the k-Means algorithm"; license = stdenv.lib.licenses.gpl3; @@ -59669,6 +60031,7 @@ self: { version = "0.1.3"; sha256 = "1hb9yslb94ynzlphsp0i4f547zqxblrj49hqy4d7zivdqp38lqla"; buildDepends = [ aeson base bytestring process process-extras ]; + jailbreak = true; homepage = "https://github.com/davidlazar/hpygments"; description = "Highlight source code using Pygments"; license = stdenv.lib.licenses.mit; @@ -59718,7 +60081,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-foptimize" ]; + jailbreak = true; homepage = "http://github.com/paulrzcz/hquantlib.git"; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; @@ -59763,6 +60126,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers ]; + jailbreak = true; homepage = "http://github.com/Raynes/Hricket"; description = "A Cricket scoring application"; license = stdenv.lib.licenses.bsd3; @@ -59895,7 +60259,6 @@ self: { sha256 = "1l2h1zv63c25k80gljnan3vg2r25a4b7byf5yryj3cjwa9xcg457"; buildDepends = [ base ghc-prim ]; extraLibraries = [ ole32 oleaut32 ]; - configureFlags = [ "-f-old-base" ]; description = "Pragmatic .NET interop for Haskell"; license = stdenv.lib.licenses.bsd3; }) { ole32 = null; oleaut32 = null;}; @@ -59911,6 +60274,7 @@ self: { buildDepends = [ base bytestring containers mtl text time xml-conduit zip-archive ]; + jailbreak = true; description = "HS-Excelx provides basic read-only access to Excel 2007 and 2010 documents in XLSX format"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -59922,6 +60286,7 @@ self: { version = "0.3.4"; sha256 = "0j52drd3pb6ssgngfqxdsvvjjnx11nsmxwjsin6cmbv0nifpyq51"; buildDepends = [ base bytestring haskell98 ]; + jailbreak = true; homepage = "http://patch-tag.com/r/VasylPasternak/hs-ffmpeg"; description = "Bindings to FFMPEG library"; license = stdenv.lib.licenses.bsd3; @@ -59981,6 +60346,7 @@ self: { buildDepends = [ base containers directory filepath parsec process ]; + jailbreak = true; description = "Haskell wrapper around the GIZA++ toolkit"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -60037,6 +60403,7 @@ self: { diagrams-svg HUnit mtl parsec parsec-numbers QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://deepakjois.github.com/hs-logo"; description = "Logo interpreter written in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -60088,7 +60455,6 @@ self: { buildDepends = [ array base directory glib gtk MonadPrompt mtl random ]; - configureFlags = [ "-fsplit-base" ]; description = "Programmer's Mine Sweeper in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -60112,7 +60478,6 @@ self: { version = "0.2.1.0"; sha256 = "09v2kp643asl3zpv8rbb8a7zv0h3bn5l4gxz44d71kly9qr3jkhh"; buildDepends = [ base data-default-class text ]; - configureFlags = [ "-f-pedantic" ]; homepage = "https://github.com/trskop/hs-pkg-config"; description = "Create pkg-config configuration files"; license = stdenv.lib.licenses.bsd3; @@ -60134,6 +60499,7 @@ self: { system-filepath text time transformers unordered-containers uuid zip-archive ]; + jailbreak = true; homepage = "https://github.com/tazjin/hs-pkpass"; description = "A library for Passbook pass creation & signing"; license = stdenv.lib.licenses.bsd3; @@ -60155,6 +60521,7 @@ self: { testDepends = [ base containers hspec tasty tasty-hunit xml-conduit ]; + jailbreak = true; homepage = "https://github.com/codygman/hs-scrape/"; description = "Simple and easy web scraping and automation in Haskell"; license = stdenv.lib.licenses.mit; @@ -60216,7 +60583,7 @@ self: { base doctest Glob hlint hspec HUnit process QuickCheck random regex-compat ]; - configureFlags = [ "-f-documentation" ]; + jailbreak = true; homepage = "https://github.com/tfausak/hs2048"; description = "A 2048 clone in Haskell"; license = stdenv.lib.licenses.mit; @@ -60253,6 +60620,7 @@ self: { buildDepends = [ base directory haskell-src haskell-src-exts haskell98 split ]; + jailbreak = true; homepage = "http://www.github.com/finnsson/hs2graphviz"; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; @@ -60282,6 +60650,7 @@ self: { buildDepends = [ base bindings-sqlite3 bytestring mtl utf8-string ]; + jailbreak = true; description = "Sqlite3 bindings"; license = "LGPL"; }) {}; @@ -60294,6 +60663,7 @@ self: { sha256 = "0zxmlyckp9c0i5s8vi62d3qvnilh8kl093ckqr7dchgmki4az7rp"; buildDepends = [ array base bytestring dlist mtl ]; extraLibraries = [ xenctrl ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/HsXenCtrl"; description = "FFI bindings to the Xen Control library"; license = stdenv.lib.licenses.bsd3; @@ -60365,7 +60735,6 @@ self: { base bytestring containers directory HUnit test-framework test-framework-hunit text time ]; - configureFlags = [ "-f-hydra" ]; description = "Launch and gather data from Haskell and non-Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -60384,6 +60753,7 @@ self: { hsbencher HTTP http-conduit http-types json mtl network resourcet time ]; + jailbreak = true; description = "Backend for uploading benchmark data to CodeSpeed"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -60417,6 +60787,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers directory process ]; + jailbreak = true; description = "A preprocessor that helps with writing Haskell bindings to C code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -60460,6 +60831,7 @@ self: { version = "0.14"; sha256 = "1f62mfjssky7igbp1nx2zf1azbih76m65xydnf5akp8pim7nzmis"; buildDepends = [ base cairo gtk hosc hsc3 split ]; + jailbreak = true; homepage = "http://rd.slavepianos.org/?t=hsc3-cairo"; description = "haskell supercollider cairo drawing"; license = "GPL"; @@ -60544,7 +60916,7 @@ self: { hsc3-lang hsc3-sf hsc3-unsafe hsc3-utils hsharc MonadRandom primes process random random-shuffle sc3-rdu she split ]; - configureFlags = [ "-f-build-exec" ]; + jailbreak = true; homepage = "http://rd.slavepianos.org/t/hsc3-graphs"; description = "Haskell SuperCollider Graphs"; license = "GPL"; @@ -60621,7 +60993,6 @@ self: { base bytestring containers data-default directory filepath hosc hsc3 process time time-compat transformers ]; - configureFlags = [ "-f-build-examples" ]; homepage = "https://github.com/kaoskorobase/hsc3-process"; description = "Create and control scsynth processes"; license = "GPL"; @@ -60634,6 +61005,7 @@ self: { version = "0.14.1"; sha256 = "0m814vr41i0mm0c001vbih9i93048niljv3z8czaz32wysa8xpfl"; buildDepends = [ base hsc3 ]; + jailbreak = true; homepage = "http://rd.slavepianos.org/?t=hsc3-rec"; description = "Haskell SuperCollider Record Variants"; license = "GPL"; @@ -60678,7 +61050,6 @@ self: { base failure QuickCheck random test-framework test-framework-quickcheck2 transformers ]; - configureFlags = [ "-f-build-examples" ]; homepage = "https://github.com/kaoskorobase/hsc3-server"; description = "SuperCollider server resource management and synchronization"; license = "GPL"; @@ -60719,6 +61090,7 @@ self: { version = "0.14"; sha256 = "0kywqx7x10hqzhq8by0f62aznrnq4y3013cxkccx1r0naajpz3yj"; buildDepends = [ base hsc3 ]; + jailbreak = true; homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe"; description = "Unsafe Haskell SuperCollider"; license = "GPL"; @@ -60753,6 +61125,7 @@ self: { sha256 = "0alnwc170hd2dyq718nvfq5dsbnyp29j3z49w2w5k59pi9pnqybc"; buildDepends = [ array base time unix ]; extraLibraries = [ camwire_1394 dc1394_control raw1394 ]; + jailbreak = true; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; }) { camwire_1394 = null; dc1394_control = null; @@ -60784,6 +61157,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ aeson base bytestring ghc-prim HTTP ]; + jailbreak = true; homepage = "https://bitbucket.org/sebasmagri/hscd"; description = "Command line client and library for SoundCloud.com"; license = stdenv.lib.licenses.bsd3; @@ -60798,7 +61172,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base cairo glib gtk old-time ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://haskell.org/gtk2hs/archives/2006/01/26/cairo-eye-candy/"; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; @@ -60860,6 +61233,7 @@ self: { version = "1.4.1.2"; sha256 = "1r3njcwad8d4vn17s5g69iw3rhjz9hbhv49wkqqpndck5080fh7l"; buildDepends = [ base mtl old-locale old-time unix ]; + jailbreak = true; homepage = "https://github.com/skogsbaer/hscurses"; description = "NCurses bindings for Haskell"; license = "LGPL"; @@ -60913,6 +61287,7 @@ self: { version = "0.14"; sha256 = "1wxms6z8mpyf4l1qqxi6gvscls3mwlj5aq6g3ldashzrmb7pcimm"; buildDepends = [ base bytestring hosc ]; + jailbreak = true; homepage = "http://rd.slavepianos.org/?t=hsdif"; description = "Haskell SDIF"; license = "GPL"; @@ -61009,6 +61384,7 @@ self: { version = "1.3.2"; sha256 = "03d0pnsba7yj5x7zrg8b80kxsnqn5g40vd2i717s1dnn3bd3vz4s"; buildDepends = [ base mtl old-time parsec ]; + jailbreak = true; homepage = "http://patch-tag.com/r/hsemail-ns/home"; description = "Internet Message Parsers"; license = stdenv.lib.licenses.bsd3; @@ -61029,6 +61405,7 @@ self: { base bytestring Cabal directory file-embed filepath http-streams io-streams mtl process safe split unix ]; + jailbreak = true; homepage = "https://github.com/tmhedberg/hsenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; @@ -61062,6 +61439,7 @@ self: { testDepends = [ base binary bytestring containers hspec HUnit iconv text time ]; + jailbreak = true; homepage = "https://github.com/emmanueltouzery/hsexif"; description = "EXIF handling library in pure Haskell"; license = stdenv.lib.licenses.bsd3; @@ -61088,6 +61466,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base hdaemonize hslogger network process ]; + jailbreak = true; homepage = "https://github.com/Yuras/hsfcsh"; description = "Incremental builder for flash"; license = stdenv.lib.licenses.bsd3; @@ -61186,7 +61565,6 @@ self: { array base binary bytestring hmatrix hmatrix-gsl hmatrix-gsl-stats hstatistics mtl storable-complex ]; - configureFlags = [ "-f-mkl" ]; homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; @@ -61210,6 +61588,7 @@ self: { testDepends = [ base filepath haskell-src-exts tasty tasty-golden ]; + jailbreak = true; description = "A command line program for extending the import list of a Haskell source file"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -61253,7 +61632,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Cabal directory filepath process unix ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~arossato/hslackbuilder"; description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; license = stdenv.lib.licenses.bsd3; @@ -61298,7 +61676,6 @@ self: { buildDepends = [ base containers directory mtl network old-locale process time unix ]; - configureFlags = [ "-f-buildtests" "-fsmall_base" ]; homepage = "http://software.complete.org/hslogger"; description = "Versatile logging framework"; license = stdenv.lib.licenses.bsd3; @@ -61348,6 +61725,7 @@ self: { testDepends = [ base conduit hspec QuickCheck split stm transformers ]; + jailbreak = true; homepage = "https://github.com/bartavelle/hslogstash"; description = "A library to work with, or as, a logstash server"; license = stdenv.lib.licenses.bsd3; @@ -61362,7 +61740,7 @@ self: { buildDepends = [ base mtl ]; testDepends = [ base ]; pkgconfigDepends = [ lua ]; - configureFlags = [ "-fsystem-lua" "-f-apicheck" "-fsystem-lua" ]; + configureFlags = [ "-fsystem-lua" ]; description = "A Lua language interpreter embedding in Haskell"; license = stdenv.lib.licenses.mit; }) { inherit (pkgs) lua;}; @@ -61499,6 +61877,7 @@ self: { hostname hslogger mtl network pipes pipes-attoparsec pipes-network stm stm-chans text ]; + jailbreak = true; homepage = "https://github.com/gamelost/hsnsq"; description = "Haskell NSQ client"; license = stdenv.lib.licenses.asl20; @@ -61538,6 +61917,7 @@ self: { regex-posix test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/josercruz01/hsoptions"; description = "Haskell library that supports command-line flag processing"; license = stdenv.lib.licenses.asl20; @@ -61550,7 +61930,6 @@ self: { version = "0.10.0"; sha256 = "1ayfywgrlmzivsq6lirmgvl65x1shf8041lzw2yh245rkmd91lsf"; buildDepends = [ base mtl text ]; - configureFlags = [ "-fbase4" ]; homepage = "http://hub.darcs.net/nibro/hsp"; description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; license = stdenv.lib.licenses.bsd3; @@ -61786,6 +62165,7 @@ self: { sha256 = "197c9x25r41xmaq84xqhi0kizxi7as7jn7k9klj7pq9fmd9hcg7m"; buildDepends = [ base hspec HUnit QuickCheck ]; testDepends = [ base hspec-meta ]; + jailbreak = true; description = "An experimental DSL for testing on top of Hspec"; license = stdenv.lib.licenses.mit; }) {}; @@ -61895,6 +62275,7 @@ self: { HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core snap-extras text transformers ]; + jailbreak = true; homepage = "https://github.com/dbp/hspec-snap"; description = "A library for testing with Hspec and the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; @@ -62037,7 +62418,6 @@ self: { buildDepends = [ base binary bytestring containers extensible-exceptions network ]; - configureFlags = [ "-fsmall_base" ]; description = "A client library for the spread toolkit"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -62051,6 +62431,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base bytestring vty ]; + jailbreak = true; description = "A terminal presentation tool"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -62154,10 +62535,6 @@ self: { testDepends = [ base containers directory QuickCheck tagged text ]; buildTools = [ c2hs ]; pkgconfigDepends = [ Qt5Core Qt5Gui Qt5Qml Qt5Quick Qt5Widgets ]; - configureFlags = [ - "-fuseexithook" "-fforceghcilib" "-fthreadedtestsuite" - "-f-usepkgconfig" - ]; homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Haskell binding for Qt Quick"; license = stdenv.lib.licenses.bsd3; @@ -62205,7 +62582,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base hsqml OpenGL OpenGLRaw text ]; - configureFlags = [ "-fopengl" ]; + jailbreak = true; homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML sample programs"; license = stdenv.lib.licenses.bsd3; @@ -62224,6 +62601,7 @@ self: { buildDepends = [ base containers deepseq directory hsqml OddWord tagged ]; + jailbreak = true; homepage = "http://www.gekkou.co.uk/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; @@ -62272,6 +62650,7 @@ self: { base containers groom HUnit mtl parsec pretty syb template-haskell test-framework test-framework-hunit transformers uniplate ]; + jailbreak = true; homepage = "http://jakewheat.github.com/hssqlppp/"; description = "SQL parser and type checker"; license = stdenv.lib.licenses.bsd3; @@ -62330,6 +62709,7 @@ self: { buildDepends = [ base directory filepath ghc ghc-paths HUnit mtl QuickCheck random ]; + jailbreak = true; homepage = "http://bitbucket.org/dave4420/hstest/wiki/Home"; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = stdenv.lib.licenses.bsd3; @@ -62369,6 +62749,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; description = "Distributed instant messaging over Tor"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -62390,6 +62771,7 @@ self: { configurator containers hoauth http-conduit lifted-base numbers old-locale resourcet RSA safe text time transformers vector ]; + jailbreak = true; description = "Tradeking API bindings for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -62407,6 +62789,7 @@ self: { buildDepends = [ base cmdargs directory filepath haskell-src-exts syb text vector ]; + jailbreak = true; description = "Checks Haskell source code for style compliance"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -62425,6 +62808,7 @@ self: { base cairo containers directory filepath glade gtk parallel QuickCheck random xml ]; + jailbreak = true; homepage = "http://www.dcc.fc.up.pt/~pbv/stuff/hstzaar"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; @@ -62474,7 +62858,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base haskell-src-exts mtl utf8-string ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; homepage = "http://patch-tag.com/r/nibro/hsx"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; @@ -62522,7 +62906,7 @@ self: { base haskell-src-exts haskell-src-meta mtl template-haskell utf8-string ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; homepage = "http://hub.darcs.net/nibro/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; @@ -62621,6 +63005,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base process time ]; + jailbreak = true; description = "Timing utility for the command line"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -62720,6 +63105,7 @@ self: { ascii base blaze-builder bytestring cmdargs hamlet http-enumerator network text xmlhtml ]; + jailbreak = true; homepage = "http://github.com/tanakh/html2hamlet"; description = "HTML to Hamlet converter"; license = stdenv.lib.licenses.bsd3; @@ -62734,7 +63120,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base HDBC HDBC-sqlite3 ]; - configureFlags = [ "-f-safe" ]; homepage = "http://github.com/pirapira/htodo"; description = "A todo application"; license = stdenv.lib.licenses.bsd3; @@ -62771,7 +63156,6 @@ self: { version = "0.1"; sha256 = "0ar1w9p6ppag2vp8kw6byirhfdfs4r639pjh5icnyiiliz6jkvlx"; buildDepends = [ base ]; - configureFlags = [ "-fsplit-base" ]; description = "Hierarchical tracing for debugging of lazy evaluation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -62870,6 +63254,7 @@ self: { version = "0.1.1"; sha256 = "12l892fix11mrvm10awwvv31y59q5rb6gb0sqjp6l4p4ym9ngqa3"; buildDepends = [ attoparsec base bytestring http-types ]; + jailbreak = true; homepage = "https://github.com/tlaitinen/http-attoparsec"; description = "Attoparsec parsers for http-types"; license = stdenv.lib.licenses.bsd3; @@ -62899,7 +63284,6 @@ self: { case-insensitive containers deepseq hspec http-types monad-control network streaming-commons text time transformers zlib ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/snoyberg/http-client"; description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; license = stdenv.lib.licenses.mit; @@ -62946,6 +63330,7 @@ self: { buildDepends = [ base bytestring http-client http-types lens network ]; + jailbreak = true; homepage = "http://github.com/reinh/http-client-lens"; description = "Optics for http-client"; license = stdenv.lib.licenses.bsd3; @@ -62990,7 +63375,7 @@ self: { base bytestring exceptions http-client http-media http-types network network-uri ]; - configureFlags = [ "-fnetwork-uri" ]; + jailbreak = true; homepage = "https://github.com/spl/http-client-request-modifiers"; description = "Convenient monadic HTTP request modifiers"; license = stdenv.lib.licenses.bsd3; @@ -63008,7 +63393,7 @@ self: { base bytestring HsOpenSSL http-client http-client-openssl io-streams mtl transformers ]; - configureFlags = [ "-f-tls" ]; + jailbreak = true; description = "http-client for io-streams supporting openssl"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63098,6 +63483,7 @@ self: { http-conduit http-types HUnit lifted-base monad-control network network-conduit resourcet socks text time tls transformers wai warp ]; + jailbreak = true; homepage = "https://github.com/exbb2/http-conduit-browser"; description = "Browser interface to the http-conduit package"; license = stdenv.lib.licenses.bsd3; @@ -63118,7 +63504,6 @@ self: { http-client http-conduit http-types lifted-base mtl network network-uri old-locale resourcet time zlib ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/bazqux/http-conduit-downloader"; description = "HTTP downloader tailored for web-crawler needs"; license = stdenv.lib.licenses.bsd3; @@ -63175,7 +63560,7 @@ self: { http-types monad-control network tls tls-extra transformers utf8-string zlib-enum ]; - configureFlags = [ "-f-network-bytestring" "-f-test" ]; + jailbreak = true; homepage = "http://github.com/snoyberg/http-enumerator"; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -63207,6 +63592,7 @@ self: { sha256 = "1lcl0ylj8lq0i2b806k1yqvzbv9dg1m4ka9bmvmhz4z78kiahck1"; buildDepends = [ attoparsec base errors network-uri text ]; testDepends = [ base hspec hspec-attoparsec QuickCheck text ]; + jailbreak = true; homepage = "https://github.com/myfreeweb/http-link-header"; description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; license = stdenv.lib.licenses.asl20; @@ -63244,7 +63630,7 @@ self: { base bytestring containers explicit-exception HTTP lazyio network parsec transformers utility-ht ]; - configureFlags = [ "-f-buildtestserver" "-f-splitbase" ]; + jailbreak = true; description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63265,7 +63651,7 @@ self: { http-conduit http-types lifted-base network resourcet tls transformers wai ]; - configureFlags = [ "-f-network-bytestring" ]; + jailbreak = true; homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; @@ -63424,6 +63810,7 @@ self: { version = "0.6.2.3"; sha256 = "1sbg4gpx8ikaxb15wflm7fnjnkr32fj07bva62z54dsm630s37fx"; buildDepends = [ base failure process transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/http-wget/tree/master"; description = "Provide a simple HTTP client interface by wrapping the wget command line tool. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -63451,7 +63838,6 @@ self: { blaze-builder bytestring containers directory doctest filepath hex hspec PSQueue text unordered-containers vector word8 ]; - configureFlags = [ "-f-devel" ]; description = "HTTP/2.0 library including frames and HPACK"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63465,7 +63851,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base network network-uri ]; - configureFlags = [ "-fnetwork-uri" "-f-buildexamples" ]; description = "A simple web-server with an interact style API"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63489,6 +63874,7 @@ self: { https-everywhere-rules-raw lens network pipes string-conversions taggy-lens text text-icu ]; + jailbreak = true; homepage = "https://github.com/fmap/https-everywhere-rules"; description = "High-level access to HTTPS Everywhere rulesets"; license = stdenv.lib.licenses.mit; @@ -63501,6 +63887,7 @@ self: { version = "4.0"; sha256 = "0zm3znn42nzh9dlpjjn38nsz8rsb0gzl5rv6ngii1vfq534sddy6"; buildDepends = [ base directory filepath functor-infix text ]; + jailbreak = true; homepage = "https://github.com/fmap/https-everywhere-rules-raw"; description = "Low-level (i.e. XML) access to HTTPS Everywhere rulesets."; license = stdenv.lib.licenses.gpl2; @@ -63532,6 +63919,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ alsa-pcm base carray fft gloss ]; + jailbreak = true; description = "harmonic analyser and tuner for musical instruments"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63545,6 +63933,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base OpenGL random SDL ]; + jailbreak = true; homepage = "http://tomahawkins.org"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; @@ -63596,6 +63985,7 @@ self: { mtl old-time process ]; extraLibraries = [ ruby ]; + jailbreak = true; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; }) { inherit (pkgs) ruby;}; @@ -63623,7 +64013,6 @@ self: { base containers directory filepath mtl parsec uniplate ycextra yhccore ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Hugs Front-end to Yhc Core"; license = stdenv.lib.licenses.bsd3; @@ -63646,6 +64035,7 @@ self: { containers Crypto directory fastirc filepath ghc-prim monad-extras mtl network split strict text time unix utf8-string ]; + jailbreak = true; description = "IRC server written in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63669,6 +64059,7 @@ self: { network system-fileio system-filepath system-uuid text transformers unix unordered-containers wai warp ]; + jailbreak = true; description = "Haskell UPnP Media Server"; license = "GPL"; }) {}; @@ -63682,6 +64073,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base cairo gtk haskell98 HUnit ]; + jailbreak = true; homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home"; description = "A GUI testrunner for HUnit"; license = stdenv.lib.licenses.publicDomain; @@ -63706,6 +64098,7 @@ self: { sha256 = "1xj5f6l8nfanbf0xdwl2j2na45w5h0spi9a8pxqgpxx2rak145gs"; buildDepends = [ base HUnit rematch ]; testDepends = [ base hspec HUnit rematch ]; + jailbreak = true; homepage = "github.com/tcrayford/rematch"; description = "HUnit support for rematch"; license = stdenv.lib.licenses.mit; @@ -63739,6 +64132,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base bytestring containers kangaroo ]; + jailbreak = true; homepage = "http://code.google.com/p/copperbox/"; description = "Extract function names from Windows DLLs"; license = stdenv.lib.licenses.bsd3; @@ -63759,9 +64153,6 @@ self: { array base bytestring containers directory filepath ghc-paths haskeline knob mtl parsec process time transformers utf8-string ]; - configureFlags = [ - "-fuseptrs" "-fuselibraries" "-f-useffi" "-f-usedebug" - ]; homepage = "http://justinethier.github.com/husk-scheme"; description = "R5RS Scheme interpreter, compiler, and library"; license = stdenv.lib.licenses.mit; @@ -63796,6 +64187,7 @@ self: { buildDepends = [ base containers mtl old-locale parsec readline time ]; + jailbreak = true; homepage = "http://github.com/markusle/husky/tree/master"; description = "A simple command line calculator"; license = "GPL"; @@ -63863,6 +64255,7 @@ self: { array base containers directory haskell98 html mtl network old-time regex-compat text unix ]; + jailbreak = true; description = "Simple Haskell Web Server"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63892,6 +64285,7 @@ self: { base fclabels network network-protocol-xmpp text transformers xml-types ]; + jailbreak = true; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -63916,7 +64310,7 @@ self: { transformers TypeCompose xournal-builder xournal-parser xournal-render xournal-types ]; - configureFlags = [ "-fpoppler" ]; + jailbreak = true; homepage = "http://ianwookim.org/hxournal"; description = "A pen notetaking program written in haskell"; license = stdenv.lib.licenses.bsd3; @@ -63936,7 +64330,7 @@ self: { hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri parsec ]; - configureFlags = [ "-fnetwork-uri" "-fnetwork-uri" ]; + configureFlags = [ "-fnetwork-uri" ]; homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "A collection of tools for processing XML with Haskell"; license = stdenv.lib.licenses.mit; @@ -63953,6 +64347,7 @@ self: { buildDepends = [ base binary bytestring bzlib deepseq haskell98 hxt ]; + jailbreak = true; homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; @@ -63996,7 +64391,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base hxt parsec split ]; - configureFlags = [ "-f-examples" ]; homepage = "https://github.com/redneb/hxt-css"; description = "CSS selectors for HXT"; license = stdenv.lib.licenses.bsd3; @@ -64033,7 +64427,6 @@ self: { version = "0.4.1"; sha256 = "1bv8kcra2vgjbp7k0yczlrfbjh7ib2xixaqpnnd60hq84878nzb1"; buildDepends = [ base hxt ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.google.com/p/hxt-extras/"; description = "Extra functions for HXT"; license = stdenv.lib.licenses.bsd3; @@ -64051,6 +64444,7 @@ self: { base containers directory filepath haskell98 HTTP HUnit hxt network parsec process ]; + jailbreak = true; homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; @@ -64067,7 +64461,6 @@ self: { buildDepends = [ base bytestring HTTP hxt network network-uri parsec ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "Interface to native Haskell HTTP package HTTP"; license = stdenv.lib.licenses.mit; @@ -64113,7 +64506,6 @@ self: { base containers hxt hxt-charproperties hxt-regex-xmlschema network-uri parsec ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "The HXT RelaxNG validator"; license = stdenv.lib.licenses.mit; @@ -64181,6 +64573,7 @@ self: { version = "0.2.2"; sha256 = "1il21mqmvvfdny5ksnyixj1wqhabvxqhccd6vj4dbzlvvf5yb6k1"; buildDepends = [ base bytestring encoding hxt mtl ]; + jailbreak = true; description = "Helper functions for HXT"; license = "LGPL"; }) {}; @@ -64226,7 +64619,7 @@ self: { highlighting-kate mtl pandoc regex-pcre-builtin text unordered-containers ]; - configureFlags = [ "-fthreaded" ]; + jailbreak = true; homepage = "http://sourrust.github.io/hyakko/"; description = "Literate-style Documentation Generator"; license = stdenv.lib.licenses.mit; @@ -64267,7 +64660,7 @@ self: { buildDepends = [ base hmatrix ]; testDepends = [ base ]; extraLibraries = [ sixense_x64 ]; - configureFlags = [ "-f-usepkgconfig" ]; + jailbreak = true; homepage = "https://github.com/mruegenberg/hydra-hs"; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = stdenv.lib.licenses.bsd3; @@ -64296,6 +64689,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th text time transformers unix ]; + jailbreak = true; homepage = "https://github.com/rrnewton/hydra-print"; description = "NCurses interface to view multiple ByteString streams in parallel"; license = stdenv.lib.licenses.bsd3; @@ -64311,7 +64705,6 @@ self: { sha256 = "03psq7m52bg3ks53ny7ra1g0hkwg62140q1fy0236b64jbk15yq1"; buildDepends = [ base bytestring containers mtl pretty text ]; testDepends = [ base Cabal containers mtl QuickCheck ]; - configureFlags = [ "-f-dev" ]; homepage = "https://www.github.com/ktvoelker/hydrogen"; description = "An alternate Prelude"; license = stdenv.lib.licenses.gpl3; @@ -64404,6 +64797,7 @@ self: { hydrogen-multimap hydrogen-version network nicify process random regex-base regex-tdfa strict time transformers uuid ]; + jailbreak = true; homepage = "http://scravy.de/hydrogen-prelude/"; description = "Hydrogen Prelude"; license = stdenv.lib.licenses.mit; @@ -64434,6 +64828,7 @@ self: { version = "0.8"; sha256 = "14z2nf2af0ydqr2sm4r4cn252qn0hbacdc4z1lhyjnin66djb1a8"; buildDepends = [ base containers hydrogen-prelude parsec time ]; + jailbreak = true; homepage = "https://scravy.de/hydrogen-util/"; description = "Hydrogen Tools"; license = stdenv.lib.licenses.bsd3; @@ -64464,6 +64859,7 @@ self: { base bytestring containers directory extensible-exceptions filepath mtl network network-bytestring unix ]; + jailbreak = true; homepage = "http://github.com/tibbe/hyena"; description = "Simple web application server"; license = stdenv.lib.licenses.bsd3; @@ -64480,6 +64876,7 @@ self: { buildDepends = [ array base containers mtl pretty QuickCheck random uniplate ]; + jailbreak = true; description = "Tools for hybrid logics related programs"; license = "GPL"; }) {}; @@ -64493,7 +64890,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base hylolib mtl ]; - configureFlags = [ "-f-static" ]; homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; @@ -64508,7 +64904,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers hylolib mtl uniplate ]; - configureFlags = [ "-f-static" ]; description = "Very small programs for hybrid logics"; license = "GPL"; }) {}; @@ -64527,6 +64922,7 @@ self: { base bytestring bytestring-lexing extensible-exceptions mtl network pipes pretty ]; + jailbreak = true; description = "a fast, trustworthy HTTP(s) server built"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -64551,7 +64947,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; + jailbreak = true; homepage = "http://github.com/analytics/hyperloglog"; description = "An approximate streaming (constant space) unique object counter"; license = stdenv.lib.licenses.bsd3; @@ -64568,6 +64964,7 @@ self: { buildDepends = [ aeson attoparsec base bytestring http-enumerator http-types ]; + jailbreak = true; homepage = "https://github.com/mkscrg/hyperpublic-haskell"; description = "A thin wrapper for the Hyperpublic API"; license = stdenv.lib.licenses.publicDomain; @@ -64641,6 +65038,7 @@ self: { http-client-tls http-types lens lens-aeson mtl raw-strings-qq scotty stm stm-conduit text transformers ]; + jailbreak = true; homepage = "https://github.com/yamadapc/hzulip"; description = "A haskell wrapper for the Zulip API"; license = stdenv.lib.licenses.gpl2; @@ -64676,7 +65074,6 @@ self: { data-default mime mtl network network-uri old-locale parsec text time ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/tingtun/iCalendar"; description = "iCalendar data types, parser, and printer"; license = stdenv.lib.licenses.bsd3; @@ -64733,6 +65130,7 @@ self: { array base cgi containers directory filepath parsec QuickCheck random time uniplate wl-pprint ]; + jailbreak = true; homepage = "http://ideas.cs.uu.nl/www/"; description = "Feedback services for intelligent tutoring systems"; license = "GPL"; @@ -64749,6 +65147,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers ideas parsec QuickCheck random ]; + jailbreak = true; homepage = "http://ideas.cs.uu.nl/www/"; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; @@ -64762,6 +65161,7 @@ self: { sha256 = "18jwk65mm50lqnbx9px4c8aa2x7n5dkrazzpzvdwq7cy4q614bj0"; buildDepends = [ base containers ]; testDepends = [ base containers hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/prophile/idempotent"; description = "Idempotent monoids"; license = stdenv.lib.licenses.mit; @@ -64783,6 +65183,7 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; description = "Numeric identifiers for values"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -64828,6 +65229,7 @@ self: { version = "0.0.1.0"; sha256 = "1pd62pr1hyk565mxc15f5lxyms58bywcqll5ya6cnzw20lv4lzlz"; buildDepends = [ base punycode split ]; + jailbreak = true; description = "Converts Unicode hostnames into ASCII"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -64858,10 +65260,8 @@ self: { ]; buildTools = [ happy ]; extraLibraries = [ boehmgc gmp ]; - configureFlags = [ - "-fgmp" "-fffi" "-f-freestanding" "-frelease" "-f-curses" "-fgmp" - "-fffi" - ]; + configureFlags = [ "-fgmp" "-fffi" ]; + jailbreak = true; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; @@ -64874,7 +65274,6 @@ self: { version = "0.7"; sha256 = "0ckhmy10l4kchr5bg1hlygrj86ij0wrj3r8in9g3c3jhh00dx3km"; buildDepends = [ base ]; - configureFlags = [ "-f-big_endian" ]; homepage = "http://github.com/patperry/hs-ieee"; description = "Utilities for dealing with IEEE floating point numbers"; license = stdenv.lib.licenses.bsd3; @@ -64909,7 +65308,6 @@ self: { version = "0.7.4"; sha256 = "1pxbkfa21mvc869n18nn7r29hcinxdbsnk68nlldzld8f6m13g1h"; buildDepends = [ base ]; - configureFlags = [ "-f-big_endian" ]; homepage = "http://github.com/patperry/hs-ieee754"; description = "Utilities for dealing with IEEE floating point numbers"; license = stdenv.lib.licenses.bsd3; @@ -64969,7 +65367,7 @@ self: { resourcet text time transformers transformers-base unordered-containers ]; - configureFlags = [ "-fconduit11" "-f-debug" ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/ig"; description = "Bindings to Instagram's API"; license = stdenv.lib.licenses.bsd3; @@ -64986,6 +65384,7 @@ self: { buildDepends = [ array base containers glib gtk haskell98 mtl ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ ige-mac-integration ]; + jailbreak = true; homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; @@ -65051,6 +65450,7 @@ self: { strict system-argv0 system-filepath tar text transformers unix unordered-containers utf8-string uuid vector zeromq4-haskell ]; + jailbreak = true; homepage = "http://gibiansky.github.io/IHaskell/"; description = "A Haskell backend kernel for the IPython project"; license = stdenv.lib.licenses.mit; @@ -65067,6 +65467,7 @@ self: { buildDepends = [ aeson aeson-pretty base classy-prelude here ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell-Display"; description = "IHaskell display instances for Aeson"; license = stdenv.lib.licenses.mit; @@ -65083,6 +65484,7 @@ self: { buildDepends = [ base blaze-html blaze-markup classy-prelude ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for blaze-html types"; license = stdenv.lib.licenses.mit; @@ -65100,6 +65502,7 @@ self: { base bytestring Chart Chart-cairo classy-prelude data-default-class directory ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for charts types"; license = stdenv.lib.licenses.mit; @@ -65117,6 +65520,7 @@ self: { base bytestring classy-prelude diagrams diagrams-cairo diagrams-lib directory ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for diagram types"; license = stdenv.lib.licenses.mit; @@ -65129,6 +65533,7 @@ self: { version = "0.1.0.0"; sha256 = "1cbfhv9kg33dj28mn6mhhi363pz9jr2kw4ph64ga1fiawlj563l0"; buildDepends = [ base classy-prelude ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for basic types"; license = stdenv.lib.licenses.mit; @@ -65146,6 +65551,7 @@ self: { base base64-bytestring bytestring classy-prelude ihaskell magic text utf8-string ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for bytestrings"; license = stdenv.lib.licenses.mit; @@ -65184,7 +65590,6 @@ self: { xhtml ]; buildTools = [ alex ]; - configureFlags = [ "-fexecutable" ]; homepage = "http://github.com/jgm/illuminate"; description = "A fast syntax highlighting library built with alex"; license = stdenv.lib.licenses.bsd3; @@ -65239,7 +65644,6 @@ self: { vector ]; pkgconfigDepends = [ ImageMagick MagickWand ]; - configureFlags = [ "-f-buildexamples" ]; description = "bindings to imagemagick library"; license = "unknown"; broken = true; @@ -65296,6 +65700,7 @@ self: { buildDepends = [ base bytestring directory HaskellNet HsOpenSSL network text ]; + jailbreak = true; description = "Downloads email from imap SSL servers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -65316,6 +65721,7 @@ self: { download-curl filepath glib gnomevfs gtk mtl parsec process split utf8-string ]; + jailbreak = true; description = "Minimalistic reference manager"; license = "GPL"; }) {}; @@ -65356,7 +65762,6 @@ self: { resourcet text text-icu time timerep tls transformers transformers-base utf8-string xdg-basedir xml ]; - configureFlags = [ "-fnetwork-uri" ]; description = "Retrieve RSS/Atom feeds and write one mail per new item in a maildir"; license = "unknown"; }) {}; @@ -65395,6 +65800,7 @@ self: { ascetic base compilation containers directory indents MissingH parsec richreports split staticanalysis text uxadt ]; + jailbreak = true; description = "Multi-platform parser analyzer and generator"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -65441,6 +65847,7 @@ self: { version = "0.4.0"; sha256 = "0z8w7lgk263ickb4l3ajhvy1bjq38bbiiw6c048a3yn4h8kpg67a"; buildDepends = [ base mtl yices ]; + jailbreak = true; homepage = "http://github.com/tomahawkins/improve/wiki/ImProve"; description = "An imperative, verifiable programming language for high assurance applications"; license = stdenv.lib.licenses.bsd3; @@ -65475,6 +65882,7 @@ self: { base containers directory filepath IndentParser mtl parsec presburger pretty ]; + jailbreak = true; homepage = "https://github.com/adamgundry/inch/"; description = "A type-checker for Haskell with integer constraints"; license = stdenv.lib.licenses.bsd3; @@ -65545,7 +65953,7 @@ self: { version = "0.2.0.0"; sha256 = "1gn6v6l2d3a6nilkr4zg9ci9z9wh5027k2cdkd8hg5w964cccgs1"; buildDepends = [ base mtl parsec parsers trifecta ]; - configureFlags = [ "-ftrifecta" "-fparsec" ]; + jailbreak = true; homepage = "https://bitbucket.org/mdmkolbe/indentation"; description = "Indentation sensitive parsing combinators for Parsec"; license = stdenv.lib.licenses.bsd3; @@ -65560,7 +65968,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base mtl parsec ]; - configureFlags = [ "-f-examples" ]; homepage = "http://www.cse.iitk.ac.in/users/ppk/code/HASKELL/indentparser"; description = "A parser for indentation based structures"; license = stdenv.lib.licenses.publicDomain; @@ -65622,6 +66029,7 @@ self: { version = "0.1.1"; sha256 = "0mhzk2smcli5mk6ghcxpbnq58adryf42s50qmqrj72sxsfd7a09r"; buildDepends = [ base bifunctors indexed mtl pointed ]; + jailbreak = true; homepage = "https://github.com/reinerp/indexed-extras"; description = "Indexed functors, monads and comonads that require extensions to Haskell98"; license = stdenv.lib.licenses.bsd3; @@ -65675,6 +66083,7 @@ self: { buildDepends = [ ansi-wl-pprint base github optparse-applicative parsec process text ]; + jailbreak = true; homepage = "https://github.com/silky/infer-upstream"; description = "Find the repository from where a given repo was forked"; license = stdenv.lib.licenses.mit; @@ -65702,6 +66111,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base binary Cabal filepath ghc irc plugins ]; + jailbreak = true; license = stdenv.lib.licenses.bsd3; }) {}; @@ -65770,9 +66180,6 @@ self: { base http-client HUnit mtl tasty tasty-hunit tasty-quickcheck tasty-th text vector ]; - configureFlags = [ - "-fnetwork-uri" "-fretry-050" "-faeson-070" "-f-examples" - ]; homepage = "https://github.com/maoe/influxdb-haskell"; description = "Haskell client library for InfluxDB"; license = stdenv.lib.licenses.bsd3; @@ -65795,6 +66202,7 @@ self: { pandoc persistent persistent-postgresql shakespeare text time yesod yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/informative"; description = "A yesod subsite serving a wiki"; license = stdenv.lib.licenses.agpl3; @@ -65836,6 +66244,7 @@ self: { version = "0.2.1.0"; sha256 = "1iw82rzw2w3y40zndz3mxpa7k5ds8zs87ccvp228s4zva0mp5ddl"; buildDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/skypers/inject-function"; description = "Monadic functions with injected parameters"; license = stdenv.lib.licenses.gpl3; @@ -65850,6 +66259,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ aether base text ]; + jailbreak = true; description = "Console client for encyclopedias"; license = stdenv.lib.licenses.gpl3; broken = true; @@ -65942,6 +66352,7 @@ self: { testDepends = [ base nats QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/hvr/int-cast"; description = "Checked conversions between integral types"; license = stdenv.lib.licenses.bsd3; @@ -66076,7 +66487,7 @@ self: { buildDepends = [ base explicit-exception HPDF parsec process transformers utility-ht ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/internetmarke/"; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; @@ -66154,6 +66565,7 @@ self: { version = "0.1.1"; sha256 = "1cwhy4jwbl50nglfw0wfmdr3rrg33dqskw0wq06prx14x22yshbk"; buildDepends = [ base haskell-src-meta-mwotton template-haskell ]; + jailbreak = true; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -66168,7 +66580,6 @@ self: { isExecutable = true; buildDepends = [ base utility-ht ]; testDepends = [ base QuickCheck utility-ht ]; - configureFlags = [ "-fhmatrix" "-f-buildexamples" ]; homepage = "http://code.haskell.org/~thielema/interpolation/"; description = "piecewise linear and cubic Hermite interpolation"; license = stdenv.lib.licenses.bsd3; @@ -66184,7 +66595,6 @@ self: { sha256 = "02qb44ga2yfsymkfixy3fdp943r2flwrsaqhb0pjddr3ixzm4ap9"; buildDepends = [ array base distributive ghc-prim ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-ftest-doctests" ]; homepage = "http://github.com/ekmett/intervals"; description = "Interval Arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -66206,7 +66616,6 @@ self: { filepath hscurses mtl network-fancy SDL SDL-gfx SDL-ttf stm time transformers vector ]; - configureFlags = [ "-f-server" "-fgame" "-fcurses" "-fsdl" ]; homepage = "http://mbays.freeshell.org/intricacy"; description = "A game of competitive puzzle-design"; license = stdenv.lib.licenses.gpl3; @@ -66224,7 +66633,6 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-f-testing" ]; homepage = "https://github.com/pxqr/intset"; description = "Pure, mergeable, succinct Int sets"; license = stdenv.lib.licenses.bsd3; @@ -66355,9 +66763,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text time transformers vector zlib zlib-bindings ]; - configureFlags = [ - "-fNoInteractiveTests" "-f-nointeractivetests" - ]; + configureFlags = [ "-fNoInteractiveTests" ]; description = "Simple, composable, and easy-to-use stream I/O"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -66374,6 +66780,7 @@ self: { base bytestring http-client http-client-tls io-streams mtl transformers ]; + jailbreak = true; description = "http-client for io-streams"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -66443,7 +66850,6 @@ self: { base bytestring darcs directory filepath hashed-storage process unix ]; - configureFlags = [ "-f-darcs-beta" ]; homepage = "http://darcs.nomeata.de/ipatch"; description = "interactive patch editor"; license = stdenv.lib.licenses.gpl2; @@ -66460,6 +66866,7 @@ self: { buildDepends = [ base binary bytestring dlist mtl network network-bytestring stm ]; + jailbreak = true; description = "High level inter-process communication library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -66496,7 +66903,6 @@ self: { ]; buildTools = [ c2hs ]; pkgconfigDepends = [ ipopt nlopt ]; - configureFlags = [ "-fnlopt" "-f-build_examples" ]; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) ipopt; inherit (pkgs) nlopt;}; @@ -66543,6 +66949,7 @@ self: { buildDepends = [ base containers mtl parsec QuickCheck safe syb utf8-string ]; + jailbreak = true; description = "iptables rules parser/printer library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -66567,6 +66974,7 @@ self: { network old-time pam parsec process random safe template-haskell time unix utf8-string ]; + jailbreak = true; homepage = "http://iptadmin.117.su"; description = "web-interface for iptables"; license = stdenv.lib.licenses.bsd3; @@ -66584,6 +66992,7 @@ self: { aeson base bytestring cereal containers text unix uuid zeromq4-haskell ]; + jailbreak = true; homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; @@ -66662,6 +67071,7 @@ self: { base bytestring containers directory filepath irc mtl network old-locale parsec random SafeSemaphore stm time unix ]; + jailbreak = true; homepage = "http://hub.darcs.net/stepcut/ircbot"; description = "A library for writing irc bots"; license = stdenv.lib.licenses.bsd3; @@ -66744,7 +67154,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/isdicom"; description = "An executable and library to determine if a file is a DICOM file"; license = stdenv.lib.licenses.bsd3; @@ -66757,6 +67166,7 @@ self: { version = "0.3.0.2"; sha256 = "10f09br33xy5ldl924kfnnlc5ilwq44hd17s2qdf9jm75q4sa7d5"; buildDepends = [ base vacuum ]; + jailbreak = true; description = "Check whether a value has been evaluated"; license = stdenv.lib.licenses.mit; }) {}; @@ -66866,6 +67276,7 @@ self: { aeson base bytestring data-default ghc-prim http-conduit text unordered-containers uri vector ]; + jailbreak = true; homepage = "https://github.com/reinerp/isohunt"; description = "Bindings to the isoHunt torrent search API"; license = stdenv.lib.licenses.bsd3; @@ -66922,6 +67333,7 @@ self: { ListLike mtl network old-locale process stringsearch time unix ]; extraLibraries = [ zlib ]; + jailbreak = true; homepage = "http://www.scs.stanford.edu/~dm/iterIO"; description = "Iteratee-based IO with pipe operators"; license = stdenv.lib.licenses.bsd3; @@ -66958,6 +67370,7 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers transformers-base unix ]; + jailbreak = true; homepage = "http://www.tiresiaspress.us/haskell/iteratee"; description = "Iteratee-based I/O"; license = stdenv.lib.licenses.bsd3; @@ -66971,7 +67384,6 @@ self: { sha256 = "1j5w3pfi8mx88wfg6fwrj5jccfp8spw0jwb4zh3yyzg1jacrpal4"; buildDepends = [ base bytestring iteratee mtl ]; extraLibraries = [ bzip2 zlib ]; - configureFlags = [ "-f-debug" ]; description = "Enumeratees for compressing and decompressing streams"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) bzip2; inherit (pkgs) zlib;}; @@ -66989,7 +67401,7 @@ self: { buildDepends = [ base bytestring containers ListLike MonadCatchIO-mtl mtl unix ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; + jailbreak = true; homepage = "http://inmachina.net/~jwlato/haskell/iteratee"; description = "Iteratee-based I/O"; license = stdenv.lib.licenses.bsd3; @@ -67006,6 +67418,7 @@ self: { buildDepends = [ base iteratee ListLike parsec reference transformers ]; + jailbreak = true; description = "Package allowing parsec parser initeratee"; license = stdenv.lib.licenses.mit; }) {}; @@ -67017,6 +67430,7 @@ self: { version = "0.1.2"; sha256 = "1916phr07ckvm571rspswqr93z22la0mkxghvzljr0vgd1zi4p0x"; buildDepends = [ base iteratee stm stm-chans transformers ]; + jailbreak = true; homepage = "http://www.tiresiaspress.us/~jwlato/haskell/iteratee-stm"; description = "Concurrent iteratees using STM"; license = stdenv.lib.licenses.bsd3; @@ -67034,6 +67448,7 @@ self: { base bytestring filepath iterIO ListLike monadIO mtl network split transformers unix ]; + jailbreak = true; homepage = "https://github.com/alevy/iterio-server"; description = "Library for building servers with IterIO"; license = stdenv.lib.licenses.bsd3; @@ -67077,6 +67492,7 @@ self: { buildDepends = [ base containers monadLib parsec pretty template-haskell th-lift ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Safe embedded C programming"; license = stdenv.lib.licenses.bsd3; @@ -67096,6 +67512,7 @@ self: { ivory-opts language-c-quote mainland-pretty monadLib process srcloc template-haskell ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory C backend"; license = stdenv.lib.licenses.bsd3; @@ -67114,6 +67531,7 @@ self: { buildDepends = [ base ivory ivory-backend-c monadLib parsec template-haskell ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory bit-data support"; license = stdenv.lib.licenses.bsd3; @@ -67135,6 +67553,7 @@ self: { mainland-pretty monadLib pretty QuickCheck template-haskell wl-pprint ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory examples"; license = stdenv.lib.licenses.bsd3; @@ -67151,6 +67570,7 @@ self: { buildDepends = [ base filepath ivory ivory-backend-c ivory-bitdata ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory hardware model (STM32F4)"; license = stdenv.lib.licenses.bsd3; @@ -67167,6 +67587,7 @@ self: { buildDepends = [ base containers dlist fgl filepath ivory monadLib ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory compiler optimizations"; license = stdenv.lib.licenses.bsd3; @@ -67179,6 +67600,7 @@ self: { version = "0.1.0.0"; sha256 = "0jbfpsmz8kq0h9gg5lm44pcdzhv8kv2rr554m4bic2bny94hnsjd"; buildDepends = [ base ivory monadLib QuickCheck random ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "QuickCheck driver for Ivory"; license = stdenv.lib.licenses.bsd3; @@ -67191,6 +67613,7 @@ self: { version = "0.1.0.0"; sha256 = "1a3d9916rgrznr5ci79ki918xg6xxd81krn8irv9wbp8h8ird2xq"; buildDepends = [ base filepath ivory ]; + jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory standard library"; license = stdenv.lib.licenses.bsd3; @@ -67232,6 +67655,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base preprocessor-tools syb ]; + jailbreak = true; homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/"; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = stdenv.lib.licenses.bsd3; @@ -67259,7 +67683,6 @@ self: { buildDepends = [ base containers safecopy syb syb-with-class template-haskell ]; - configureFlags = [ "-fbase4" ]; homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; @@ -67319,6 +67742,7 @@ self: { java-bridge-extras java-reflect mtl named-records split strict strings syb transformers ]; + jailbreak = true; description = "j2hs"; license = stdenv.lib.licenses.mit; }) {}; @@ -67338,7 +67762,6 @@ self: { non-negative transformers unix ]; pkgconfigDepends = [ jack2 ]; - configureFlags = [ "-f-buildexamples" "-fjackfree" "-fpkgconfig" ]; homepage = "http://www.haskell.org/haskellwiki/JACK"; description = "Bindings for the JACK Audio Connection Kit"; license = "GPL"; @@ -67364,6 +67787,7 @@ self: { version = "0.1"; sha256 = "03ysmgg5f3dsimskqw5vpnrv5jg4gf1gd0khmf0s1ilfm1jc1nfd"; buildDepends = [ base hosc ]; + jailbreak = true; homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; @@ -67393,6 +67817,7 @@ self: { buildDepends = [ base containers directory monads-fd transformers ]; + jailbreak = true; description = "Jailed IO monad"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -67419,6 +67844,7 @@ self: { sha256 = "025ryrz87bii3401nq0bhyigzrs6lkippds6r4h0qzpq4pg8l7m0"; buildDepends = [ base ]; testDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/jalaali/jalaali-hs"; description = "Convert Jalaali and Gregorian calendar systems to each other"; license = stdenv.lib.licenses.mit; @@ -67440,7 +67866,7 @@ self: { ]; buildTools = [ c2hs ]; extraLibraries = [ cblas f77blas lapack lapacke ]; - configureFlags = [ "-f-build_lapacke" ]; + jailbreak = true; homepage = "https://github.com/cgo/jalla"; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = stdenv.lib.licenses.bsd3; @@ -67480,7 +67906,6 @@ self: { buildDepends = [ array base binary bytestring regex-tdfa zip-archive ]; - configureFlags = [ "-fsplitbase" ]; description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; license = "GPL"; }) {}; @@ -67501,10 +67926,6 @@ self: { hint mtl multimap named-records names split strings syb transformers unix ]; - configureFlags = [ - "-f-examples" "-f-osx_framework" "-fosx_gui" "-f-debug" - "-f-no_tools" "-f-only_core" - ]; description = "Bindings to the JNI and a high level interface generator"; license = stdenv.lib.licenses.mit; }) {}; @@ -67516,6 +67937,7 @@ self: { version = "0.99"; sha256 = "0wjxm0h5xlsab7iphcabb66c7gjxy7hyb502inlj5zxq1ic5ghzv"; buildDepends = [ base java-bridge transformers ]; + jailbreak = true; description = "Utilities for working with the java-bridge package"; license = stdenv.lib.licenses.mit; }) {}; @@ -67527,7 +67949,6 @@ self: { version = "0.0.4"; sha256 = "1ms8m95mara3pp7qdg8jn2ajbq3zj8pnbs1b9jhpxbdkl5220768"; buildDepends = [ base diet ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/java-character"; description = "Functions to simulate Java's Character class"; license = stdenv.lib.licenses.bsd3; @@ -67540,6 +67961,7 @@ self: { version = "0.99"; sha256 = "1vdfq3c8chqhss6jiy139yrm45mij4kjdwxf2wrsfm4064j0n3wc"; buildDepends = [ base containers hx java-bridge ]; + jailbreak = true; description = "Tools for reflecting on Java classes"; license = stdenv.lib.licenses.mit; }) {}; @@ -67556,7 +67978,6 @@ self: { isExecutable = true; buildDepends = [ base binary bytestring language-java-classfile ]; testDepends = [ base directory doctest filepath QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/javasf"; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; @@ -67572,7 +67993,6 @@ self: { isExecutable = true; buildDepends = [ base ]; testDepends = [ base directory doctest filepath QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/javav"; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; @@ -67589,6 +68009,7 @@ self: { buildDepends = [ aeson base bytestring http-conduit text transformers ]; + jailbreak = true; homepage = "http://github.com/Herzult/jcdecaux-vls"; description = "JCDecaux self-service bicycles API client"; license = stdenv.lib.licenses.mit; @@ -67607,6 +68028,7 @@ self: { buildDepends = [ base binary bytestring containers mtl network transformers ]; + jailbreak = true; homepage = "https://github.com/VictorDenisov/jdi"; description = "Implementation of Java Debug Interface"; license = stdenv.lib.licenses.gpl2; @@ -67632,6 +68054,7 @@ self: { testDepends = [ arrows base directory filepath hxt tasty tasty-golden transformers ]; + jailbreak = true; homepage = "http://github.com/achudnov/jespresso"; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = stdenv.lib.licenses.bsd3; @@ -67654,7 +68077,6 @@ self: { mtl parseargs parsec regex-posix safe syb template-haskell text unordered-containers vector wl-pprint-text ]; - configureFlags = [ "-f-benchmarks" ]; description = "QuasiQuotation library for programmatic generation of Javascript code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -67732,6 +68154,7 @@ self: { async base bytestring data-default directory hspec network QuickCheck stm ]; + jailbreak = true; homepage = "https://github.com/gree/haskell-jobqueue"; description = "A job queue library"; license = stdenv.lib.licenses.mit; @@ -67772,6 +68195,7 @@ self: { buildDepends = [ base bytestring containers HTTP json mtl network old-locale time ]; + jailbreak = true; homepage = "http://rawr.mschade.me/jonathanscard/"; description = "An implementation of the Jonathan's Card API"; license = stdenv.lib.licenses.bsd3; @@ -67786,6 +68210,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base gtk ]; + jailbreak = true; description = "JP's own ray tracer"; license = "unknown"; }) {}; @@ -67909,7 +68334,7 @@ self: { testDepends = [ base hslogger lens template-haskell text transformers ]; - configureFlags = [ "-f-webkit" "-fjsffi" "-fgtk3" "-fghcjs" ]; + jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; }) {}; @@ -67923,6 +68348,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base ghcjs-dom jsaddle lens ]; + jailbreak = true; homepage = "https://github.com/ghcjs/jsaddle-hello"; description = "JSaddle Hello World, an example package"; license = stdenv.lib.licenses.mit; @@ -67945,7 +68371,7 @@ self: { base glib gtk3 hslogger jmacro lens template-haskell text transformers webkitgtk3 webkitgtk3-javascriptcore ]; - configureFlags = [ "-fjmacro" "-f-webkit" "-fjsffi" "-fgtk3" ]; + jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; }) {}; @@ -67957,6 +68383,7 @@ self: { version = "0.1"; sha256 = "1r36w2h5007qln56gnyyd7w6bcqiymn1jw287z0waf4fhpy02ygq"; buildDepends = [ base DOM mtl WebBits ]; + jailbreak = true; description = "Javascript Monadic Writer base package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -67972,9 +68399,6 @@ self: { buildDepends = [ array base bytestring containers mtl parsec pretty syb text ]; - configureFlags = [ - "-f-mapdict" "-fgeneric" "-fpretty" "-fparsec" "-fsplit-base" - ]; description = "Support for serialising Haskell to and from JSON"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -67990,6 +68414,7 @@ self: { buildDepends = [ aeson base indexed indexed-free lens lens-aeson text ]; + jailbreak = true; homepage = "http://github.com/ocharles/json-assertions.git"; description = "Test that your (Aeson) JSON encoding matches your expectations"; license = stdenv.lib.licenses.bsd3; @@ -68030,6 +68455,7 @@ self: { base bytestring bytestring-nums bytestring-trie bytestringparser-temporary containers utf8-string ]; + jailbreak = true; homepage = "http://github.com/jsnx/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; @@ -68065,6 +68491,7 @@ self: { base blaze-builder blaze-builder-enumerator bytestring containers enumerator json-types text transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/json-enumerator"; description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -68182,7 +68609,6 @@ self: { aeson base bytestring HUnit json-rpc-server mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; - configureFlags = [ "-f-demo" ]; description = "JSON-RPC 2.0 on the client side."; license = stdenv.lib.licenses.mit; }) {}; @@ -68205,7 +68631,6 @@ self: { aeson base bytestring HUnit mtl test-framework test-framework-hunit text unordered-containers vector ]; - configureFlags = [ "-f-demo" ]; description = "JSON-RPC 2.0 on the server side."; license = stdenv.lib.licenses.mit; }) {}; @@ -68363,7 +68788,6 @@ self: { aeson attoparsec base bytestring conduit conduit-extra mtl text transformers unordered-containers ]; - configureFlags = [ "-f-demo" ]; description = "JSON-RPC 2.0 server over a Conduit."; license = stdenv.lib.licenses.gpl3; }) {}; @@ -68436,7 +68860,6 @@ self: { buildDepends = [ base bytestring ghc-prim ]; testDepends = [ base hspec QuickCheck ]; extraLibraries = [ Judy ]; - configureFlags = [ "-f-unsafe" ]; homepage = "http://github.com/mwotton/judy"; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = stdenv.lib.licenses.bsd3; @@ -68500,7 +68923,6 @@ self: { QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; @@ -68532,6 +68954,7 @@ self: { version = "0.4.0"; sha256 = "1l7b71dhrxd2g3nbqg3h0n5dvgxr23av1cy1f0mvw347y91rx36x"; buildDepends = [ array base ]; + jailbreak = true; homepage = "http://code.google.com/p/copperbox/"; description = "Binary parsing with random access"; license = stdenv.lib.licenses.bsd3; @@ -68571,7 +68994,7 @@ self: { directory dotgen filepath netlist netlist-to-vhdl process random sized-types strict template-haskell ]; - configureFlags = [ "-f-tools" "-f-unit" "-f-all" ]; + jailbreak = true; homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = stdenv.lib.licenses.bsd3; @@ -68591,7 +69014,6 @@ self: { ansi-terminal base bytestring data-default directory kansas-lava network sized-types ]; - configureFlags = [ "-f-spartan3e" "-f-unit" "-f-all" ]; homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "FPGA Cores Written in Kansas Lava"; license = stdenv.lib.licenses.bsd3; @@ -68610,6 +69032,7 @@ self: { ansi-terminal base bytestring data-default directory filepath kansas-lava kansas-lava-cores netlist network sized-types ]; + jailbreak = true; description = "Kansas Lava support files for the Papilio FPGA board"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -68640,6 +69063,7 @@ self: { buildDepends = [ base comonad containers minioperational mtl transformers ]; + jailbreak = true; homepage = "https://github.com/fumieval/karakuri"; description = "Good stateful automata"; license = stdenv.lib.licenses.bsd3; @@ -68679,6 +69103,7 @@ self: { filepath lens mtl parsec text url wreq zip-archive ]; testDepends = [ base bytestring directory mtl ]; + jailbreak = true; homepage = "https://github.com/davnils/katt"; description = "Client for the Kattis judge system"; license = stdenv.lib.licenses.bsd3; @@ -68705,6 +69130,7 @@ self: { version = "0.1.0"; sha256 = "0j9wlap9gx2szb5saa4pxm7mp2w132ki1p6mlcv0s0wy9rv6dnm7"; buildDepends = [ base lens linear vector vector-algorithms ]; + jailbreak = true; homepage = "http://github.com/bgamari/kd-tree"; description = "A simple k-d tree implementation"; license = stdenv.lib.licenses.bsd3; @@ -68760,6 +69186,7 @@ self: { directory filepath hslogger network optparse-applicative process text unix unordered-containers yaml ]; + jailbreak = true; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; }) {}; @@ -68826,7 +69253,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base udbus ]; - configureFlags = [ "-f-example" "-f-allbackends" ]; homepage = "https://github.com/lunaryorn/haskell-keyring"; description = "Keyring access"; license = stdenv.lib.licenses.mit; @@ -68870,7 +69296,6 @@ self: { old-locale optparse-applicative pbkdf process raw-strings-qq regex-compat-tdfa safe setenv text time unordered-containers vector ]; - configureFlags = [ "-f-stacktrace" "-f-hpc" ]; homepage = "http://github.com/cdornan/keystore"; description = "Managing stores of secret things"; license = stdenv.lib.licenses.bsd3; @@ -68918,6 +69343,7 @@ self: { base ieee754 lens-family parsec parsec-numbers pretty-compact QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/kasbah/haskell-kicad-data"; description = "Parser and writer for KiCad files"; license = stdenv.lib.licenses.mit; @@ -68936,6 +69362,7 @@ self: { base bytestring cassava hspec hspec-expectations string-qq text vector ]; + jailbreak = true; description = "Parses kat.ph torrent dumps"; license = stdenv.lib.licenses.mit; }) {}; @@ -69076,6 +69503,7 @@ self: { buildDepends = [ array base containers data-default deepseq mtl parallel vector yap ]; + jailbreak = true; description = "Khovanov homology computations"; license = stdenv.lib.licenses.mit; }) {}; @@ -69111,6 +69539,7 @@ self: { mtl old-time string-templates syb test-framework test-framework-hunit test-framework-quickcheck2 time ]; + jailbreak = true; description = "Utilities for working with many HStringTemplate templates from files"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -69214,6 +69643,7 @@ self: { version = "0.1.3"; sha256 = "0bfcmx1fz521vkc2lrbpyvaqcy4c29h5xp6wmyxvgrjjnq32ld1b"; buildDepends = [ base kure template-haskell ]; + jailbreak = true; homepage = "http://ittc.ku.edu/~andygill/kure.php"; description = "Generator for Boilerplate KURE Combinators"; license = stdenv.lib.licenses.bsd3; @@ -69281,6 +69711,7 @@ self: { aeson async base bytestring cmdlib containers directory hslogger mtl old-locale parsec random split text time transformers uuid ]; + jailbreak = true; homepage = "https://github.com/lucasdicioccio/laborantin-hs"; description = "an experiment management framework"; license = stdenv.lib.licenses.asl20; @@ -69303,6 +69734,7 @@ self: { base containers derive HTF HUnit lens monad-loops MonadRandom mtl parsec QuickCheck random safecopy template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/koterpillar/labyrinth"; description = "A complicated turn-based game"; license = stdenv.lib.licenses.mit; @@ -69337,6 +69769,7 @@ self: { vector wai wai-test wai-websockets warp websockets yesod yesod-static ]; + jailbreak = true; homepage = "https://github.com/koterpillar/labyrinth-server"; description = "A complicated turn-based game - Web server"; license = stdenv.lib.licenses.mit; @@ -69381,7 +69814,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-fexample" ]; homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/LambdaBridge"; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = stdenv.lib.licenses.bsd3; @@ -69394,6 +69826,7 @@ self: { version = "0.1"; sha256 = "14wl1w1sc0j1yjfad5v00346ccxp0grfs1677hnjqwisashdac92"; buildDepends = [ base GLUT mtl OpenGL time ]; + jailbreak = true; description = "Educational drawing canvas for FP explorers"; license = stdenv.lib.licenses.mit; }) {}; @@ -69569,6 +70002,7 @@ self: { buildDepends = [ base cmdargs containers dyre glade gtk mtl network webkit ]; + jailbreak = true; homepage = "http://github.com/baldo/lambdacat"; description = "Webkit Browser"; license = stdenv.lib.licenses.bsd3; @@ -69649,6 +70083,7 @@ self: { buildDepends = [ base bytestring bytestring-trie containers mtl vector ]; + jailbreak = true; homepage = "http://lambdacube3d.wordpress.com/"; description = "LambdaCube 3D IR"; license = stdenv.lib.licenses.bsd3; @@ -69666,6 +70101,7 @@ self: { base bytestring bytestring-trie containers ghc-prim lambdacube-core mtl vector ]; + jailbreak = true; homepage = "http://lambdacube3d.wordpress.com/"; description = "LambdaCube 3D EDSL definition"; license = stdenv.lib.licenses.bsd3; @@ -69719,6 +70155,7 @@ self: { lambdacube-core lambdacube-edsl language-glsl mtl OpenGLRaw prettyclass vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "OpenGL backend for LambdaCube graphics language (main package)"; license = stdenv.lib.licenses.bsd3; @@ -69740,7 +70177,7 @@ self: { lambdacube-edsl lambdacube-gl mtl OpenGLRaw stb-image time vect vector ]; - configureFlags = [ "-f-bulletinstalled" ]; + jailbreak = true; homepage = "http://lambdacube3d.wordpress.com/"; description = "Samples for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; @@ -69785,6 +70222,7 @@ self: { buildDepends = [ attoparsec attoparsec-enumerator base bytestring enumerator gtk mtl ]; + jailbreak = true; homepage = "https://github.com/jamwt/lambdiff.git"; description = "Diff Viewer"; license = stdenv.lib.licenses.bsd3; @@ -69816,7 +70254,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base parsec syb ]; - configureFlags = [ "-f-test" "-fsplitbase" ]; homepage = "http://patch-tag.com/r/adept/language-asn1"; description = "Parsing of ASN1 definitions"; license = stdenv.lib.licenses.bsd3; @@ -69849,7 +70286,7 @@ self: { ansi-terminal base cmdargs containers filepath HUnit lens mtl parsec pretty random stream-monad time transformers ]; - configureFlags = [ "-f-tests" "-fboogaloo" ]; + jailbreak = true; homepage = "https://bitbucket.org/nadiapolikarpova/boogaloo"; description = "Interpreter and language infrastructure for Boogie"; license = stdenv.lib.licenses.bsd3; @@ -69868,9 +70305,6 @@ self: { syb ]; buildTools = [ alex happy ]; - configureFlags = [ - "-fseparatesyb" "-fusebytestrings" "-fsplitbase" - ]; homepage = "http://www.sivity.net/projects/language.c/"; description = "Analysis and generation of C code"; license = stdenv.lib.licenses.bsd3; @@ -69902,7 +70336,6 @@ self: { template-haskell ]; testDepends = [ base language-c-quote ]; - configureFlags = [ "-f-manualtests" ]; homepage = "https://github.com/mchakravarty/language-c-inline/"; description = "Inline C & Objective-C code in Haskell for language interoperability"; license = stdenv.lib.licenses.bsd3; @@ -69939,6 +70372,7 @@ self: { version = "0.2.2"; sha256 = "0b3yapn53bwaxia7b59kizzcxh1d3842as1cbkyzd096v8wsgwfa"; buildDepends = [ base bool-extras ]; + jailbreak = true; homepage = "https://github.com/tomlokhorst/language-cil"; description = "Manipulating Common Intermediate Language AST"; license = stdenv.lib.licenses.bsd3; @@ -69964,7 +70398,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base mtl parsec pretty ]; - configureFlags = [ "-fexecutable" ]; description = "A library for the analysis and creation of Graphviz DOT files"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70083,6 +70516,7 @@ self: { version = "0.8"; sha256 = "1p545115x73q4mzfja50f4lxal97ydvz9r3wq6pvcqls2xgvxzvc"; buildDepends = [ array base parsec utf8-string ]; + jailbreak = true; description = "A library for analysis and synthesis of Go code"; license = "GPL"; }) {}; @@ -70209,7 +70643,6 @@ self: { process syb ]; buildTools = [ alex happy ]; - configureFlags = [ "-fseparatesyb" "-fusebytestrings" ]; homepage = "http://www.tiresiaspress.us/haskell/language-objc"; description = "Analysis and generation of Objective C code"; license = stdenv.lib.licenses.bsd3; @@ -70243,6 +70676,7 @@ self: { base Cabal HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; description = "Pig parser in haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -70277,6 +70711,7 @@ self: { ansi-wl-pprint base Glob hspec HUnit lens parsec parsers strict-base-types temporary text unix unordered-containers vector ]; + jailbreak = true; homepage = "http://lpuppet.banquise.net/"; description = "Tools to parse and evaluate the Puppet DSL"; license = stdenv.lib.licenses.bsd3; @@ -70321,6 +70756,7 @@ self: { version = "0.0.3.1"; sha256 = "12yjynd1sib1mxx4jc28gs1k3r7kl1qv7xhanvn635dkcmswsd5k"; buildDepends = [ base directory filepath mtl parsec pcre-light ]; + jailbreak = true; homepage = "http://code.haskell.org/shsh/"; description = "A package for parsing shell scripts"; license = stdenv.lib.licenses.bsd3; @@ -70425,6 +70861,7 @@ self: { ansi-wl-pprint base cmdargs directory filepath haskell98 haxr HDBC HDBC-sqlite3 hsini HTTP mtl old-locale regex-compat tagsoup time ]; + jailbreak = true; description = "Tool to track security alerts on LWN"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -70450,6 +70887,7 @@ self: { pipes-attoparsec pipes-bytestring pipes-http text text-format transformers ]; + jailbreak = true; homepage = "https://github.com/passy/latest-npm-version"; description = "Find the latest version of a package on npm"; license = stdenv.lib.licenses.mit; @@ -70488,7 +70926,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base containers hmidi mtl transformers ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "High and low-level interface to the Novation Launchpad midi controller"; license = stdenv.lib.licenses.bsd3; @@ -70592,7 +71029,6 @@ self: { version = "0.1.3"; sha256 = "0bc2n7x8fydmzc84yb5zbdaca1r4qwpk7zlvbgcycycr87fk7p7n"; buildDepends = [ array base ]; - configureFlags = [ "-fsplitbase" ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70606,7 +71042,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base transformers unsafe ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; description = "Run IO actions lazily while respecting their order"; license = stdenv.lib.licenses.bsd3; @@ -70702,7 +71137,6 @@ self: { rosezipper ]; testDepends = [ base HUnit ]; - configureFlags = [ "-fcmd" "-f-test" ]; homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; @@ -70719,6 +71153,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base blaze-html directory filepath pandoc split ]; + jailbreak = true; homepage = "https://github.com/skypers/leaf"; description = "A simple portfolio generator"; license = stdenv.lib.licenses.gpl3; @@ -70738,12 +71173,6 @@ self: { base deepseq-bounded deepseq-generics generics-sop random seqaid template-haskell ]; - configureFlags = [ - "-fuse_strict_blob" "-f-use_infinite_list" - "-fuse_growing_list_reduction" "-fuse_growing_list" "-fprofile" - "-fuse_second_module" "-f-using_sandbox" "-fstats" - "-ftest_seqaidpp" "-f-omnitypic" "-fturn_on_seqaid_plugin" - ]; homepage = "http://www.fremissant.net/leaky"; description = "Robust space leak, and its strictification"; license = stdenv.lib.licenses.bsd3; @@ -70793,6 +71222,7 @@ self: { buildDepends = [ base gloss gnuplot not-gloss spatial-math vector-space ]; + jailbreak = true; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70810,6 +71240,7 @@ self: { buildDepends = [ base gloss gnuplot learn-physics not-gloss spatial-math ]; + jailbreak = true; description = "examples for learn-physics"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70825,6 +71256,7 @@ self: { buildDepends = [ base containers deepseq hmatrix random-fu random-source vector ]; + jailbreak = true; homepage = "https://github.com/mnacamura/learning-hmm"; description = "Yet another library for hidden Markov models"; license = stdenv.lib.licenses.mit; @@ -70876,9 +71308,6 @@ self: { leksah-server ltk monad-loops QuickCheck text transformers webkitgtk3 ]; - configureFlags = [ - "-fnetwork-uri" "-f-loc" "-fgtk3" "-f-threaded" "-fdyre" "-f-yi" - ]; homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; @@ -70909,7 +71338,7 @@ self: { base conduit conduit-extra hslogger HUnit process resourcet transformers ]; - configureFlags = [ "-fnetwork-uri" "-fthreaded" ]; + jailbreak = true; homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; @@ -70945,12 +71374,6 @@ self: { test-framework-quickcheck2 test-framework-th text transformers unordered-containers vector ]; - configureFlags = [ - "-f-j" "-f-lib-werror" "-ftrustworthy" "-f-safe" - "-ftest-properties" "-ftest-hunit" "-ftest-doctests" "-ftest-hlint" - "-f-dump-splices" "-f-old-inline-pragmas" "-finlining" - "-f-benchmark-uniplate" - ]; homepage = "http://github.com/ekmett/lens/"; description = "Lenses, Folds and Traversals"; license = stdenv.lib.licenses.bsd3; @@ -70970,7 +71393,6 @@ self: { semigroups transformers ]; testDepends = [ base directory doctest filepath ]; - configureFlags = [ "-ftest-doctests" ]; homepage = "http://github.com/ekmett/lens-action/"; description = "Monadic Getters and Folds"; license = stdenv.lib.licenses.bsd3; @@ -70993,7 +71415,6 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; homepage = "http://github.com/lens/lens-aeson/"; description = "Law-abiding lenses for aeson"; license = stdenv.lib.licenses.bsd3; @@ -71056,6 +71477,7 @@ self: { version = "4.0"; sha256 = "07hjkcy90m1zph2bq5a7nw2f7xg0ndnkqml9zwh7vy35sb7512c6"; buildDepends = [ base lens QuickCheck transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/lens/"; description = "QuickCheck properties for lens"; license = stdenv.lib.licenses.bsd3; @@ -71091,6 +71513,7 @@ self: { version = "0.1.0.0"; sha256 = "1hrp9d6qja7yc3zj68w3hylgflyfsvh79m8daw9030yjdxm525za"; buildDepends = [ base lens time ]; + jailbreak = true; description = "lens for Data.Time"; license = stdenv.lib.licenses.mit; }) {}; @@ -71115,7 +71538,7 @@ self: { sha256 = "0dj43hqrv198dgfnngq4l8kwnksqcm6nydcr1z1a5gqz5s99m4bn"; buildDepends = [ base monad-control mtl transformers ]; testDepends = [ base ]; - configureFlags = [ "-f-tests" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "References which can be joined and on which lenses can be applied"; license = stdenv.lib.licenses.bsd3; @@ -71153,7 +71576,6 @@ self: { tasty tasty-quickcheck temporary transformers ]; extraLibraries = [ leveldb snappy ]; - configureFlags = [ "-f-examples" ]; homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; @@ -71178,7 +71600,6 @@ self: { QuickCheck transformers ]; extraLibraries = [ leveldb ]; - configureFlags = [ "-f-examples" ]; homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; @@ -71206,7 +71627,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base Chart colour data-accessor levmar random ]; - configureFlags = [ "-f-example" ]; + jailbreak = true; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -71230,7 +71651,7 @@ self: { monad-control mtl OpenGLRaw operational random random-shuffle semigroups system-filepath transformers vector ]; - configureFlags = [ "-f-pure" "-f-gtk" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "Lens GUI Toolkit"; license = stdenv.lib.licenses.bsd3; @@ -71263,6 +71684,7 @@ self: { array base containers directory filepath hgettext mtl parsec process setlocale utf8-string wx wxcore ]; + jailbreak = true; homepage = "http://www.imn.htwk-leipzig.de/~abau/lhae"; description = "Simple spreadsheet program"; license = "GPL"; @@ -71289,9 +71711,6 @@ self: { test-framework test-framework-hunit test-framework-quickcheck time unix xhtml ]; - configureFlags = [ - "-f-with-libs" "-flhc-pkg" "-f-lhc-regress" "-f-threaded" "-f-hpc" - ]; homepage = "http://lhc.seize.it/"; description = "LHC Haskell Compiler"; license = stdenv.lib.licenses.publicDomain; @@ -71321,6 +71740,7 @@ self: { buildDepends = [ base cmdargs filepath haskell-src-exts syb uu-parsinglib ]; + jailbreak = true; homepage = "http://spockz.github.com/lhs2texhl/"; description = "Literate highlighter preprocessor for lhs2tex"; license = stdenv.lib.licenses.mit; @@ -71388,7 +71808,6 @@ self: { buildDepends = [ base binary containers HUnit mtl parsec process QuickCheck ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://trac.loria.fr/~geni"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; @@ -71422,6 +71841,7 @@ self: { graph-wrapper hashable hashtables mtl pretty text value-supply ]; testDepends = [ base directory filepath mtl test-framework ]; + jailbreak = true; homepage = "https://github.com/tomgr/libcspm"; description = "A library providing a parser, type checker and evaluator for CSPM"; license = stdenv.lib.licenses.bsd3; @@ -71549,7 +71969,6 @@ self: { lens-aeson network-uri profunctors pureMD5 text xml-conduit xml-html-conduit-lens ]; - configureFlags = [ "-f-test-api" ]; description = "Lastfm API interface"; license = stdenv.lib.licenses.mit; }) {}; @@ -71561,6 +71980,7 @@ self: { version = "0.1.2"; sha256 = "19x0y70fn2pr06qsz4z6s67sym7dw5x3qa3z6jf3nmwncsy64qi2"; buildDepends = [ base bindings-DSL enumerator mtl vector ]; + jailbreak = true; homepage = "http://github.com/NathanHowell/liblinear-enumerator"; description = "liblinear iteratee"; license = stdenv.lib.licenses.bsd3; @@ -71575,7 +71995,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-examples" ]; homepage = "http://www.eecs.harvard.edu/~mainland/projects/libffi"; description = "FFI interface to libltdl"; license = stdenv.lib.licenses.bsd3; @@ -71670,6 +72089,7 @@ self: { version = "0.0.1.0"; sha256 = "07xg59f48jw78mjbx83bz1rc2fxvdnlb08cdfd7hwkj43a127kxn"; buildDepends = [ base bytestring curl ]; + jailbreak = true; homepage = "https://github.com/supki/haskell-random.org"; description = "Wrapper to Random.org API"; license = stdenv.lib.licenses.mit; @@ -71708,7 +72128,6 @@ self: { buildTools = [ c2hs ]; extraLibraries = [ ssh2 ]; pkgconfigDepends = [ libssh2 ]; - configureFlags = [ "-f-example-client" "-f-gcrypt" ]; homepage = "https://github.com/portnov/libssh2-hs"; description = "FFI bindings to libssh2 SSH2 client library (http://libssh2.org/)"; license = stdenv.lib.licenses.bsd3; @@ -71762,7 +72181,6 @@ self: { ]; extraLibraries = [ systemd-daemon ]; pkgconfigDepends = [ libsystemd-daemon ]; - configureFlags = [ "-fusepkgconfig" ]; description = "Haskell bindings for libsystemd-daemon"; license = stdenv.lib.licenses.lgpl21; }) { libsystemd-daemon = null; systemd-daemon = null;}; @@ -71781,6 +72199,7 @@ self: { uniplate unix-bytestring unordered-containers uuid vector ]; pkgconfigDepends = [ libsystemd ]; + jailbreak = true; homepage = "http://github.com/ocharles/libsystemd-journal"; description = "Haskell bindings to libsystemd-journal"; license = stdenv.lib.licenses.bsd3; @@ -71795,6 +72214,7 @@ self: { buildDepends = [ base bytestring glib ]; extraLibraries = [ tag_c ]; pkgconfigDepends = [ taglib_c ]; + jailbreak = true; homepage = "https://patch-tag.com/r/AndyStewart/libtagc/home"; description = "Binding to TagLib C library"; license = stdenv.lib.licenses.lgpl21; @@ -71834,7 +72254,6 @@ self: { sha256 = "01zvk86kg726lf2vnlr7dxiz7g3xwi5a4ak9gcfbwyhynkzjmsfi"; buildDepends = [ base bytestring mtl ]; extraLibraries = [ libxml2 ]; - configureFlags = [ "-fsmall_base" ]; description = "Binding to libxml2"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) libxml2;}; @@ -71850,6 +72269,7 @@ self: { buildDepends = [ base bytestring enumerator libxml-sax text transformers xml-types ]; + jailbreak = true; homepage = "http://john-millikin.com/software/libxml-enumerator/"; description = "Enumerator-based API for libXML's SAX interface"; license = stdenv.lib.licenses.mit; @@ -71877,6 +72297,7 @@ self: { sha256 = "1szz8zkm1w8dbfgix3ii896sc4vljgivcgx8j7vpny4ci9sfmn5a"; buildDepends = [ base bytestring libxml ]; extraLibraries = [ xslt ]; + jailbreak = true; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; }) { xslt = null;}; @@ -71911,7 +72332,6 @@ self: { async base HUnit lifted-base monad-control mtl tasty tasty-hunit tasty-th ]; - configureFlags = [ "-fmonad-control-1" ]; homepage = "https://github.com/maoe/lifted-async"; description = "Run lifted IO operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; @@ -71960,6 +72380,7 @@ self: { version = "0.1.0.0"; sha256 = "03h30lbhppi9hmpsc8fhsrsad6w9sjs9n53lz76czz3iqaknkcrb"; buildDepends = [ base text ]; + jailbreak = true; description = "Expand ligatures in unicode text"; license = stdenv.lib.licenses.mit; }) {}; @@ -72020,6 +72441,7 @@ self: { base data-default music-dynamics-literal music-pitch-literal prettify process semigroups vector-space ]; + jailbreak = true; description = "Bindings to Lilypond"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -72050,7 +72472,6 @@ self: { buildDepends = [ base containers limp vector ]; testDepends = [ base limp ]; buildTools = [ c2hs ]; - configureFlags = [ "-fembedded" ]; homepage = "https://github.com/amosr/limp-cbc"; description = "bindings for integer linear programming solver Coin/CBC"; license = stdenv.lib.licenses.mit; @@ -72087,7 +72508,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring containers ]; - configureFlags = [ "-fsmall_base" ]; description = "Simple command-line utility to convert text into PDF"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -72158,7 +72578,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers HUnit ]; - configureFlags = [ "-f-pure" "-f-check" ]; + jailbreak = true; description = "Finite maps for linear use"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -72186,6 +72606,7 @@ self: { version = "0.1.1.0"; sha256 = "0i6z10pgqcykkygl6kq63phx5hvwi2d84j2f5vw4nrnic59sm9jy"; buildDepends = [ base random ]; + jailbreak = true; homepage = "https://github.com/capsjac/linear-vect"; description = "A low-dimensional linear algebra library, operating on the Num typeclass"; license = stdenv.lib.licenses.bsd3; @@ -72287,7 +72708,7 @@ self: { aeson base bytestring containers hscolour http-types lens text wai wreq ]; - configureFlags = [ "-f-developer" ]; + jailbreak = true; homepage = "https://github.com/hlian/linklater"; description = "The fast and fun way to write Slack.com bots"; license = stdenv.lib.licenses.bsd3; @@ -72305,6 +72726,7 @@ self: { base monad-control transformers transformers-base ]; pkgconfigDepends = [ blkid ]; + jailbreak = true; description = "Linux libblkid"; license = stdenv.lib.licenses.lgpl21; }) { blkid = null;}; @@ -72316,6 +72738,7 @@ self: { version = "0.1.1.2"; sha256 = "0dd1ii1n6y9frilnkxikzahp9xrh3i334i7syvd8fyxp51dpzgy1"; buildDepends = [ base filepath ]; + jailbreak = true; description = "Very basic interface to the Linux CGroup Virtual Filesystem"; license = stdenv.lib.licenses.mit; }) {}; @@ -72341,7 +72764,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base unix ]; - configureFlags = [ "-f-examples" ]; homepage = "https://github.com/redneb/linux-file-extents"; description = "Retrieve file fragmentation information under Linux"; license = stdenv.lib.licenses.bsd3; @@ -72409,6 +72831,7 @@ self: { base binary bytestring containers directory filepath ghc-events mtl pretty process unix ]; + jailbreak = true; homepage = "https://github.com/bjpop/haskell-linux-perf"; description = "Read files generated by perf on Linux"; license = stdenv.lib.licenses.bsd3; @@ -72425,6 +72848,7 @@ self: { buildDepends = [ base bytestring mmap posix-waitpid process template-haskell unix ]; + jailbreak = true; description = "Wrapping of Linux' ptrace(2)"; license = stdenv.lib.licenses.mit; }) {}; @@ -72519,6 +72943,7 @@ self: { directory filepath http-types lio simple simple-templates text wai wai-extra warp ]; + jailbreak = true; homepage = "http://simple.cx"; description = "LIO support for the Simple web framework"; license = stdenv.lib.licenses.gpl3; @@ -72544,7 +72969,6 @@ self: { unordered-containers ]; buildTools = [ ocaml ]; - configureFlags = [ "-f-build-external" "-f-z3mem" ]; homepage = "https://github.com/ucsd-progsys/liquid-fixpoint"; description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; license = stdenv.lib.licenses.bsd3; @@ -72599,7 +73023,6 @@ self: { version = "0.4.1.3"; sha256 = "16w10xgh2y76q8aj5pgw4zq5p2phjzf5g1bmkacrm8gbwkp4v71s"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "Common not-so-common functions for lists"; license = stdenv.lib.licenses.bsd3; @@ -72613,6 +73036,7 @@ self: { sha256 = "0rvj4qnbqs7m8zrrqwak508z26fa6ssirly1jzwh9sy5ksiyd6df"; buildDepends = [ base ]; testDepends = [ base tasty tasty-hunit ]; + jailbreak = true; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -72636,6 +73060,7 @@ self: { version = "1.0"; sha256 = "147zb156g79a5p1w0b9vcvjy5x7nsrhng5rgjqq3cy3xpbam4nys"; buildDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/hellertime/list-mux"; description = "List Multiplexing"; license = stdenv.lib.licenses.bsd3; @@ -72693,7 +73118,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base binary containers dlist ]; - configureFlags = [ "-f-testing" ]; + jailbreak = true; homepage = "http://iki.fi/matti.niemenmaa/list-tries/"; description = "Tries and Patricia tries: finite sets and maps for list keys"; license = stdenv.lib.licenses.bsd3; @@ -72706,6 +73131,7 @@ self: { version = "0.2.3.1"; sha256 = "0mkhnqn7wxspzxvivhaksxmxp7d6x9bazhl28nl9gck56bpa90sm"; buildDepends = [ base bytestring ListLike text vector ]; + jailbreak = true; homepage = "http://jwlato.webfactional.com/haskell/listlike-instances"; description = "Extra instances of the ListLike class"; license = stdenv.lib.licenses.bsd3; @@ -72786,7 +73212,7 @@ self: { non-empty non-negative parsec pretty process stm stm-split strict transformers unix utility-ht wx wxcore ]; - configureFlags = [ "-fhttpserver" "-fmplayer" "-fgui" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer"; description = "Live coding of MIDI music"; license = "GPL"; @@ -72830,7 +73256,7 @@ self: { mtl network old-locale parsec pretty random template-haskell text time utf8-string uuid ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "http://wiki.secondlife.com/wiki/LLSD"; description = "An implementation of the LLSD data system"; license = stdenv.lib.licenses.mit; @@ -72848,7 +73274,6 @@ self: { base bytestring containers directory llvm-base mtl process type-level ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/llvm"; description = "Bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; @@ -72877,9 +73302,6 @@ self: { base bytestring containers filepath HUnit itanium-abi llvm-data-interop transformers uniplate unordered-containers ]; - configureFlags = [ - "-f-debugandersengraph" "-f-debugandersenconstraints" - ]; description = "A Haskell library for analyzing LLVM bitcode"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -72892,7 +73314,6 @@ self: { sha256 = "1f76nb85hnidp06v6lbl4aasac4h7ff9r8i054m8cnby2vc59r4n"; buildDepends = [ base mtl ]; extraLibraries = [ llvm ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/llvm"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; @@ -72924,7 +73345,6 @@ self: { version = "3.0.1.0"; sha256 = "07q6dvwkg7h6qkwq0a7719g82anipj2pk0xid5p24pvzssa9z22w"; buildDepends = [ base llvm-base ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/llvm"; description = "Utilities for bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; @@ -72963,7 +73383,7 @@ self: { buildDepends = [ base containers cpuid llvm-tf tfp transformers unsafe utility-ht ]; - configureFlags = [ "-fcpuid" "-f-buildtools" "-f-buildexamples" ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/llvm-extra/"; description = "Utility functions for the llvm interface"; license = stdenv.lib.licenses.bsd3; @@ -72991,7 +73411,6 @@ self: { transformers transformers-compat ]; buildTools = [ llvm-config ]; - configureFlags = [ "-f-debug" "-f-shared-llvm" ]; doCheck = false; description = "General purpose LLVM bindings"; license = stdenv.lib.licenses.bsd3; @@ -73038,6 +73457,7 @@ self: { base containers HUnit llvm-general-pure tasty tasty-hunit ]; buildTools = [ alex happy ]; + jailbreak = true; homepage = "https://github.com/tvh/llvm-general-quote"; description = "QuasiQuoting llvm code for llvm-general"; license = stdenv.lib.licenses.bsd3; @@ -73122,7 +73542,7 @@ self: { buildDepends = [ base containers llvm-base process tfp transformers ]; - configureFlags = [ "-f-buildexamples" "-f-developer" ]; + jailbreak = true; description = "Bindings to the LLVM compiler toolkit using type families"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -73146,6 +73566,7 @@ self: { llvm-analysis llvm-data-interop optparse-applicative parallel-io process-conduit unordered-containers xml ]; + jailbreak = true; description = "Useful tools built on llvm-analysis"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -73274,7 +73695,6 @@ self: { tagged-exception-core test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - configureFlags = [ "-f-pedantic" ]; homepage = "https://github.com/trskop/lock-file"; description = "Provide exclusive access to a resource using lock file"; license = stdenv.lib.licenses.bsd3; @@ -73320,7 +73740,6 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; - configureFlags = [ "-f-lib-werror" "-ftest-doctests" ]; homepage = "http://github.com/analytics/log-domain/"; description = "Log-domain arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -73337,6 +73756,7 @@ self: { buildDepends = [ base bytestring extensible-effects fast-logger time ]; + jailbreak = true; homepage = "https://github.com/ibotty/log-effect"; description = "An extensible log effect using extensible-effects"; license = stdenv.lib.licenses.mit; @@ -73351,6 +73771,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers json parsec ]; + jailbreak = true; homepage = "https://github.com/haroldl/log2json"; description = "Turn log file records into JSON"; license = "GPL"; @@ -73363,7 +73784,6 @@ self: { version = "0.12.1"; sha256 = "1k13jjqv4df341hcj9hzrlisfx9wrsmyqvzi6ricx341d9z4ch05"; buildDepends = [ array base ]; - configureFlags = [ "-fuseffi" "-fsplitbase" ]; homepage = "http://code.haskell.org/~wren/"; description = "Log-domain floating point numbers"; license = stdenv.lib.licenses.bsd3; @@ -73464,7 +73884,6 @@ self: { version = "0.1.0.0"; sha256 = "061x6g92334m2776xclh8mcbjind3l595pggc0g7yi4qzs31zbdc"; buildDepends = [ base logict transformers ]; - configureFlags = [ "-f-old-applicative" "-fsafe-st" ]; homepage = "http://github.com/sonyandy/logicst"; description = "Backtracking mutable references in the ST and IO monads"; license = stdenv.lib.licenses.bsd3; @@ -73498,6 +73917,7 @@ self: { base containers curl directory haskell98 HTTP markov-chain mtl parsec process random regex-compat strict tagsoup xml ]; + jailbreak = true; description = "Useful utilities for the Lojban language"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -73554,6 +73974,7 @@ self: { base bytestring containers data-default hack hack-contrib mps mtl template utf8-string ]; + jailbreak = true; homepage = "http://github.com/nfjinjing/loli"; description = "A minimum web dev DSL in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -73591,6 +74012,7 @@ self: { version = "1.0.0"; sha256 = "1yvw91gn1iyw72rbq455zzrbb3pq8ph9cv1c6800qzjyxx0694bd"; buildDepends = [ base mtl ]; + jailbreak = true; description = "A monad transformer supporting various styles of while loop"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -73689,6 +74111,7 @@ self: { aeson base binary bytestring cryptohash directory hex network process split ]; + jailbreak = true; homepage = "https://github.com/tvorcesky/loshadka"; description = "Minecraft 1.7 server proxy that answers to queries when the server is offline"; license = stdenv.lib.licenses.mit; @@ -73705,6 +74128,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base containers haskell98 mtl wx wxcore ]; + jailbreak = true; homepage = "http://www.ncc.up.pt/~pbv/stuff/lostcities"; description = "An implementation of an adictive two-player card game"; license = "GPL"; @@ -73736,6 +74160,7 @@ self: { ansi-wl-pprint base base-unicode-symbols cmdtheline text usb usb-id-database vector ]; + jailbreak = true; homepage = "https://github.com/roelvandijk/ls-usb"; description = "List USB devices"; license = stdenv.lib.licenses.bsd3; @@ -73754,7 +74179,6 @@ self: { buildDepends = [ base bytestring Cabal containers directory filepath pretty process ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/lscabal"; description = "List exported modules from a set of .cabal files"; license = stdenv.lib.licenses.bsd3; @@ -73776,6 +74200,7 @@ self: { attoparsec base containers hspec2 language-css language-css-attoparsec text ]; + jailbreak = true; homepage = "https://github.com/dbp/lss"; description = "Lexical Style Sheets - a language for writing styles that is focused around lexical (ie, static) scoping and re-use of large components"; license = stdenv.lib.licenses.bsd3; @@ -73807,7 +74232,6 @@ self: { base Cabal containers filepath ghc glib gtk3 mtl parsec pretty text transformers ]; - configureFlags = [ "-fgtk3" ]; homepage = "http://www.leksah.org"; description = "Leksah tool kit"; license = "GPL"; @@ -73853,6 +74277,7 @@ self: { attoparsec base binary bytestring custom-prelude ghc-prim pretty text ]; + jailbreak = true; description = "Library functions for reading and writing Lua chunks"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -73924,6 +74349,7 @@ self: { compact-string-fix feed happstack happstack-server HTTP mongoDB mtl network SHA text time ]; + jailbreak = true; homepage = "http://www.imn.htwk-leipzig.de/~abau/lucienne"; description = "Server side feed aggregator/reader"; license = "GPL"; @@ -73977,6 +74403,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base haskell-src-exts text vector ]; + jailbreak = true; homepage = "https://github.com/bitc/lushtags"; description = "Create ctags compatible tags files for Haskell programs"; license = stdenv.lib.licenses.mit; @@ -73990,6 +74417,7 @@ self: { sha256 = "023kckpcdn6n5dyq0dip0132jp1w30hdx1qb5hbsd3js86j52a12"; buildDepends = [ base mtl parsec ]; testDepends = [ base mtl parsec ]; + jailbreak = true; homepage = "https://github.com/Zankoku-Okuno/luthor"; description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; license = stdenv.lib.licenses.bsd3; @@ -74017,9 +74445,6 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th text time transformers vector ]; - configureFlags = [ - "-f-generic" "-f-getonce" "-f-chaselev" "-f-debug" - ]; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -74135,6 +74560,7 @@ self: { test-framework-hunit test-framework-quickcheck2 ]; extraLibraries = [ lzma ]; + jailbreak = true; homepage = "http://github.com/alphaHeavy/lzma-enumerator"; description = "Enumerator interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; @@ -74149,7 +74575,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base binary parsec process ]; - configureFlags = [ "-f-cli" "-fsplit-base" ]; description = "Obtain the host MAC address on *NIX and Windows"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -74424,6 +74849,7 @@ self: { http-client-multipart http-conduit monad-control network text transformers ]; + jailbreak = true; homepage = "https://github.com/AndrewRademacher/mailgun"; description = "Connector to Rackspace's Mailgun Service"; license = stdenv.lib.licenses.mit; @@ -74436,6 +74862,7 @@ self: { version = "0.2.7"; sha256 = "1g4s2xscj6dpkcghs5lws658ki0rhriivpdr5ilcycvr28k3l35q"; buildDepends = [ base containers srcloc text ]; + jailbreak = true; homepage = "http://www.eecs.harvard.edu/~mainland/"; description = "Pretty printing designed for printing source code"; license = stdenv.lib.licenses.bsd3; @@ -74455,6 +74882,7 @@ self: { base bytestring cmdargs monad-loops old-locale threads time unix zeromq-haskell ]; + jailbreak = true; description = "Majordomo protocol for ZeroMQ"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -74515,6 +74943,7 @@ self: { version = "0.1"; sha256 = "0sc2fa45a046lw5x5z839gb1zk0d5nj663ghxajiclm6iw65kl2n"; buildDepends = [ base directory filepath HSH process ]; + jailbreak = true; homepage = "http://darcsden.com/kowey/makedo"; description = "Helper for writing redo scripts in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -74547,6 +74976,7 @@ self: { filepath gtk gtk-serialized-event manatee-core mtl stm template-haskell text unix utf8-string ]; + jailbreak = true; description = "The Haskell/Gtk+ Integrated Live Environment"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74591,6 +75021,7 @@ self: { gio GoogleSuggest gtk manatee-core mtl network proc regex-tdfa split stm text unix utf8-string ]; + jailbreak = true; description = "Multithread interactive input/search framework for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74609,6 +75040,7 @@ self: { base binary containers dbus-client derive filepath gtk manatee-core mtl stm text utf8-string webkit ]; + jailbreak = true; description = "Browser extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74632,6 +75064,7 @@ self: { mtl network old-locale old-time process regex-tdfa split stm template-haskell text time unix utf8-string ]; + jailbreak = true; description = "The core of Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74653,6 +75086,7 @@ self: { directory filepath gio glib gtk manatee-core mtl network old-locale old-time regex-tdfa stm template-haskell text utf8-string ]; + jailbreak = true; description = "Download Manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74672,6 +75106,7 @@ self: { base binary bytestring containers dbus-client dbus-core derive filepath gtk gtksourceview2 manatee-core regex-tdfa stm text ]; + jailbreak = true; description = "Editor extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74691,6 +75126,7 @@ self: { base binary containers dbus-client derive filepath gio glib gtk manatee-core mtl old-locale old-time stm text utf8-string ]; + jailbreak = true; description = "File manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74710,6 +75146,7 @@ self: { base binary containers dbus-client derive filepath gio glib gtk gtkimageview manatee-core regex-tdfa stm text utf8-string ]; + jailbreak = true; description = "Image viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74733,6 +75170,7 @@ self: { gtksourceview2 manatee-core MorseCode mtl nano-md5 network regex-posix split stm template-haskell text unix utf8-string ]; + jailbreak = true; description = "IRC client extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74753,6 +75191,7 @@ self: { filepath gio gtk libtagc manatee-core process random regex-tdfa stm text time unix utf8-string ]; + jailbreak = true; description = "Mplayer client extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74772,6 +75211,7 @@ self: { base binary cairo containers dbus-client derive filepath gtk manatee-core mtl poppler stm text utf8-string ]; + jailbreak = true; description = "PDF viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74790,6 +75230,7 @@ self: { base binary containers dbus-client derive filepath gtk manatee-core proc stm text ]; + jailbreak = true; description = "Process manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74809,6 +75250,7 @@ self: { base binary containers curl dbus-client derive download-curl feed filepath gtk manatee-core stm text utf8-string webkit ]; + jailbreak = true; description = "Feed reader extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74828,6 +75270,7 @@ self: { base binary bytestring containers dbus-client dbus-core derive filepath gtk gtksourceview2 manatee-core regex-tdfa stm text ]; + jailbreak = true; description = "Template code to create Manatee application"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74846,6 +75289,7 @@ self: { base binary containers dbus-client derive filepath gtk manatee-core stm text unix vte ]; + jailbreak = true; description = "Terminal Emulator extension for Manatee"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74865,6 +75309,7 @@ self: { base binary bytestring containers dbus-client dbus-core derive filepath gtk manatee-core regex-tdfa stm text ]; + jailbreak = true; description = "Welcome module to help user play Manatee quickly"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -74919,7 +75364,6 @@ self: { buildDepends = [ array base bytestring containers directory filepath GLUT hslua time ]; - configureFlags = [ "-f-sse4" "-f-fast" ]; homepage = "http://gitorious.org/maximus/mandulia"; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = stdenv.lib.licenses.gpl3; @@ -74956,7 +75400,7 @@ self: { template-haskell text time tls transformers transformers-base unordered-containers utf8-string vector wai warp x509-system ]; - configureFlags = [ "-fconduit11" "-f-debug" ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Bindings to the MangoPay API"; license = stdenv.lib.licenses.bsd3; @@ -74993,6 +75437,7 @@ self: { buildDepends = [ base containers gloss mtl splines vector vector-space ]; + jailbreak = true; homepage = "https://github.com/paolino/marionetta"; description = "A study of marionetta movements"; license = stdenv.lib.licenses.bsd3; @@ -75121,7 +75566,6 @@ self: { version = "0.0.3.3"; sha256 = "1y9fjsf6dg6a9ha75w2szq4gi5fhq89l1r7wqb20hmadkcjjplx8"; buildDepends = [ base containers random transformers ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://code.haskell.org/~thielema/markov-chain/"; description = "Markov Chains for generating random sequences with a user definable behaviour"; license = "GPL"; @@ -75172,6 +75616,7 @@ self: { base cmdargs directory glib gtk MissingH mtl pandoc temporary transformers webkit ]; + jailbreak = true; description = "A simple markup document preview (markdown, textile, reStructuredText)"; license = "unknown"; }) {}; @@ -75197,7 +75642,6 @@ self: { testDepends = [ aeson base exceptions tasty tasty-hunit text transformers ]; - configureFlags = [ "-f-development" ]; homepage = "https://github.com/lunaryorn/marmalade-upload"; description = "Upload packages to Marmalade"; license = stdenv.lib.licenses.mit; @@ -75242,6 +75686,7 @@ self: { persistent-template regex-posix text transformers twitter-conduit twitter-types ]; + jailbreak = true; homepage = "https://github.com/minamiyama1994/chomado-bot-on-haskell/tree/minamiyama1994"; description = "@minamiyama1994_bot on haskell"; license = stdenv.lib.licenses.gpl3; @@ -75309,6 +75754,7 @@ self: { old-locale pandoc pandoc-types process SHA test-framework test-framework-hunit time unix ]; + jailbreak = true; description = "A program for creating and managing a static weblog with LaTeX math and function graphs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -75328,6 +75774,7 @@ self: { base binary bytestring cmdargs containers directory fgl filepath graphviz HTTP process safe tagsoup text ]; + jailbreak = true; description = "Discover your (academic) ancestors!"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -75342,6 +75789,7 @@ self: { sha256 = "1agqbhl6r40swsvsllyx9vf9hc9a709wvg546rh6fn315waifqqk"; buildDepends = [ array base containers haskell98 ix-shapable mtl ]; buildTools = [ c2hs ]; + jailbreak = true; homepage = "http://community.haskell.org/~TracyWadleigh/mathlink"; description = "Write Mathematica packages in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -75358,7 +75806,7 @@ self: { buildDepends = [ array base Cabal filepath unix ]; buildTools = [ matlab ]; extraLibraries = [ eng mx ]; - configureFlags = [ "-f-mcr" "-fruntime" "-fengine" ]; + jailbreak = true; description = "Matlab bindings and interface"; license = stdenv.lib.licenses.bsd3; }) { eng = null; matlab = null; mx = null;}; @@ -75496,6 +75944,7 @@ self: { containers-unicode-symbols HaLeX IndentParser mtl parsec process uuagc uuagc-cabal ]; + jailbreak = true; homepage = "http://rochel.info/maxsharing/"; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = stdenv.lib.licenses.bsd3; @@ -75514,7 +75963,7 @@ self: { buildDepends = [ base benchpress Cabal directory filepath mtl old-time process time ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://code.google.com/p/maybench/"; description = "Automated benchmarking tool"; license = stdenv.lib.licenses.bsd3; @@ -75545,7 +75994,6 @@ self: { base bytestring codec-mbox containers fclabels hsemail mtl parsec process pureMD5 random ]; - configureFlags = [ "-f-useless" "-f-use_hutt" ]; homepage = "https://github.com/np/mbox-tools"; description = "A collection of tools to process mbox files"; license = stdenv.lib.licenses.bsd3; @@ -75560,6 +76008,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base gloss ]; + jailbreak = true; homepage = "http://www.cas.mcmaster.ca/~anand/"; license = stdenv.lib.licenses.mit; }) {}; @@ -75586,6 +76035,7 @@ self: { version = "0.1.2.2"; sha256 = "14z1x9dqnjj391nrlngs9s887yqh3arc7kfgk0m3d89vrkc185vq"; buildDepends = [ base MonadRandom ]; + jailbreak = true; description = "MCMC applied to probabilistic program synthesis"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -75599,7 +76049,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base network pipes split transformers ]; - configureFlags = [ "-f-build-debug" "-fbuild-examples" ]; + jailbreak = true; homepage = "https://github.com/DougBurke/hmcpi"; description = "Connect to MineCraft running on a Raspberry PI"; license = stdenv.lib.licenses.publicDomain; @@ -75626,6 +76076,7 @@ self: { sha256 = "0z650y4fnxr4mk0i5s8axjbq14dcpgnrzkafbpg17vfhl2v5a3z3"; buildDepends = [ base bytestring text ]; extraLibraries = [ mecab ]; + jailbreak = true; homepage = "http://github.com/tanakh/hsmecab"; description = "A Haskell binding to MeCab"; license = stdenv.lib.licenses.bsd3; @@ -75751,6 +76202,7 @@ self: { testDepends = [ base containers HUnit mtl test-framework test-framework-hunit ]; + jailbreak = true; description = "A functional scripting language"; license = stdenv.lib.licenses.mit; }) {}; @@ -75776,6 +76228,7 @@ self: { version = "0.2.1"; sha256 = "1a6wzznhpz06c0y3wrjf5bskdd8myild8v0p0x1h0swhmy6di2yd"; buildDepends = [ base bytestring network utf8-light ]; + jailbreak = true; homepage = "http://github.com/olegkat/haskell-memcached"; description = "haskell bindings for memcached"; license = "unknown"; @@ -75797,6 +76250,7 @@ self: { testDepends = [ base bytestring data-default-class hspec HUnit network process ]; + jailbreak = true; homepage = "https://github.com/philopon/memcached-binary"; description = "memcached client using binary protocol"; license = stdenv.lib.licenses.mit; @@ -75810,6 +76264,7 @@ self: { sha256 = "07cmjx10wbpfcblnd23rzdkma04nyjcpd1g58gp0phajj6xj4i7a"; editedCabalFile = "a1712ea7643a27f1fb40a771fdae76282818b5d317fe8da6a22e705b06bc3b3e"; buildDepends = [ base hxt ]; + jailbreak = true; homepage = "https://github.com/eggzilla/memexml"; description = "Library for reading Meme XML output"; license = stdenv.lib.licenses.bsd3; @@ -75822,6 +76277,7 @@ self: { version = "0.1"; sha256 = "1gijza29wj79k8czfg4mghq7nqsbpyf1scnm9hmg2ykhnllpzvy3"; buildDepends = [ base direct-sqlite ]; + jailbreak = true; homepage = "https://gitorious.org/memo-sqlite"; description = "memoize functions using SQLite3 database"; license = stdenv.lib.licenses.bsd3; @@ -75859,9 +76315,6 @@ self: { version = "1.0.0.1"; sha256 = "193qz3wn7lz18aywddr9qyn8v08ifv2yxwr68c67p5mn8vr8mvmw"; buildDepends = [ base old-time ]; - configureFlags = [ - "-f-big_endian64" "-f-use_altivec" "-f-use_sse2" "-f-small_base" - ]; homepage = "http://code.haskell.org/~dons/code/mersenne-random"; description = "Generate high quality pseudorandom numbers using a SIMD Fast Mersenne Twister"; license = stdenv.lib.licenses.bsd3; @@ -75874,7 +76327,6 @@ self: { version = "0.2.0.4"; sha256 = "0qh72ynfg1k4c70qxdzsa6f1x9wyxil2d9gi85c879wrc41k899h"; buildDepends = [ base old-time random ]; - configureFlags = [ "-f-small_base" ]; homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; license = stdenv.lib.licenses.bsd3; @@ -75941,7 +76393,6 @@ self: { abstract-deque abstract-par base bytestring containers deepseq mtl mwc-random transformers vector ]; - configureFlags = [ "-f-affinity" ]; homepage = "https://github.com/simonmar/monad-par"; description = "Provides the monad-par interface, but based on modular scheduler \"mix-ins\""; license = stdenv.lib.licenses.bsd3; @@ -75960,7 +76411,6 @@ self: { abstract-deque abstract-par abstract-par-accelerate accelerate array base meta-par QuickCheck transformers vector ]; - configureFlags = [ "-f-debug" "-f-cuda" "-fnewaccelerate" ]; homepage = "https://github.com/simonmar/monad-par"; description = "Support for integrated Accelerate computations within Meta-par"; license = stdenv.lib.licenses.bsd3; @@ -75973,6 +76423,7 @@ self: { version = "0.2.0.0"; sha256 = "148c7vgh8zxgy5fb0xflk0lzm5d233d1ynjncpiwi1bb9jzbdm3r"; buildDepends = [ base text time ]; + jailbreak = true; homepage = "http://github.com/cutsea110/metadata"; description = "metadata library for semantic web"; license = stdenv.lib.licenses.bsd3; @@ -76045,6 +76496,7 @@ self: { version = "0.1"; sha256 = "1q807wvmj1q605257jj60h0j2wal6ypjiad9wkjmv836p3mis5q9"; buildDepends = [ base network ]; + jailbreak = true; description = "Client for the metrics aggregator Metricsd"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76071,6 +76523,7 @@ self: { buildDepends = [ base haskell-src-meta parsec split template-haskell ]; + jailbreak = true; homepage = "https://github.com/matt76k/mi"; description = "Multiple Instance for Haskell"; license = stdenv.lib.licenses.mit; @@ -76130,7 +76583,6 @@ self: { base bytestring event-list explicit-exception non-negative QuickCheck transformers utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Handling of MIDI messages and files"; license = "GPL"; @@ -76143,7 +76595,6 @@ self: { version = "0.2.1"; sha256 = "13dc299d252nrll1vzp7pl1ncv0qw3xhz5b3kqnc8hb0g4mkkgpc"; buildDepends = [ alsa-seq base data-accessor midi utility-ht ]; - configureFlags = [ "-f-buildexamples" "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Convert between datatypes of the midi and the alsa packages"; license = stdenv.lib.licenses.bsd3; @@ -76162,6 +76613,7 @@ self: { buildDepends = [ alsa-core alsa-seq base containers random transformers wx wxcore ]; + jailbreak = true; homepage = "http://www.youtube.com/watch?v=cOlR73h2uII"; description = "A Memory-like (Concentration, Pairs, ...) game for tones"; license = stdenv.lib.licenses.bsd3; @@ -76178,6 +76630,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ alsa-core alsa-seq base containers gtk mtl stm ]; + jailbreak = true; description = "A control midi surface"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76224,7 +76677,6 @@ self: { unordered-containers wai wai-app-file-cgi wai-logger warp ]; testDepends = [ base hspec http-client ]; - configureFlags = [ "-f-tls" ]; homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "High performance web server on WAI/warp"; license = stdenv.lib.licenses.bsd3; @@ -76261,6 +76713,7 @@ self: { random transformers ]; testDepends = [ base bytestring hspec network QuickCheck ]; + jailbreak = true; description = "A Kafka client for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76387,7 +76840,7 @@ self: { base binary binary-generic bytestring cairo containers directory filepath glade gtk random time ]; - configureFlags = [ "-f-tests" ]; + jailbreak = true; description = "Minesweeper game which is always solvable without guessing"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76454,6 +76907,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ ansi-terminal base MissingH process time ]; + jailbreak = true; homepage = "http://github.com/jhickner/minions"; description = "A fast parallel ssh tool"; license = stdenv.lib.licenses.bsd3; @@ -76485,7 +76939,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base colock directory mtl network stm unix ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; description = "simple 1-to-N interprocess communication"; license = "LGPL"; }) {}; @@ -76505,6 +76959,7 @@ self: { base data-accessor data-accessor-template directory filepath mtl old-locale old-time process safe split template-haskell ]; + jailbreak = true; homepage = "http://tener.github.com/haskell-minirotate/"; description = "Minimalistic file rotation utility"; license = stdenv.lib.licenses.bsd3; @@ -76572,6 +77027,7 @@ self: { authenticate-oauth base bytestring conduit lens monad-logger text transformers twitter-conduit ]; + jailbreak = true; homepage = "https://github.com/minamiyama1994/mirror-tweet"; description = "Tweet mirror"; license = stdenv.lib.licenses.gpl3; @@ -76641,6 +77097,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base containers simple-tabular ]; + jailbreak = true; homepage = "http://wiki.cs.pdx.edu/bartforge/oms"; description = "Find optimal mixed strategies for two-player games"; license = stdenv.lib.licenses.mit; @@ -76673,7 +77130,6 @@ self: { base directory extensible-exceptions mtl old-locale old-time pcre-light pretty readline ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/mkcabal"; description = "Generate cabal files for a Haskell project"; license = "GPL"; @@ -76713,7 +77169,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring ]; - configureFlags = [ "-f-mmaptest" ]; description = "Memory mapped files for POSIX and Windows"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76763,6 +77218,7 @@ self: { base binary bytestring containers dawg regex-tdfa regex-tdfa-text tagset-positional text zlib ]; + jailbreak = true; homepage = "https://github.com/vjeranc/moan"; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = stdenv.lib.licenses.bsd3; @@ -76779,6 +77235,7 @@ self: { buildDepends = [ base base-unicode-symbols bytestring cereal network ]; + jailbreak = true; homepage = "https://github.com/roelvandijk/modbus-tcp"; description = "Communicate with Modbus devices over TCP"; license = stdenv.lib.licenses.bsd3; @@ -76796,7 +77253,7 @@ self: { testDepends = [ ansi-terminal base containers filepath parsec QuickCheck ]; - configureFlags = [ "-fbuildtests" ]; + jailbreak = true; description = "A parser for the modelica language"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76842,6 +77299,7 @@ self: { base basic-prelude bytestring containers data-default hashable system-filepath text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "A new Prelude featuring first class modules"; license = stdenv.lib.licenses.mit; @@ -76854,6 +77312,7 @@ self: { version = "0.1.0.0"; sha256 = "1izinrgd9a6sm57isg8jgs4wjidczwqcxl6vg5h4gy5zz9dg8xnx"; buildDepends = [ base classy-prelude modular-prelude ]; + jailbreak = true; homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "Reifying ClassyPrelude a la ModularPrelude"; license = stdenv.lib.licenses.mit; @@ -76881,7 +77340,6 @@ self: { testDepends = [ base containers filepath haskell-src-exts HUnit process ]; - configureFlags = [ "-fbuild-tests" ]; homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; @@ -76899,6 +77357,7 @@ self: { base exceptions filepath ghc ghc-paths template-haskell temporary transformers ]; + jailbreak = true; homepage = "https://github.com/jfischoff/modulespection"; description = "Template Haskell for introspecting a module's declarations"; license = stdenv.lib.licenses.bsd3; @@ -76919,6 +77378,7 @@ self: { atto-lisp base data-default directory haskell-src language-c mtl nats pandoc-types parsec prettify process semigroups text ]; + jailbreak = true; description = "Modular C code generator"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -76954,7 +77414,7 @@ self: { explicit-exception filepath html HTTP network old-locale old-time parsec process transformers unix utility-ht ]; - configureFlags = [ "-f-dynamic" ]; + jailbreak = true; homepage = "http://code.haskell.org/mohws/"; description = "Modular Haskell Web Server"; license = stdenv.lib.licenses.bsd3; @@ -77063,6 +77523,7 @@ self: { base monad-control mtl-evil-instances transformers transformers-base ]; + jailbreak = true; description = "Exstensible monadic exceptions"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -77090,6 +77551,7 @@ self: { version = "0.1"; sha256 = "15xwavq4yc3xfif4isjh9m0q9h1bh7pmv2i3rh99sndmd34cdpwc"; buildDepends = [ base monad-control ]; + jailbreak = true; description = "Type class for monads which support a fork operation"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -77148,7 +77610,6 @@ self: { fast-logger lifted-base monad-control monad-loops mtl resourcet stm stm-chans template-haskell text transformers transformers-base ]; - configureFlags = [ "-ftemplate_haskell" ]; homepage = "https://github.com/kazu-yamamoto/logger"; description = "A class of monads which can log messages"; license = stdenv.lib.licenses.mit; @@ -77166,6 +77627,7 @@ self: { base bytestring fast-logger hsyslog monad-logger text transformers ]; testDepends = [ base monad-logger shelly ]; + jailbreak = true; homepage = "https://github.com/docmunch/monad-logger-rsyslog"; description = "rsyslog output for monad-logger"; license = stdenv.lib.licenses.mit; @@ -77178,7 +77640,6 @@ self: { version = "0.4.2.1"; sha256 = "1dprwndc0bxzpmrkj1xb9kzjrg3i06zsg43yaabn5x5gcaj8is56"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "https://github.com/mokus0/monad-loops"; description = "Monadic loops"; license = stdenv.lib.licenses.publicDomain; @@ -77280,7 +77741,6 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time ]; - configureFlags = [ "-f-newgeneric" "-f-chaselev" ]; homepage = "https://github.com/simonmar/monad-par"; description = "A library for parallel programming based on a monad"; license = stdenv.lib.licenses.bsd3; @@ -77335,6 +77795,7 @@ self: { sha256 = "0n3cxa94wd3hjvy9jgf3d8p7qfb9jaaf29simjya7rlcb673pg3l"; editedCabalFile = "64e1f99ea3e8c36d5d4e86794d1fc02966e7036b43ae4e1dcf01ade192962611"; buildDepends = [ base extensible-exceptions transformers ]; + jailbreak = true; homepage = "http://andersk.mit.edu/haskell/monad-peel/"; description = "Lift control operations like exception catching through monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -77371,6 +77832,7 @@ self: { version = "0.1.0"; sha256 = "04y9s2b4hz2f8khr0q62xy0f6l2v896s7x03i3s18i14bwscqlax"; buildDepends = [ base ghc-prim mtl ]; + jailbreak = true; description = "Fast monads and monad transformers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -77538,7 +78000,6 @@ self: { version = "3.7.3"; sha256 = "17m9rj6spr5n9jlhwwvk8p40yrpwgz3j9kj3pjq7mpyrc1ssfd0q"; buildDepends = [ base ]; - configureFlags = [ "-f-base3" ]; homepage = "http://wiki.github.com/yav/monadlib"; description = "A collection of monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -77551,6 +78012,7 @@ self: { version = "0.2"; sha256 = "14byhdcby094qpgmkblysnplz5r88xnfk7rnfddihzz4jgjzlvy1"; buildDepends = [ base monadLib ]; + jailbreak = true; homepage = "http://github.com/aristidb/monadLib-compose"; description = "Arrow-like monad composition for monadLib"; license = stdenv.lib.licenses.bsd3; @@ -77626,7 +78088,6 @@ self: { version = "0.7.6"; sha256 = "083ppr53ac85r5ybndngsfwxgalj63giz32aa7wpcm629b9g4lxc"; buildDepends = [ base containers mtl parsec pretty random ]; - configureFlags = [ "-f-debug" ]; homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; @@ -77644,7 +78105,6 @@ self: { extraLibraries = [ gecodeint gecodekernel gecodesearch gecodeset gecodesupport ]; - configureFlags = [ "-f-debug" ]; homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; @@ -77698,6 +78158,7 @@ self: { buildDepends = [ base filepath haskell-src-exts monadloc pretty syb ]; + jailbreak = true; homepage = "http://github.com/pepeiborra/monadloc-pp"; description = "A preprocessor for generating monadic call traces"; license = stdenv.lib.licenses.publicDomain; @@ -77721,6 +78182,7 @@ self: { version = "0.2.0.0"; sha256 = "1iqr5p3va5sxmpvydwqz2src54j5njcyrzn9p5apc60nv7yv6x4c"; buildDepends = [ base mtl transformers ]; + jailbreak = true; description = "Monad classes, using functional dependencies"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -77743,7 +78205,6 @@ self: { version = "0.0.2"; sha256 = "0i586zh6247jfmkw2x27j0aq47yz1c71irj9iwrlx1zrmvzak1yv"; buildDepends = [ base transformers ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/monadtransform"; description = "A type-class for transforming monads (homomorphism) in a transformer"; license = stdenv.lib.licenses.bsd3; @@ -77763,7 +78224,7 @@ self: { network pool-conduit stm transformers transformers-base ]; testDepends = [ base bytestring doctest hspec transformers ]; - configureFlags = [ "-f-develop" ]; + jailbreak = true; homepage = "https://github.com/notogawa/monarch"; description = "Monadic interface for TokyoTyrant"; license = stdenv.lib.licenses.bsd3; @@ -77804,6 +78265,7 @@ self: { base data-default hspec lifted-base monad-control mongoDB network text transformers ]; + jailbreak = true; homepage = "https://github.com/docmunch/haskell-mongodb-queue"; description = "message queue using MongoDB"; license = stdenv.lib.licenses.mit; @@ -77822,6 +78284,7 @@ self: { attoparsec base blaze-builder blaze-textual bytestring case-insensitive containers http-types text zeromq-haskell ]; + jailbreak = true; description = "Mongrel2 Handler Library"; license = stdenv.lib.licenses.mit; }) {}; @@ -77846,6 +78309,7 @@ self: { version = "0.1.0.2"; sha256 = "1qnbw9pd06czwyj2xcsjdigg7bj8d23p3ljnnkgd3d0r67qxxlxm"; buildDepends = [ base bytestring text vector ]; + jailbreak = true; homepage = "http://github.com/JohnLato/mono-foldable"; description = "Folds for monomorphic containers"; license = stdenv.lib.licenses.bsd3; @@ -77957,6 +78421,7 @@ self: { version = "0.1.0.1"; sha256 = "1klgwv3sd9zmqpj157rypln51kcwml9b1fyaxnip0a1525h6c2s9"; buildDepends = [ base contravariant semigroups transformers ]; + jailbreak = true; description = "Extra classes/functions about monoids"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -77972,7 +78437,7 @@ self: { buildDepends = [ array base bytestring containers fingertree parallel text ]; - configureFlags = [ "-f-optimize" ]; + jailbreak = true; homepage = "http://github.com/ekmett/monoids"; description = "Deprecated: Use 'reducers'"; license = stdenv.lib.licenses.bsd3; @@ -78006,6 +78471,7 @@ self: { stats-web stm system-uuid text time unordered-containers zeromq-haskell ]; + jailbreak = true; homepage = "http://github.com/bumptech/montage"; description = "Riak Resolution Proxy"; license = stdenv.lib.licenses.bsd3; @@ -78029,6 +78495,7 @@ self: { safe stats-web stm system-uuid text text-format time unordered-containers zeromq-haskell ]; + jailbreak = true; homepage = "http://github.com/bumptech/montage-haskell-client"; description = "Riak Resolution Proxy Client"; license = stdenv.lib.licenses.bsd3; @@ -78049,6 +78516,7 @@ self: { base gsl-random ieee754 primitive QuickCheck random test-framework test-framework-quickcheck2 transformers vector ]; + jailbreak = true; homepage = "http://github.com/patperry/hs-monte-carlo"; description = "A monad and transformer for Monte Carlo calculations"; license = stdenv.lib.licenses.bsd3; @@ -78126,6 +78594,7 @@ self: { pipes text transformers ]; buildTools = [ alex happy ]; + jailbreak = true; description = "Bare-bones calculus of constructions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78176,6 +78645,7 @@ self: { version = "0.1.3"; sha256 = "1zcilskpslpqyrbwpabwbry4p3kpcfca94wchh9dkq9g8pg8laxi"; buildDepends = [ ansi-terminal base bytestring split text ]; + jailbreak = true; description = "Multi-dimensional parametric pretty-printer with color"; license = "GPL"; }) {}; @@ -78192,6 +78662,7 @@ self: { ansi-terminal base containers data-lens-fd data-lens-template mtl orders text transformers ]; + jailbreak = true; description = "a monadic, extensible pretty printing library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78245,6 +78716,7 @@ self: { buildDepends = [ base directory filepath gtk mtl process template-haskell unix ]; + jailbreak = true; homepage = "https://github.com/sebadoom/mpvguihs"; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = stdenv.lib.licenses.gpl3; @@ -78262,6 +78734,7 @@ self: { buildDepends = [ attoparsec base bytestring monad-loops mtl network singletons text ]; + jailbreak = true; homepage = "http://github.com/k00mi/mqtt-hs"; description = "A MQTT client library"; license = stdenv.lib.licenses.gpl3; @@ -78286,6 +78759,7 @@ self: { base bytestring QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://msgpack.org/"; description = "A Haskell implementation of MessagePack"; license = stdenv.lib.licenses.bsd3; @@ -78307,6 +78781,7 @@ self: { msgpack peggy shakespeare-text template-haskell text ]; testDepends = [ base hspec ]; + jailbreak = true; homepage = "http://msgpack.org/"; description = "An IDL Compiler for MessagePack"; license = stdenv.lib.licenses.bsd3; @@ -78326,6 +78801,7 @@ self: { mtl network network-conduit random text ]; testDepends = [ async base hspec mtl network ]; + jailbreak = true; homepage = "http://msgpack.org/"; description = "A MessagePack-RPC Implementation"; license = stdenv.lib.licenses.bsd3; @@ -78382,6 +78858,7 @@ self: { SHA test-framework test-framework-hunit test-framework-quickcheck2 text time transformers unordered-containers vector watchdog ]; + jailbreak = true; description = "Library to communicate with Mt.Gox"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78405,6 +78882,7 @@ self: { version = "2.2.1"; sha256 = "1icdbj2rshzn0m1zz5wa7v3xvkf6qw811p4s7jgqwvx1ydwrvrfa"; buildDepends = [ base transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/mtl"; description = "Monad classes, using functional dependencies"; license = stdenv.lib.licenses.bsd3; @@ -78421,6 +78899,7 @@ self: { buildDepends = [ base monad-control mtl transformers transformers-base ]; + jailbreak = true; description = "Instances for the mtl classes for all monad transformers"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -78432,6 +78911,7 @@ self: { version = "2.0.1"; sha256 = "0z56ycpfgbrxhk8k74rk254yyhqix8ryz6ni8i7aki294wh2cvwn"; buildDepends = [ mtl transformers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/mtl-prelude"; description = "Reexports of most definitions from \"mtl\" and \"transformers\""; license = stdenv.lib.licenses.mit; @@ -78479,6 +78959,7 @@ self: { sha256 = "164q7p81c5an4w3pqpfk94rgn0banfs2yp7fhbbckdyb2qymsbww"; buildDepends = [ base filepath unix ]; extraLibraries = [ mtp ]; + jailbreak = true; description = "Bindings to libmtp"; license = "LGPL"; }) { mtp = null;}; @@ -78521,6 +79002,7 @@ self: { http-conduit http-types process random snap-core snap-server stm text transformers ]; + jailbreak = true; description = "Continuous deployment server for use with GitHub"; license = "unknown"; }) {}; @@ -78552,6 +79034,7 @@ self: { version = "0.1.0.4"; sha256 = "1if1ip22y7w59lkyshn4ic4p46zrfs4kcdzzjai9l8xbscavgdl6"; buildDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/jsnajder/multex-east-msd"; description = "MULTEXT-East morphosyntactic descriptors"; license = stdenv.lib.licenses.bsd3; @@ -78569,7 +79052,6 @@ self: { isExecutable = true; buildDepends = [ base utf8-string ]; testDepends = [ barecheck base QuickCheck quickpull ]; - configureFlags = [ "-f-programs" ]; homepage = "https://github.com/massysett/multiarg"; description = "Command lines for options that take multiple arguments"; license = stdenv.lib.licenses.bsd3; @@ -78631,6 +79113,7 @@ self: { base binary containers ghc-prim hashable keys math-functions newtype unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/multipass/"; description = "Folding data with multiple named passes"; license = stdenv.lib.licenses.bsd3; @@ -78655,6 +79138,7 @@ self: { version = "0.0.0.2"; sha256 = "0xzjl3nsm6wgbqd6rjn0bf9jhiw6l6ql5gj5m8xqccv8363i5v2r"; buildDepends = [ base multiplate transformers ]; + jailbreak = true; description = "Shorter, more generic functions for Multiplate"; license = stdenv.lib.licenses.mit; }) {}; @@ -78696,6 +79180,7 @@ self: { buildDepends = [ base containers mtl multirec syb template-haskell th-expand-syns ]; + jailbreak = true; description = "Alternative multirec instances deriver"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78707,6 +79192,7 @@ self: { version = "0.0.1"; sha256 = "1cj1rfjqxwc06vr5w12fqbcpjb0fjsphf8vp40sp2naizpvvnmzs"; buildDepends = [ base binary multirec ]; + jailbreak = true; description = "Generic Data.Binary instances using MultiRec."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78754,7 +79240,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base mtl tfp transformers ]; - configureFlags = [ "-f-build-example" "-f-build-test" ]; homepage = "https://github.com/lspitzner/multistate"; description = "like mtl's ReaderT/StateT, but more than one contained value/type"; license = stdenv.lib.licenses.bsd3; @@ -78775,6 +79260,7 @@ self: { base blaze-html ConfigFile directory Glob happstack-server HStringTemplate markdown MissingH process text ]; + jailbreak = true; homepage = "http://github.com/kaashif-hymabaccus/muon"; description = "Static blog generator"; license = stdenv.lib.licenses.bsd3; @@ -78792,6 +79278,7 @@ self: { AspectAG base containers HList ListLike template-haskell TTTAS uu-parsinglib uulib ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; @@ -78878,6 +79365,7 @@ self: { aeson base blaze-svg bytestring lens music-pitch music-preludes music-score process ]; + jailbreak = true; description = "Diagrams-based visualization of musical data structures"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78894,6 +79382,7 @@ self: { adjunctions aeson base containers data-default lens music-dynamics music-pitch roman-numerals semigroups ]; + jailbreak = true; description = "Musical instruments, parts and playing techniques"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78911,6 +79400,7 @@ self: { base containers data-interval lens music-pitch-literal nats positive semigroups type-unary vector-space vector-space-points ]; + jailbreak = true; description = "Musical pitch representation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78948,6 +79438,7 @@ self: { vector-space vector-space-points ]; testDepends = [ base process tasty tasty-golden ]; + jailbreak = true; description = "Some useful preludes for the Music Suite"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78971,6 +79462,7 @@ self: { NumInstances parsec prettify process semigroups transformers transformers-compat vector-space vector-space-points ]; + jailbreak = true; description = "Musical score and part representation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78988,6 +79480,7 @@ self: { aeson base bytestring lens monadplus music-pitch-literal music-preludes music-score semigroups unordered-containers ]; + jailbreak = true; description = "Interaction with Sibelius"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -79052,6 +79545,7 @@ self: { smallcheck stm test-framework test-framework-hunit test-framework-smallcheck text time transformers xmlhtml ]; + jailbreak = true; homepage = "http://github.com/metabrainz/mass-mail"; description = "Send an email to all MusicBrainz editors"; license = stdenv.lib.licenses.gpl3; @@ -79066,7 +79560,7 @@ self: { version = "0.1.2"; sha256 = "0sn8gzymf6xpdksd7v2xyb4y2iks2l09hyw0rch109lgrnsy5gp8"; buildDepends = [ base containers directory HaXml old-time pretty ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "https://troglodita.di.uminho.pt/svn/musica/work/MusicXML"; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = stdenv.lib.licenses.bsd3; @@ -79159,6 +79653,7 @@ self: { buildDepends = [ base iteratee MonadCatchIO-transformers transformers vector ]; + jailbreak = true; homepage = "http://jwlato.webfactional.com/haskell/mutable-iter"; description = "iteratees based upon mutable buffers"; license = stdenv.lib.licenses.bsd3; @@ -79178,6 +79673,7 @@ self: { base directory filepath hslogger hslogger-template mtl network-dbus process ]; + jailbreak = true; homepage = "http://github.com/Tener/mute-unmute"; description = "Watches your screensaver and (un)mutes music when you (un)lock the screen"; license = stdenv.lib.licenses.gpl3; @@ -79224,6 +79720,7 @@ self: { control-event Crypto data-binary-ieee754 hexpat http-enumerator maccatcher mtl network parsec time uuid ]; + jailbreak = true; description = "Client library for metaverse systems like Second Life"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -79279,6 +79776,7 @@ self: { syb template-haskell UISF ]; testDepends = [ ansi-terminal base Cabal Euterpea QuickCheck ]; + jailbreak = true; homepage = "http://haskell.cs.yale.edu/"; description = "None"; license = stdenv.lib.licenses.bsd3; @@ -79307,6 +79805,7 @@ self: { base bytestring cereal clientsession containers mtl random regex-posix snap snap-core time ]; + jailbreak = true; description = "Sessions and continuations for Snap web apps"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -79325,6 +79824,7 @@ self: { base bytestring clientsession heist mtl mysnapsession snap snap-core snap-server text time ]; + jailbreak = true; description = "Example projects using mysnapsession"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -79338,7 +79838,6 @@ self: { buildDepends = [ base bytestring containers ]; buildTools = [ mysqlConfig ]; extraLibraries = [ zlib ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/mysql"; description = "A low-level MySQL client library"; license = stdenv.lib.licenses.bsd3; @@ -79374,7 +79873,6 @@ self: { attoparsec base base16-bytestring blaze-builder blaze-textual bytestring mysql old-locale pcre-light text time ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/mysql-simple"; description = "A mid-level MySQL client library"; license = stdenv.lib.licenses.bsd3; @@ -79495,6 +79993,7 @@ self: { version = "0.1"; sha256 = "1db12f2q395yk6pwz5gnb2q0kf4s868z8d1vvwa7vngnfc1h924i"; buildDepends = [ base containers ]; + jailbreak = true; homepage = "http://github.com/nominolo/named-lock"; description = "A named lock that is created on demand"; license = stdenv.lib.licenses.bsd3; @@ -79554,7 +80053,6 @@ self: { sha256 = "0rrwa1c3mval1jm4siqyx1vk14ibifya62hni13cimcdafj35fnq"; buildDepends = [ base bytestring ]; extraLibraries = [ openssl ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://www.jasani.org/search/label/nano-hmac"; description = "Bindings to OpenSSL HMAC"; license = stdenv.lib.licenses.bsd3; @@ -79568,7 +80066,6 @@ self: { sha256 = "18db3y76w0kv2m7h3lrqxcag4lc7519b2j80113g6hhm1wxkpabk"; buildDepends = [ base bytestring ]; extraLibraries = [ openssl ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://code.haskell.org/~dons/code/nano-md5"; description = "Efficient, ByteString bindings to OpenSSL"; license = stdenv.lib.licenses.bsd3; @@ -79587,6 +80084,7 @@ self: { buildDepends = [ base BNFC-meta cmdargs containers mtl parsec pretty transformers ]; + jailbreak = true; description = "A toy dependently-typed language"; license = "unknown"; }) {}; @@ -79612,6 +80110,7 @@ self: { sha256 = "06jb8s3jxjiz7r6dn8xx33xqd76f2r5q1mshsz41z4q0khf4wdp3"; buildDepends = [ base bytestring ]; extraLibraries = [ nanomsg ]; + jailbreak = true; description = "nanomsg - scalability protocols library"; license = stdenv.lib.licenses.publicDomain; }) { inherit (pkgs) nanomsg;}; @@ -79642,6 +80141,7 @@ self: { version = "0.1.1"; sha256 = "00ghdzkzshk24g7v42hq7zq0dxsq8vjpkslj41dxdnx0zizwbn3m"; buildDepends = [ base bytestring ListLike ]; + jailbreak = true; description = "An implementation of attoparsec-like parser around list-like"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -79688,7 +80188,6 @@ self: { version = "1"; sha256 = "0r6s8l4s0yq3x2crrkv0b8zac13magfasr9v8hnq6rn1icsfhic0"; buildDepends = [ base hashable ]; - configureFlags = [ "-fhashable" ]; homepage = "http://github.com/ekmett/nats/"; description = "Natural numbers"; license = stdenv.lib.licenses.bsd3; @@ -79726,6 +80225,7 @@ self: { base type-equality type-level-natural-number type-level-natural-number-induction ]; + jailbreak = true; description = "Natural numbers tagged with a type-level representation of the number"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -79761,7 +80261,6 @@ self: { version = "0.0.3"; sha256 = "1l594lkd3yb52lhh0raygvk3jlzwkcc2pmcqjmg02dmd6j6mw42x"; buildDepends = [ base text utf8-string ]; - configureFlags = [ "-f-unicode-collation" "-f-filepath" ]; homepage = "not yet available"; description = "Natural-order string comparison"; license = stdenv.lib.licenses.bsd3; @@ -79828,10 +80327,6 @@ self: { buildDepends = [ base containers text transformers ]; buildTools = [ c2hs ]; extraLibraries = [ ncurses ]; - configureFlags = [ - "-f-force-c2hs-newtype-pointer-hooks" "-f-force-narrow-library" - "-f-use-pkgconfig" - ]; patchPhase = "find . -type f -exec sed -i -e 's|ncursesw/||' {} \\;"; homepage = "https://john-millikin.com/software/haskell-ncurses/"; description = "Modernised bindings to GNU ncurses"; @@ -79878,6 +80373,7 @@ self: { base containers haskell-src-meta mtl parsec parsec-extra template-haskell text vector ]; + jailbreak = true; homepage = "http://scrambledeggsontoast.github.io/2014/09/28/needle-announce/"; description = "ASCII-fied arrow notation"; license = stdenv.lib.licenses.mit; @@ -79915,7 +80411,6 @@ self: { base cmdargs containers directory extra filepath GoogleChart json old-time process time ]; - configureFlags = [ "-f-small" ]; homepage = "http://community.haskell.org/~ndm/"; description = "General tools for Neil"; license = stdenv.lib.licenses.bsd3; @@ -79983,6 +80478,7 @@ self: { dawg directory filepath IntervalMap monad-ox mtl network polimorf polysoup sgd tagsoup temporary text text-binary tokenize vector ]; + jailbreak = true; homepage = "https://github.com/kawu/nerf"; description = "Nerf, the named entity recognition tool based on linear-chain CRFs"; license = stdenv.lib.licenses.bsd3; @@ -80011,6 +80507,7 @@ self: { buildDepends = [ base bytestring containers ghc-binary hslogger monad-loops network ]; + jailbreak = true; homepage = "http://phaul.hobby-site.org/node/4123"; description = "Concurrent over the network execution library"; license = stdenv.lib.licenses.bsd3; @@ -80051,6 +80548,7 @@ self: { process QuickCheck random syb test-framework test-framework-hunit test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "http://frenetic-lang.org"; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = stdenv.lib.licenses.bsd3; @@ -80085,6 +80583,7 @@ self: { base bytestring cereal containers monad-loops unix ]; buildTools = [ c2hs ]; + jailbreak = true; homepage = "http://netlink-hs.googlecode.com/"; description = "Netlink communication for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -80097,7 +80596,6 @@ self: { version = "0.3.1"; sha256 = "0f3fwgpg0p3ajgxfzbqr4z04ly5cdbhjxms5xbd0k2ixdwgyxm67"; buildDepends = [ base binary containers syb ]; - configureFlags = [ "-fbase4" ]; description = "Netlist AST"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80109,7 +80607,6 @@ self: { version = "0.3.1"; sha256 = "15daik7l0pjqilya01l5rl84g2fyjwkap1md0nx82gxcp8m1v76k"; buildDepends = [ base netlist pretty ]; - configureFlags = [ "-fbase4" ]; description = "Convert a Netlist AST to VHDL"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80145,6 +80642,7 @@ self: { aeson base binary bytestring mtl network template-haskell text transformers ]; + jailbreak = true; homepage = "http://github.com/DanBurton/netspec"; description = "Simplify static Networking tasks"; license = stdenv.lib.licenses.bsd3; @@ -80181,7 +80679,6 @@ self: { test-framework-quickcheck2 ]; pkgconfigDepends = [ nettle ]; - configureFlags = [ "-fusepkgconfig" ]; homepage = "https://github.com/stbuehler/haskell-nettle"; description = "safe nettle binding"; license = stdenv.lib.licenses.mit; @@ -80199,6 +80696,7 @@ self: { base bimap binary bytestring containers mtl nettle-openflow network network-data random time ]; + jailbreak = true; description = "FRP for controlling networks of OpenFlow switches"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80248,7 +80746,6 @@ self: { base containers deepseq parallel profunctors random semigroups time transformers ]; - configureFlags = [ "-f-testprogram" ]; homepage = "http://hub.darcs.net/ertes/netwire"; description = "Functional reactive programming library"; license = stdenv.lib.licenses.bsd3; @@ -80310,7 +80807,7 @@ self: { testDepends = [ base Cabal QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-f-benchmark" ]; + jailbreak = true; homepage = "http://github.com/sebnow/haskell-network-address"; description = "IP data structures and textual representation"; license = stdenv.lib.licenses.mit; @@ -80329,7 +80826,6 @@ self: { aeson attoparsec base bytestring case-insensitive http-client http-client-tls http-types text time tls ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/apiengine/network-api-support"; description = "Toolkit for building http client libraries over Network.Http.Conduit"; license = stdenv.lib.licenses.bsd3; @@ -80362,6 +80858,7 @@ self: { version = "0.1.3.4"; sha256 = "19m10mj9nqsa7s0syv9dyhqkhvmf2h7yna8n7bq0xkdp8m9l0g96"; buildDepends = [ base bytestring network unix ]; + jailbreak = true; homepage = "http://github.com/tibbe/network-bytestring"; description = "Fast, memory-efficient, low-level networking"; license = stdenv.lib.licenses.bsd3; @@ -80437,7 +80934,6 @@ self: { version = "0.5.2"; sha256 = "0vbmg1m4qylzbmj3z5746srfkiwvh32qi9zyc39gc87bfw2gzn8s"; buildDepends = [ base bytestring cereal pretty prettyclass ]; - configureFlags = [ "-fsmall_base" ]; description = "Library for network data structures and their serialization"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80454,6 +80950,7 @@ self: { base binary bytestring containers mtl network parsec unix utf8-string ]; + jailbreak = true; description = "D-Bus"; license = "unknown"; }) {}; @@ -80485,7 +80982,6 @@ self: { version = "0.1.5"; sha256 = "11hwgdw03a39k3akjy5qlg9zsb7z8qiikvdmcqr2dhj6ykmfwsvk"; buildDepends = [ base bytestring enumerator network transformers ]; - configureFlags = [ "-fnetwork-includes-bytestring" ]; homepage = "https://john-millikin.com/software/network-enumerator/"; description = "Enumerators for network sockets"; license = stdenv.lib.licenses.mit; @@ -80534,6 +81030,7 @@ self: { version = "0.0.1"; sha256 = "0qa5rbbcw9axg7mj4kjj027hfsclnw85cj8nmi6jvrzq2yhhk56c"; buildDepends = [ base bytestring ioctl network ]; + jailbreak = true; description = "Haskell bindings for the ifreq structure"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80630,6 +81127,7 @@ self: { base bytestring foreign-storable-asymmetric ioctl network network-interfacerequest ]; + jailbreak = true; description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80709,7 +81207,6 @@ self: { buildDepends = [ base base64-bytestring bytestring network network-simple ]; - configureFlags = [ "-f-documentation" "-f-example" ]; homepage = "https://github.com/angerman/network-service"; description = "Provide a service at the data type level"; license = stdenv.lib.licenses.mit; @@ -80757,6 +81254,7 @@ self: { base bytestring certificate cprng-aes exceptions network network-simple tls tls-extra transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/network-simple-tls"; description = "Simple interface to TLS secured network sockets"; license = stdenv.lib.licenses.bsd3; @@ -80786,6 +81284,7 @@ self: { base binary bytestring cereal enumerator network stm text transformers ]; + jailbreak = true; description = "ByteString and Text streams for networking"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -80807,6 +81306,7 @@ self: { directory filepath logfloat mwc-random optparse-applicative random-fu statistics stm text transformers vector ]; + jailbreak = true; homepage = "https://github.com/bgamari/bayes-stack"; description = "A few network topic model implementations for bayes-stack"; license = stdenv.lib.licenses.bsd3; @@ -80839,7 +81339,6 @@ self: { testDepends = [ base network network-transport network-transport-tests ]; - configureFlags = [ "-f-use-mock-network" ]; homepage = "http://haskell-distributed.github.com"; description = "TCP instantiation of Network.Transport"; license = stdenv.lib.licenses.bsd3; @@ -80883,9 +81382,7 @@ self: { base network-transport network-transport-tests tasty tasty-hunit zeromq4-haskell ]; - configureFlags = [ - "-f-unsafe" "-f-distributed-process-tests" "-f-install-benchmarks" - ]; + jailbreak = true; description = "ZeroMQ backend for network-transport"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80928,7 +81425,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base haskell98 network webserver ]; - configureFlags = [ "-f-buildexamples" ]; + jailbreak = true; homepage = "http://github.com/michaelmelanson/network-websocket"; description = "WebSocket library"; license = stdenv.lib.licenses.bsd3; @@ -80945,6 +81442,7 @@ self: { buildDepends = [ base binary bytestring containers network time transformers ]; + jailbreak = true; description = "Networked-game support library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80996,7 +81494,7 @@ self: { filepath HUnit mtl process QuickCheck safe test-framework test-framework-hunit test-framework-quickcheck2 text Unixutils uuid ]; - configureFlags = [ "-f-tests" ]; + jailbreak = true; description = "A trivially simple app to create things from simple templates"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -81020,6 +81518,7 @@ self: { sha256 = "1xghpqmpwnjyk944m9nsfzk2jlyqwdvcr5zrmr66d4n650cf1m2b"; buildDepends = [ base ]; testDepends = [ base hspec HUnit ]; + jailbreak = true; description = "A typeclass and set of functions for working with newtypes, with generics support"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -81035,6 +81534,7 @@ self: { buildDepends = [ base haskell-src-meta newtype syb template-haskell ]; + jailbreak = true; homepage = "http://github.com/mgsloan/newtype-th"; description = "A template haskell deriver to create Control.Newtype instances."; license = stdenv.lib.licenses.bsd3; @@ -81076,6 +81576,7 @@ self: { buildDepends = [ attoparsec base machines mtl parseargs resourcet sqlite-simple text ]; + jailbreak = true; homepage = "http://github.com/YoEight/ngrams-loader"; description = "Ngrams loader based on http://www.ngrams.info format"; license = stdenv.lib.licenses.mit; @@ -81154,6 +81655,7 @@ self: { version = "0.2.2.5"; sha256 = "17aqzk1kq670fwawia0qjmd8ld1b0h8zh0w8j8x4y48hlzyb75xb"; buildDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://haskell.gonitro.io"; description = "Haskell bindings for Nitro"; license = stdenv.lib.licenses.bsd3; @@ -81210,6 +81712,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers nlp-scores split text ]; + jailbreak = true; homepage = "https://bitbucket.org/gchrupala/lingo"; description = "NLP scoring command-line programs"; license = stdenv.lib.licenses.bsd3; @@ -81287,6 +81790,7 @@ self: { network parsec ]; testDepends = [ base HTF HUnit parsec QuickCheck string-qq ]; + jailbreak = true; homepage = "http://github.com/brow/noise"; description = "A friendly language for graphic design"; license = stdenv.lib.licenses.mit; @@ -81312,7 +81816,6 @@ self: { sha256 = "163g3j3xrx1jkrbg2wnha3yyxyg1mn7kabmbpg82y3rbl3ihy1p7"; buildDepends = [ base QuickCheck utility-ht ]; testDepends = [ base QuickCheck utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://code.haskell.org/~thielema/non-negative/"; description = "Non-negative numbers"; license = "GPL"; @@ -81364,7 +81867,6 @@ self: { version = "0.3.7"; sha256 = "147dbq19n18ixfz6bhx9yi9ppr9j3wnc5dfz8kx5gwihy64b8l1b"; buildDepends = [ base primitive vector ]; - configureFlags = [ "-f-debug" ]; description = "Various iterative algorithms for optimization of nonlinear functions"; license = "GPL"; }) {}; @@ -81459,6 +81961,7 @@ self: { sha256 = "1qdqwwy16n43djgrynzn8xv64vv450my6z2xddypafxwhvp7jaqy"; buildDepends = [ base template-haskell ]; testDepends = [ base template-haskell ]; + jailbreak = true; description = "Avoiding the C preprocessor via cunning use of Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -81514,7 +82017,7 @@ self: { testDepends = [ base hspec HUnit mime-mail text yesod yesod-core yesod-test ]; - configureFlags = [ "-f-no-icu" "-f-library-only" "-f-dev" ]; + jailbreak = true; homepage = "https://bitbucket.org/wuzzeb/notmuch-web"; description = "A web interface to the notmuch email indexer"; license = "GPL"; @@ -81527,6 +82030,7 @@ self: { version = "0.3"; sha256 = "14lphbssmcvabg1rqzhy4bwvssfyzb69b2g9n45vd22xnvf9q0il"; buildDepends = [ base containers numeric-prelude primes ]; + jailbreak = true; description = "NumericPrelude extras"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -81542,6 +82046,7 @@ self: { buildDepends = [ base binary containers numeric-prelude reflection tagged ]; + jailbreak = true; description = "Linear algebra for the numeric-prelude framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -81617,6 +82122,7 @@ self: { aeson base containers filepath scotty split stm text transformers wai-extra warp ]; + jailbreak = true; homepage = "https://github.com/Tener/null-canvas"; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = stdenv.lib.licenses.bsd3; @@ -81669,6 +82175,7 @@ self: { base base-unicode-symbols HUnit integer-gmp QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "https://github.com/roelvandijk/numerals"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; @@ -81691,6 +82198,7 @@ self: { base base-unicode-symbols containers containers-unicode-symbols fingertree HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/roelvandijk/numerals-base"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; @@ -81733,7 +82241,7 @@ self: { array base containers deepseq non-negative parsec QuickCheck random storable-record utility-ht ]; - configureFlags = [ "-f-buildtests" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; description = "An experimental alternative hierarchy of numeric type classes"; license = stdenv.lib.licenses.bsd3; @@ -81761,7 +82269,6 @@ self: { version = "0.2.0.1"; sha256 = "110v2frn085pggjzl3l8wqgr4vcdd5h29x2wak2a59x16ngjg7ga"; buildDepends = [ array base ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Numeric_Quest"; description = "Math and quantum mechanics"; license = "GPL"; @@ -81852,6 +82359,7 @@ self: { buildDepends = [ base cairo containers glade glib gtk mtl parsec random ]; + jailbreak = true; description = "An interactive GUI for manipulating L-systems"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -81872,7 +82380,6 @@ self: { http-client http-types mtl network network-uri text time transformers ]; - configureFlags = [ "-fnetwork-uri" ]; description = "Simple OAuth for http-client"; license = stdenv.lib.licenses.mit; }) {}; @@ -81903,9 +82410,6 @@ self: { array AspectAG base containers ghc-prim HList language-c mtl murder template-haskell transformers uu-parsinglib uulib ]; - configureFlags = [ - "-f-t5" "-f-t3" "-f-t2" "-f-t1" "-f-l4" "-f-l3" "-f-l2" "-f-l1" - ]; homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "Oberon0 Compiler"; license = "LGPL"; @@ -81982,6 +82486,7 @@ self: { buildDepends = [ array base bytestring containers hexpr mtl parsec symbol text ]; + jailbreak = true; homepage = "https://github.com/Zankoku-Okuno/octopus/"; description = "Lisp with more dynamism, more power, more simplicity"; license = stdenv.lib.licenses.gpl3; @@ -81999,6 +82504,7 @@ self: { base either monads-tf transformers vect-floating ]; extraLibraries = [ libX11 mesa ovr udev Xinerama ]; + jailbreak = true; homepage = "http://github.com/cpdurham/oculus"; description = "Oculus Rift ffi providing head tracking data"; license = stdenv.lib.licenses.bsd3; @@ -82015,7 +82521,6 @@ self: { sha256 = "1q7ywczm2d5inrjqgz3j8vfk5sj2yixvwdkzlfs2whd0gadbcfa0"; buildDepends = [ base HTTP network network-uri ]; testDepends = [ base HUnit test-framework test-framework-hunit ]; - configureFlags = [ "-fnetwork-uri" ]; description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -82027,6 +82532,7 @@ self: { version = "0.1"; sha256 = "03sb2bmjw8v01908zkzmw8njsmqy5k2hcnv6ajbia7n8qawyhivj"; buildDepends = [ base parsec3 vector ]; + jailbreak = true; homepage = "https://github.com/acfoltzer/off-simple"; description = "A parser for simplified-syntax OFF files"; license = stdenv.lib.licenses.bsd3; @@ -82090,6 +82596,7 @@ self: { sha256 = "1p34xybkf5079pq5hkildaz6skx06f6s3qg0k2i73jhh93q3ckiq"; buildDepends = [ base hogre ]; extraLibraries = [ OIS ]; + jailbreak = true; description = "wrapper for OIS input manager for use with hogre"; license = stdenv.lib.licenses.bsd3; }) { OIS = null;}; @@ -82132,7 +82639,7 @@ self: { base bytestring fay fay-jquery fay-text lens mtl snap snap-core snap-loader-dynamic snap-loader-static snap-server snaplet-fay text ]; - configureFlags = [ "-f-development" ]; + jailbreak = true; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = "GPL"; }) {}; @@ -82150,6 +82657,7 @@ self: { buildDepends = [ base optparse-applicative shakespeare-text shelly text ]; + jailbreak = true; homepage = "https://github.com/pcapriotti/omaketex"; description = "A simple tool to generate OMakefile for latex files"; license = stdenv.lib.licenses.bsd3; @@ -82186,6 +82694,7 @@ self: { buildDepends = [ base bytestring cmdargs conduit sandi transformers ]; + jailbreak = true; description = "data encoding and decoding command line utilities"; license = "unknown"; }) {}; @@ -82218,6 +82727,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring network process random ]; + jailbreak = true; homepage = "https://github.com/crackleware/on-demand-ssh-tunnel"; description = "Program that sends traffic through SSH tunnels on-demand"; license = stdenv.lib.licenses.mit; @@ -82335,10 +82845,6 @@ self: { HTTP mtl network old-time parsec pretty process syb texmath utf8-string xhtml xml zip-archive ]; - configureFlags = [ - "-f-citeproc" "-flibrary" "-fwrappers" "-fexecutable" - "-f-highlighting" - ]; homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; @@ -82378,6 +82884,7 @@ self: { version = "0.1.1"; sha256 = "1i38lhy1wla0xqgcbyf06179r1hs6194wqd8gg26q491ddc0vp3l"; buildDepends = [ base mtl witness ]; + jailbreak = true; description = "open witnesses"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -82390,6 +82897,7 @@ self: { sha256 = "040hjkqd2zqkd8zbnfv8wmyzkfgckiv4njryilx1gpyp7c6qxpwn"; buildDepends = [ base bindings-DSL Cabal vector ]; pkgconfigDepends = [ opencv ]; + jailbreak = true; homepage = "www.github.com/arjuncomar/opencv-raw.git"; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = stdenv.lib.licenses.bsd3; @@ -82402,6 +82910,7 @@ self: { version = "0.0.0"; sha256 = "1bv729ljw07arz9fzg0nqj6fkpwkxkjds073cz3zr9in0a5b1531"; buildDepends = [ base hxt template-haskell th-lift ]; + jailbreak = true; homepage = "https://github.com/fabianbergmark/OpenDataTable"; description = "A library for working with Open Data Tables"; license = stdenv.lib.licenses.bsd2; @@ -82453,7 +82962,6 @@ self: { buildDepends = [ base bytestring containers HsOpenSSL HTTP monadLib network time xml ]; - configureFlags = [ "-fsplit-base" "-f-examples" ]; homepage = "http://github.com/elliottt/hsopenid"; description = "An implementation of the OpenID-2.0 spec."; license = stdenv.lib.licenses.bsd3; @@ -82496,6 +83004,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 utf8-string ]; + jailbreak = true; homepage = "http://github.com/singpolyma/OpenPGP-Crypto"; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; @@ -82542,6 +83051,7 @@ self: { test-framework-hunit test-framework-quickcheck2 transformers utf8-string ]; + jailbreak = true; homepage = "http://github.com/singpolyma/OpenPGP-CryptoAPI"; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; @@ -82558,7 +83068,6 @@ self: { buildDepends = [ base binary bytestring hosc process random transformers utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell OpenSoundControl utilities"; license = "GPL"; @@ -82679,7 +83188,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base mtl random ]; - configureFlags = [ "-fbuildexamples" ]; homepage = "http://haskell.org/haskellwiki/Operational"; description = "Implementation of difficult monads made easy with operational semantics"; license = stdenv.lib.licenses.bsd3; @@ -82692,7 +83200,6 @@ self: { version = "0.4"; sha256 = "1bnr6lkcf2qs7pvrmd8a5xmklcg67l64b776hzclfvxqy1qil29x"; buildDepends = [ base directory xml ]; - configureFlags = [ "-fsmall_base" ]; description = "Representing and handling OPML subscription information"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -82766,6 +83273,7 @@ self: { base cmdargs containers fgl flite graphviz haskell98 mtl parsec uniplate wl-pprint ]; + jailbreak = true; homepage = "http://optimusprime.posterous.com/"; description = "A supercompiler for f-lite"; license = stdenv.lib.licenses.bsd3; @@ -82779,7 +83287,6 @@ self: { sha256 = "1i1nl81gg5fndf3vafirpmklikn4xpy791is6ff8j7pzys0qfj8g"; buildDepends = [ base ]; testDepends = [ base directory doctest filepath QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/optional"; description = "Using type-classes for optional function arguments"; license = stdenv.lib.licenses.bsd3; @@ -82810,7 +83317,6 @@ self: { sha256 = "0rsmwalmnry71w23k6sg0a307xgb2s71j9s12zqqq380fw6c1bhm"; buildDepends = [ base old-locale options time ]; testDepends = [ base chell options time ]; - configureFlags = [ "-fold-locale" ]; homepage = "https://john-millikin.com/software/haskell-options/"; description = "Command-line option types for dates and times"; license = stdenv.lib.licenses.mit; @@ -82882,7 +83388,6 @@ self: { aeson base bytestring errors hspec lens QuickCheck smallcheck text wreq ]; - configureFlags = [ "-f-network-specs" ]; description = "An API client for http://orchestrate.io/."; license = stdenv.lib.licenses.asl20; }) {}; @@ -82902,6 +83407,7 @@ self: { filestore hscolour mtl nano-md5 parsec process QuickCheck salvia salvia-extras stm time unix xml ]; + jailbreak = true; description = "Haskell Wiki Library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -82920,6 +83426,7 @@ self: { base extensible-exceptions mtl network orchid Pipe salvia salvia-extras stm ]; + jailbreak = true; description = "Haskell Wiki Demo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -82947,6 +83454,7 @@ self: { buildDepends = [ base containers math-functions statistics vector vector-space ]; + jailbreak = true; homepage = "http://github.com/ekmett/order-statistics/"; description = "L-Estimators for robust statistics"; license = stdenv.lib.licenses.bsd3; @@ -82970,6 +83478,7 @@ self: { version = "0.1.0.0"; sha256 = "1ry6flg5sh3hl1xpkqk67ayd4y0xx3j2pwcz26q1pgqn6m84plzr"; buildDepends = [ base containers ]; + jailbreak = true; description = "basic orders"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -82997,6 +83506,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ attoparsec base text ]; + jailbreak = true; description = "Organize scala imports"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -83016,6 +83526,7 @@ self: { attoparsec base HUnit old-locale tasty tasty-hunit text thyme unordered-containers ]; + jailbreak = true; description = "A parser and writer for org-mode flavored documents"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83068,6 +83579,7 @@ self: { persistent-sqlite persistent-template pool-conduit stm stm-chans text time transformers transformers-base ]; + jailbreak = true; description = "Download Open Street Map tiles"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83143,6 +83655,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base Cabal Diff filepath haskell-src-exts ]; + jailbreak = true; description = "Haskell Package Versioning Tool"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83246,6 +83759,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base deepseq directory-tree ]; + jailbreak = true; homepage = "https://github.com/Tener/archlinux-utils"; description = "Read whole Pacman database which pushes it into the memory cache"; license = stdenv.lib.licenses.bsd3; @@ -83262,6 +83776,7 @@ self: { buildDepends = [ base containers hmidi minioperational transformers ]; + jailbreak = true; homepage = "https://github.com/fumieval/padKONTROL"; description = "Controlling padKONTROL native mode"; license = stdenv.lib.licenses.bsd3; @@ -83286,6 +83801,7 @@ self: { template-haskell text time transformers transformers-base unordered-containers ]; + jailbreak = true; homepage = "http://github.com/brendanhay/pagerduty"; description = "Client library for PagerDuty Integration and REST APIs"; license = "unknown"; @@ -83385,11 +83901,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - configureFlags = [ - "-fhttps" "-fmake-pandoc-man-pages" "-fold-locale" "-fnetwork-uri" - "-fmake-pandoc-man-pages" "-fhttps" "-f-trypandoc" - "-f-embed_data_files" - ]; + configureFlags = [ "-fhttps" "-fmake-pandoc-man-pages" ]; homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; @@ -83417,10 +83929,6 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; - configureFlags = [ - "-f-test_citeproc" "-f-unicode_collation" "-f-embed_data_files" - "-fbibutils" "-fsmall_base" - ]; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83479,7 +83987,6 @@ self: { ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ cairo pango ]; - configureFlags = [ "-fnew-exception" ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; @@ -83546,7 +84053,7 @@ self: { uniplate ]; buildTools = [ alex ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; description = "Paragon"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83571,7 +84078,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers extensible-exceptions random ]; - configureFlags = [ "-f-tests" "-f-fuzz" "-f-benchmark" ]; + jailbreak = true; homepage = "http://batterseapower.github.com/parallel-io"; description = "Combinators for executing IO actions in parallel on a thread pool"; license = stdenv.lib.licenses.bsd3; @@ -83660,6 +84167,7 @@ self: { buildDepends = [ base bytestring containers mtl text transformers utf8-string word8 ]; + jailbreak = true; homepage = "https://bitbucket.org/tdammers/parcom-lib"; description = "A simple parser-combinator library, a bit like Parsec but without the frills"; license = stdenv.lib.licenses.bsd3; @@ -83686,9 +84194,7 @@ self: { filepath HTTP monad-par network normaldistribution parallel random repa stm template-haskell time transformers utf8-string vector xml ]; - configureFlags = [ - "-fdistributed" "-faccelerate" "-f-cuda" "-f-devil" "-f-llvm" - ]; + jailbreak = true; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83728,6 +84234,7 @@ self: { template-haskell text th-lift ]; testDepends = [ cmdargs ]; + jailbreak = true; homepage = "http://github.com/gregwebs/cmdargs-help"; description = "generate command line arguments from a --help output"; license = stdenv.lib.licenses.bsd3; @@ -83757,7 +84264,6 @@ self: { sha256 = "01vqk7krbhy6bf30ydjdjvbzx5ynjdbc3dwlhzinzq6a69a6brlq"; buildDepends = [ base bytestring mtl text ]; testDepends = [ base HUnit test-framework test-framework-hunit ]; - configureFlags = [ "-fbase4" ]; homepage = "http://www.cs.uu.nl/~daan/parsec.html"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -83781,7 +84287,6 @@ self: { version = "0.1.0"; sha256 = "1gzy4v3r02kvdxvgg1nj83mmb6aph2v4ilf9c7y6nbvi2x49l0bp"; buildDepends = [ base parsec ]; - configureFlags = [ "-f-parsec1" ]; description = "Utilities for parsing numbers from strings"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83796,6 +84301,7 @@ self: { sha256 = "1knmcciyq07vp06s3xh4hwz654n017863dh9hdp1mwm57vc43s3j"; buildDepends = [ base parsec parsers ]; testDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/parsec-parsers/"; description = "Parsing instances for Parsec"; license = stdenv.lib.licenses.bsd3; @@ -83878,7 +84384,6 @@ self: { version = "0.1.0"; sha256 = "0i7fvbhvvmf5nld51kv9v0vpb42dlnpivxcl7ll0zwa3gzks2cm5"; buildDepends = [ base parsec ]; - configureFlags = [ "-f-parsec3" ]; description = "Utilities for parsing numbers from Char sequences"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -83890,7 +84395,6 @@ self: { version = "3000.0.0"; sha256 = "0gsylvm8srddmh3g3ysjgqqmgp0ddg6pdi2sz15v6nrvsqfabiip"; buildDepends = [ base old-locale old-time parsec ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://www.cs.chalmers.se/~bringert/darcs/parsedate/doc/"; description = "Data and time parsing for CalendarTime"; license = stdenv.lib.licenses.bsd3; @@ -83927,6 +84431,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ aeson base bytestring haskell-src-exts text ]; + jailbreak = true; description = "Prints Haskell parse trees in JSON"; license = stdenv.lib.licenses.asl20; }) {}; @@ -83969,7 +84474,6 @@ self: { attoparsec base bytestring containers directory doctest filepath parsec QuickCheck quickcheck-instances ]; - configureFlags = [ "-f-lib-werror" ]; homepage = "http://github.com/ekmett/parsers/"; description = "Parsing combinators"; license = stdenv.lib.licenses.bsd3; @@ -84054,6 +84558,7 @@ self: { buildDepends = [ base comonad-transformers data-lens transformers ]; + jailbreak = true; description = "Haskell 98 Partial Lenses"; license = stdenv.lib.licenses.mit; }) {}; @@ -84172,7 +84677,7 @@ self: { accelerate-io accelerate-utility base Cabal filepath gnuplot hmatrix JuicyPixels utility-ht vector ]; - configureFlags = [ "-f-builddraft" ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/patch-image/"; description = "Compose a big image from overlapping parts"; license = stdenv.lib.licenses.bsd3; @@ -84210,7 +84715,6 @@ self: { version = "0.5.4"; sha256 = "1ns5q3nrkl99xp4mrmk8wpvb9qzyvnw5cyjwh5rh76ykm2d5dbg7"; buildDepends = [ base directory QuickCheck time ]; - configureFlags = [ "-f-old-time" ]; homepage = "http://code.haskell.org/pathtype"; description = "Type-safe replacement for System.FilePath etc"; license = stdenv.lib.licenses.bsd3; @@ -84236,6 +84740,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base HandsomeSoup hxt ]; + jailbreak = true; description = "A webpage scraper for Patreon which dumps a list of patrons to a text file"; license = stdenv.lib.licenses.mit; }) {}; @@ -84293,6 +84798,7 @@ self: { base bytestring conduit containers failure http-conduit http-types mtl old-locale text time wai ]; + jailbreak = true; homepage = "http://projects.haskell.org/paypal-api/"; description = "PayPal API, currently supporting \"ButtonManager\""; license = stdenv.lib.licenses.bsd3; @@ -84318,6 +84824,7 @@ self: { version = "0.1.1.5"; sha256 = "16dki82d9x6rpkbax090ax8ynwjxv31cvpzpy51ynq83kjg3v2z9"; buildDepends = [ base hslua string-qq ]; + jailbreak = true; homepage = "https://github.com/DavidFeng/pbc4hs"; description = "pbc for HsLua"; license = stdenv.lib.licenses.bsd3; @@ -84435,7 +84942,6 @@ self: { sha256 = "0l1df2sk5qwf424bvb8mbdkr2xjg43fi92n5r22yd7vm1zz0jqvf"; buildDepends = [ base bytestring ]; extraLibraries = [ pcre ]; - configureFlags = [ "-f-old_base" ]; homepage = "https://github.com/Daniel-Diaz/pcre-light"; description = "A small, efficient and portable regex library for Perl 5 compatible regular expressions"; license = stdenv.lib.licenses.bsd3; @@ -84448,6 +84954,7 @@ self: { version = "0.0.0"; sha256 = "1kjh36gglszd16rsh0rm2q5fxjlfipzld4hw0l2r23y0flbqkbvx"; buildDepends = [ base bytestring pcre-light ]; + jailbreak = true; homepage = "http://github.com/urso/pcre-light-extra"; description = "pcre-light extra functionality"; license = stdenv.lib.licenses.bsd3; @@ -84581,6 +85088,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory pdfinfo process temporary ]; + jailbreak = true; homepage = "http://dmwit.com/pdfsplit"; description = "split two-column PDFs, so there is one column per page"; license = stdenv.lib.licenses.bsd3; @@ -84612,6 +85120,7 @@ self: { buildDepends = [ base derive GLUT List template-haskell time TypeCompose ]; + jailbreak = true; description = "Experiemental library for composable interactive programs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -84689,7 +85198,7 @@ self: { base hashtables haskell-src-meta ListLike monad-control mtl template-haskell ]; - configureFlags = [ "-f-build-example" ]; + jailbreak = true; homepage = "http://tanakh.github.com/Peggy"; description = "The Parser Generator for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -84748,11 +85257,7 @@ self: { anonymous-sums base parsec QuickCheck random-shuffle semigroups tasty tasty-quickcheck text time transformers ]; - configureFlags = [ - "-fincabal" "-f-test" "-f-debug" "-fbuild-reconcile" - "-fbuild-reprint" "-fbuild-diff" "-fbuild-selloff" "-fbuild-penny" - "-f-build-gibberish" - ]; + jailbreak = true; homepage = "http://www.github.com/massysett/penny"; description = "Extensible double-entry accounting system"; license = stdenv.lib.licenses.bsd3; @@ -84772,10 +85277,7 @@ self: { base containers explicit-exception multiarg parsec penny-lib pretty-show semigroups text transformers ]; - configureFlags = [ - "-fbuild-reconcile" "-fbuild-reprint" "-fbuild-diff" - "-fbuild-selloff" "-fbuild-penny" "-f-debug" - ]; + jailbreak = true; homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; @@ -84798,7 +85300,7 @@ self: { explicit-exception matchers multiarg ofx old-locale parsec prednote pretty-show rainbow semigroups split text time transformers ]; - configureFlags = [ "-fbuildlib" "-fincabal" "-f-test" "-f-debug" ]; + jailbreak = true; homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; @@ -84847,6 +85349,7 @@ self: { MonadRandom mtl primitive QuickCheck stm strict tagged template-haskell time transformers unix ]; + jailbreak = true; homepage = "https://github.com/Cognimeta/perdure"; description = "Robust persistence for acyclic immutable data"; license = "unknown"; @@ -84935,7 +85438,6 @@ self: { unordered-containers vector ]; extraLibraries = [ sqlite ]; - configureFlags = [ "-f-nooverlap" ]; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; @@ -84948,6 +85450,7 @@ self: { version = "0.1.0"; sha256 = "09akf8vpkn2jskf1vf9mq96sakqzr7mfs8hhri8qlbkwx3i5nr6f"; buildDepends = [ base cereal persistent text ]; + jailbreak = true; homepage = "http://hub.darcs.net/co-dan/persistent-cereal"; description = "Helper functions for writing Persistent instances"; license = stdenv.lib.licenses.publicDomain; @@ -84960,6 +85463,7 @@ self: { version = "0.3"; sha256 = "14nn01bbwskllbccgcnwnjwzyws6vppqv4l51n6pcvhwbphn18qz"; buildDepends = [ array base diffarray ]; + jailbreak = true; description = "Persistent equivalence relations (aka union-find)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -84992,6 +85496,7 @@ self: { base binary containers directory EdisonAPI EdisonCore filepath LRU mtl stm-io-hooks ]; + jailbreak = true; homepage = "http://darcs.monoid.at/persistent-map"; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; @@ -85011,7 +85516,6 @@ self: { monad-control mongoDB network path-pieces persistent resource-pool resourcet text time transformers ]; - configureFlags = [ "-f-high_precision_date" ]; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using mongoDB"; license = stdenv.lib.licenses.mit; @@ -85053,7 +85557,6 @@ self: { monad-control monad-logger persistent persistent-template resourcet text time transformers ]; - configureFlags = [ "-f-tester" "-f-debug" ]; homepage = "https://github.com/gbwey/persistent-odbc"; description = "Backend for the persistent library using ODBC"; license = stdenv.lib.licenses.mit; @@ -85091,6 +85594,7 @@ self: { base bytestring persistent protocol-buffers protocol-buffers-descriptor template-haskell text ]; + jailbreak = true; homepage = "https://github.com/mstone/persistent-protobuf"; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = stdenv.lib.licenses.bsd3; @@ -85116,6 +85620,7 @@ self: { path-pieces persistent persistent-template scientific template-haskell text time transformers utf8-string ]; + jailbreak = true; description = "Backend for persistent library using Redis"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -85150,7 +85655,6 @@ self: { testDepends = [ base hspec persistent persistent-template time transformers ]; - configureFlags = [ "-f-build-sanity-exe" "-f-systemlib" ]; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using sqlite3"; license = stdenv.lib.licenses.mit; @@ -85277,6 +85781,7 @@ self: { base bytestring crypto-random handle-like network random stm x509 x509-store ]; + jailbreak = true; homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; @@ -85294,6 +85799,7 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://brandon.si/code/pez-zipper-library-released/"; description = "A Pretty Extraordinary Zipper library"; license = stdenv.lib.licenses.bsd3; @@ -85312,6 +85818,7 @@ self: { buildDepends = [ async base ini postgresql-simple random scotty text transformers ]; + jailbreak = true; description = "REST service for creating temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -85343,6 +85850,7 @@ self: { blaze-textual bytestring containers MonadCatchIO-transformers mtl network old-locale pcre-light text time utf8-string ]; + jailbreak = true; homepage = "https://github.com/chrisdone/pgsql-simple"; description = "A mid-level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; @@ -85367,6 +85875,7 @@ self: { version = "0.1"; sha256 = "0i54myn9abrpzrs58llqgii9fhd9ns9hipnaj00dnqx2mfbg7pan"; buildDepends = [ array base ghc-prim monad-st primitive vector ]; + jailbreak = true; homepage = "http://github.com/glehel/phasechange"; description = "Freezing, thawing, and copy elision"; license = stdenv.lib.licenses.bsd3; @@ -85431,6 +85940,7 @@ self: { version = "2.0.0.1"; sha256 = "0aa0s7qmy78s4q1mjcnw0qiqlbmdmkmk2nbn6hkmw5fn29iq0iwj"; buildDepends = [ array base mtl reactive TypeCompose wx wxcore ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Phooey"; description = "Functional user interfaces"; license = stdenv.lib.licenses.bsd3; @@ -85467,6 +85977,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base mtl SDL transformers ]; + jailbreak = true; homepage = "https://github.com/skypers/phraskell"; description = "A fractal viewer"; license = stdenv.lib.licenses.gpl3; @@ -85495,7 +86006,7 @@ self: { test-framework test-framework-hunit test-framework-th text time vector ]; - configureFlags = [ "-f-sequential" "-f-bitvec" "-fhashrf" ]; + jailbreak = true; homepage = "http://www.cs.indiana.edu/~rrnewton/projects/phybin/"; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = stdenv.lib.licenses.bsd3; @@ -85516,6 +86027,7 @@ self: { AES base binary byteable bytestring containers cryptohash HTTP io-streams mtl network parsec RSA transformers ]; + jailbreak = true; homepage = "https://github.com/renzyq19/pi-calculus"; description = "Applied pi-calculus interpreter"; license = stdenv.lib.licenses.gpl3; @@ -85552,7 +86064,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers mtl parsec picosat pretty ]; - configureFlags = [ "-f-shell" ]; homepage = "https://github.com/sdiehl/picologic"; description = "Utilities for symbolic predicate logic expressions"; license = stdenv.lib.licenses.mit; @@ -85575,7 +86086,6 @@ self: { base bytestring monoid-subclasses QuickCheck quickcheck-instances tasty tasty-quickcheck text ]; - configureFlags = [ "-f-developer" ]; homepage = "https://bitbucket.org/blamario/picoparsec"; description = "Fast combinator parsing for bytestrings and text"; license = stdenv.lib.licenses.bsd3; @@ -85687,6 +86197,7 @@ self: { buildDepends = [ attoparsec base bytestring pipes-core transformers ]; + jailbreak = true; description = "Streaming parsing in the pipes-core framework with Attoparsec"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -85708,6 +86219,7 @@ self: { base binary bytestring ghc-prim lens-family-core pipes pipes-parse smallcheck tasty tasty-hunit tasty-smallcheck transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-binary"; description = "Encode and decode binary streams using the pipes and binary libraries"; license = stdenv.lib.licenses.bsd3; @@ -85763,6 +86275,7 @@ self: { version = "0.0.1"; sha256 = "1nzylhmi3f2m0xnqgx0m9g0p5pwl6xnidsz8ykzmv8wafrh60dh8"; buildDepends = [ base conduit mtl pipes-core ]; + jailbreak = true; homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Conduit adapters"; license = stdenv.lib.licenses.bsd3; @@ -85779,6 +86292,7 @@ self: { buildDepends = [ base categories lifted-base monad-control transformers void ]; + jailbreak = true; homepage = "https://github.com/pcapriotti/pipes-core"; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; @@ -85813,7 +86327,6 @@ self: { base bytestring cassava HUnit pipes pipes-bytestring test-framework test-framework-hunit vector ]; - configureFlags = [ "-ftest-hunit" ]; description = "Fast, streaming csv parser"; license = stdenv.lib.licenses.mit; }) {}; @@ -85846,7 +86359,7 @@ self: { base bytestring HUnit mtl pipes-core test-framework test-framework-hunit test-framework-th-prime ]; - configureFlags = [ "-f-examples" ]; + jailbreak = true; homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Various basic utilities for Pipes"; license = stdenv.lib.licenses.bsd3; @@ -85936,6 +86449,7 @@ self: { base bytestring network network-simple network-simple-tls pipes pipes-network pipes-safe tls transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-network-tls"; description = "TLS-secured network connections support for pipes"; license = stdenv.lib.licenses.bsd3; @@ -86048,6 +86562,7 @@ self: { async base bytestring directory hspec pipes pipes-bytestring pipes-safe process stm stm-chans text ]; + jailbreak = true; description = "Create proper Pipes from System.Process"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -86065,7 +86580,6 @@ self: { base bytestring pipes pipes-bytestring pipes-group pipes-parse pipes-safe streaming-commons text transformers ]; - configureFlags = [ "-f-noio" ]; homepage = "https://github.com/michaelt/text-pipes"; description = "Text pipes"; license = stdenv.lib.licenses.bsd3; @@ -86115,6 +86629,7 @@ self: { base QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/ixmatus/pipes-websockets"; description = "Library for using websockets ontop of pipes-network"; license = stdenv.lib.licenses.bsd3; @@ -86150,7 +86665,7 @@ self: { array base bytestring containers haskeline haskeline-class mpppc mtl parsec text utf8-string ]; - configureFlags = [ "-f-debug" ]; + jailbreak = true; description = "A dependently typed core language"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -86235,6 +86750,7 @@ self: { buildDepends = [ base bytestring mtl stringable text time utf8-string ]; + jailbreak = true; homepage = "https://secure.plaimi.net/works/plailude"; description = "plaimi's prelude"; license = stdenv.lib.licenses.gpl3; @@ -86252,6 +86768,7 @@ self: { attoparsec base blaze-builder bytestring containers data-clist deepseq ]; + jailbreak = true; description = "A representation of planar graphs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -86281,9 +86798,7 @@ self: { attoparsec base bytestring filepath optparse-applicative text word8 ]; testDepends = [ base bytestring doctest hlint hspec ]; - configureFlags = [ - "-ftest-doctest" "-ftest-hlint" "-f-maintainer" - ]; + jailbreak = true; homepage = "https://github.com/pjones/playlists"; description = "Library and executable for working with playlist files"; license = stdenv.lib.licenses.bsd3; @@ -86314,6 +86829,7 @@ self: { aeson base blaze-builder bytestring errors http-streams http-types io-streams network-uri old-locale time unexceptionalio ]; + jailbreak = true; homepage = "https://github.com/singpolyma/plivo-haskell"; description = "Plivo API wrapper for Haskell"; license = "unknown"; @@ -86568,7 +87084,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers haskell-src mtl syb ]; - configureFlags = [ "-fseparatesyb" ]; homepage = "http://github.com/23Skidoo/pointful"; description = "Pointful refactoring tool"; license = stdenv.lib.licenses.bsd3; @@ -86581,7 +87096,6 @@ self: { version = "1.1.0.5"; sha256 = "17gzh3w5j05l6ig1sdjqrl7br17zzpy9yh5k2lck0gjl5prcjclw"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "Some common point-free combinators"; license = stdenv.lib.licenses.bsd3; @@ -86594,7 +87108,6 @@ self: { version = "0.0.9"; sha256 = "0f0bnd6dyi1ancdxd2hkszshws9d8jz8iamz5pir0i4nsj69mqyx"; buildDepends = [ base GHood process syb ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Haskell"; description = "Pointless Haskell library"; license = stdenv.lib.licenses.bsd3; @@ -86669,6 +87182,7 @@ self: { base binary containers dawg directory filepath mtl polysoup text text-binary transformers ]; + jailbreak = true; homepage = "https://github.com/kawu/polh/tree/master/lexicon"; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -86773,6 +87287,7 @@ self: { version = "0.5.2"; sha256 = "13923ff6lzvl6j059gyhcb3cx27plkxgbyjr7skg9g5hxia5j73b"; buildDepends = [ base containers polyparse tagsoup ]; + jailbreak = true; homepage = "https://github.com/kawu/polysoup"; description = "Online XML parsing with polyparse and tagsoup"; license = stdenv.lib.licenses.bsd3; @@ -86807,6 +87322,7 @@ self: { version = "0.0.1"; sha256 = "1nq4z063g429hxwf4vbyyr2b2s7sn325m0h6ggf793inlj48ci0h"; buildDepends = [ base mtl ]; + jailbreak = true; homepage = "https://gihub.com/matt76k/ponder"; description = "PEG parser combinator"; license = stdenv.lib.licenses.mit; @@ -86826,6 +87342,7 @@ self: { base HDBC HDBC-sqlite3 hlogger pontarius-xmpp pontarius-xpmn xml-types ]; + jailbreak = true; homepage = "http://www.pontarius.org/projects/pontarius-mediaserver/"; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; @@ -86862,7 +87379,7 @@ self: { tasty tasty-hspec tasty-hunit tasty-quickcheck tasty-th text transformers xml-picklers xml-types ]; - configureFlags = [ "-fwith-th" ]; + jailbreak = true; homepage = "https://github.com/pontarius/pontarius-xmpp/"; description = "An XMPP client library"; license = stdenv.lib.licenses.bsd3; @@ -86879,6 +87396,7 @@ self: { buildDepends = [ base containers pontarius-xmpp random text xml-types ]; + jailbreak = true; homepage = "http://www.pontarius.org/projects/pontarius-xpmn/"; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; @@ -86906,6 +87424,7 @@ self: { sha256 = "1fwwnwxk3kprr2z9y7bwa1qwxfkzwcb2n5l6vkq1c5s8gjls581c"; editedCabalFile = "c79e139723764f4d4ba584c6cf6f73174700271910b15ed0f25a150a53a8c951"; buildDepends = [ base monad-control transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Thread-safe resource pools. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -86936,7 +87455,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base deepseq transformers unsafe utility-ht ]; - configureFlags = [ "-f-buildexamples" ]; homepage = "http://code.haskell.org/~thielema/pooled-io/"; description = "Run jobs on a limited number of threads and support data dependencies"; license = stdenv.lib.licenses.bsd3; @@ -86979,7 +87497,6 @@ self: { ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ cairo gdk_pixbuf glib gtk pango popplerGlib ]; - configureFlags = [ "-f-gtk3" ]; homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; @@ -87070,6 +87587,7 @@ self: { version = "0.4"; sha256 = "0vj0gd7xln1xihf8dyrr2sm7zh5wg6qvfzy30nslwgvzyn4f14gv"; buildDepends = [ base nats semigroups ]; + jailbreak = true; description = "Positive integers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -87087,6 +87605,7 @@ self: { transformers-base unix ]; extraLibraries = [ acl ]; + jailbreak = true; homepage = "https://github.com/tensor5/posix-acl"; description = "Support for Posix ACL"; license = stdenv.lib.licenses.bsd3; @@ -87147,6 +87666,7 @@ self: { version = "0.0.0.2"; sha256 = "1i3ag71ymmbcg1v0s6fqkpli8d1wplhj2jkalrv7alz8z666ms3h"; buildDepends = [ base unix ]; + jailbreak = true; description = "POSIX Realtime functionality"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -87315,6 +87835,7 @@ self: { postgresql-simple time ]; testDepends = [ base bytestring hspec postgresql-simple ]; + jailbreak = true; homepage = "https://github.com/ameingast/postgresql-simple-migration"; description = "PostgreSQL Schema Migrations"; license = stdenv.lib.licenses.bsd3; @@ -87365,9 +87886,6 @@ self: { template-haskell text time utf8-string uuid ]; testDepends = [ base network time ]; - configureFlags = [ - "-fscientific" "-fuuid" "-ftext" "-fbinary" "-fmd5" - ]; homepage = "https://github.com/dylex/postgresql-typed"; description = "A PostgreSQL access library with compile-time SQL type inference"; license = stdenv.lib.licenses.bsd3; @@ -87389,7 +87907,6 @@ self: { pipes pipes-bytestring pipes-parse stringsearch tls transformers uuid ]; - configureFlags = [ "-f-examples" ]; description = "SMTP server library to receive emails from within Haskell programs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -87408,7 +87925,6 @@ self: { aeson attoparsec base bytestring containers http-client-tls http-types network-api-support text ]; - configureFlags = [ "-f-demo" "-fsmall_base" ]; homepage = "https://github.com/apiengine/postmark"; description = "Library for postmarkapp.com HTTP Api"; license = stdenv.lib.licenses.bsd3; @@ -87479,7 +87995,6 @@ self: { sha256 = "1n71qhlxn9js5cizyqdq9f7m08m5j0354871r8b47bnzdi2kqkc4"; buildDepends = [ base QuickCheck random stm ]; testDepends = [ base ChasingBottoms ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://hub.darcs.net/shelarcy/pqc"; description = "Parallel batch driver for QuickCheck"; license = stdenv.lib.licenses.bsd3; @@ -87507,6 +88022,7 @@ self: { buildDepends = [ base containers ghc-prim MaybeT mtl stateful-mtl uvector ]; + jailbreak = true; description = "Fully encapsulated monad transformers with queuelike functionality"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -87541,6 +88057,7 @@ self: { base Cabal containers cpphs directory filepath haskell-src-exts xhtml ]; + jailbreak = true; homepage = "http://code.google.com/p/copperbox/"; description = "Diff Cabal packages"; license = "unknown"; @@ -87574,7 +88091,6 @@ self: { base containers contravariant QuickCheck quickpull rainbow split text ]; - configureFlags = [ "-f-visual-tests" ]; homepage = "http://www.github.com/massysett/prednote"; description = "Evaluate and display trees of predicates"; license = stdenv.lib.licenses.bsd3; @@ -87594,6 +88110,7 @@ self: { barecheck base containers prednote QuickCheck quickpull rainbow rainbow-tests text ]; + jailbreak = true; homepage = "http://www.github.com/massysett/prednote"; description = "Tests and QuickCheck generators to accompany prednote"; license = stdenv.lib.licenses.bsd3; @@ -87638,7 +88155,7 @@ self: { testDepends = [ base cab containers directory filepath hspec process stm unix ]; - configureFlags = [ "-f-sample" ]; + jailbreak = true; description = "A library for building a prefork-style server quickly"; license = stdenv.lib.licenses.mit; }) {}; @@ -87680,6 +88197,7 @@ self: { version = "0.4"; sha256 = "0h452pn7zs97z5gv2p3x9pg61phphwcw5y5g1w38k3gihdvym8jl"; buildDepends = [ base comonad logict transformers ]; + jailbreak = true; description = "Another kind of alternate Prelude file"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -87693,7 +88211,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base utf8-string ]; - configureFlags = [ "-f-test" ]; description = "Prelude for rest of us"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -87716,7 +88233,6 @@ self: { version = "0.1.1.1"; sha256 = "0cff77nbhy3dsamrwm2wxhbi1mf2bzkdd1pdzqv3klpbzjwkdszv"; buildDepends = [ base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "A redefinition of the Prelude's Enum class in order to render it safe"; license = stdenv.lib.licenses.bsd3; @@ -87742,6 +88258,7 @@ self: { sha256 = "0chwx0906gsmbnjkf14d864qzfvxb5gzaih7nq7ckfc6icbc4x25"; buildDepends = [ base containers pretty ]; testDepends = [ base QuickCheck ]; + jailbreak = true; homepage = "http://github.com/yav/presburger"; description = "A decision procedure for quantifier-free linear arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -87968,6 +88485,7 @@ self: { buildDepends = [ base ConfigFile directory HTTP mtl network parsec utf8-string XMPP ]; + jailbreak = true; homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; @@ -88010,7 +88528,7 @@ self: { version = "0.2.2"; sha256 = "0nsiil0yl32m80a1kpg3z0wd5fxwkpz2lzf66pa06iy24q0rz5lf"; buildDepends = [ base containers queue reord stateref ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://code.haskell.org/~mokus/priority-queue"; description = "Simple implementation of a priority queue"; license = stdenv.lib.licenses.bsd3; @@ -88067,7 +88585,6 @@ self: { version = "0.2.4.1"; sha256 = "0nh73l03d7niz3a3h2y4i80mlp64ilfkx7krn57skzfi8drwnjvc"; buildDepends = [ base containers random transformers utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming"; description = "Probabilistic Functional Programming"; license = stdenv.lib.licenses.bsd3; @@ -88176,7 +88693,7 @@ self: { version = "1.0.1.4"; sha256 = "1899ybhnsj22sir2l933lhkk9fpcgjbb4qd6gscnby28qcs5bwbv"; buildDepends = [ base directory filepath unix ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; description = "Process libraries"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -88223,6 +88740,7 @@ self: { base bytestring enumerator mtl process shakespeare-text template-haskell text ]; + jailbreak = true; homepage = "http://github.com/tanakh/process-qq"; description = "Quasi-Quoters for exec process"; license = stdenv.lib.licenses.bsd3; @@ -88253,6 +88771,7 @@ self: { pipes-safe pipes-text process semigroups tasty tasty-hunit text transformers transformers-compat void ]; + jailbreak = true; description = "Streaming interface to system processes"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -88305,6 +88824,7 @@ self: { version = "0.1.0.1"; sha256 = "1md75jc32nfnvs7ygf1mna00gl0wmimp2lkdcs9r9v0iy4b1hr5m"; buildDepends = [ attoparsec base bytestring ]; + jailbreak = true; homepage = "http://closure.ath.cx/procstat"; description = "get information on processes in Linux"; license = stdenv.lib.licenses.bsd3; @@ -88352,7 +88872,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers filepath haskell98 parsec ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://antiope.com/downloads.html"; description = "Convert GHC profiles into GraphViz's dot format"; license = stdenv.lib.licenses.bsd3; @@ -88390,6 +88909,7 @@ self: { aeson attoparsec base bytestring filepath text unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/profiteur"; description = "Treemap visualiser for GHC prof files"; license = stdenv.lib.licenses.bsd3; @@ -88460,6 +88980,7 @@ self: { base containers criterion directory filepath haskeline process txt-sushi ]; + jailbreak = true; homepage = "http://chplib.wordpress.com/2010/02/04/progression-supporting-optimisation-in-haskell/"; description = "Automates the recording and graphing of criterion benchmarks"; license = stdenv.lib.licenses.bsd3; @@ -88479,6 +89000,7 @@ self: { base binary bytestring containers directory filepath ghc-prim process text ]; + jailbreak = true; homepage = "https://bitbucket.org/gchrupala/progression"; description = "Multilabel classification model which learns sequentially (online)"; license = stdenv.lib.licenses.bsd3; @@ -88542,6 +89064,7 @@ self: { base containers mtl parsec syb template-haskell th-lift transformers ]; + jailbreak = true; homepage = "https://github.com/Erdwolf/prolog"; description = "A Prolog interpreter written in Haskell"; license = stdenv.lib.licenses.publicDomain; @@ -88560,6 +89083,7 @@ self: { buildDepends = [ base cmdargs fgl graphviz mtl prolog prolog-graph-lib text ]; + jailbreak = true; homepage = "https://github.com/Erdwolf/prolog"; description = "A command line tool to visualize query resolution in Prolog"; license = stdenv.lib.licenses.publicDomain; @@ -88633,6 +89157,7 @@ self: { version = "0.0.2"; sha256 = "04a35zxgps9rn6y86x3jf6gma6kjl8izmnyl45hz64cl9yb5dwwi"; buildDepends = [ base ]; + jailbreak = true; description = "check quickCheck properties in real time"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -88722,6 +89247,7 @@ self: { protocol-buffers-fork QuickCheck text utf8-string ]; extraLibraries = [ protobuf ]; + jailbreak = true; homepage = "https://github.com/nicta/protobuf-native"; description = "Protocol Buffers via C++"; license = stdenv.lib.licenses.bsd3; @@ -88739,7 +89265,6 @@ self: { array base binary bytestring containers directory filepath mtl parsec syb utf8-string ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/protocol-buffers/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -88752,7 +89277,6 @@ self: { version = "2.0.17"; sha256 = "0jl041645d83iqqiw891d2k760jql6djvi2mmjh9lnmp48lwjy3p"; buildDepends = [ base bytestring containers protocol-buffers ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/protocol-buffers/"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; @@ -88769,7 +89293,6 @@ self: { buildDepends = [ base bytestring containers protocol-buffers-fork ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; @@ -88787,7 +89310,6 @@ self: { array base binary bytestring containers directory filepath mtl syb utf8-string ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -88820,6 +89342,7 @@ self: { optparse-applicative parsec parsers process safe text time unordered-containers wai warp ]; + jailbreak = true; homepage = "https://github.com/prove-everywhere/server"; description = "The server for ProveEverywhere"; license = stdenv.lib.licenses.bsd3; @@ -88832,6 +89355,7 @@ self: { version = "0.1"; sha256 = "0wpzj6hnlxvgd7lfd2921mrk97aw7ljf77jry3my97zdapkxz8i7"; buildDepends = [ base tagged ]; + jailbreak = true; homepage = "https://github.com/jberryman/proxy-kindness"; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = stdenv.lib.licenses.bsd3; @@ -88882,6 +89406,7 @@ self: { mtl network pipes pipes-bytestring safe system-filepath text time transformers ]; + jailbreak = true; description = "Pipe stdin to a redis pub/sub channel"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -88901,7 +89426,6 @@ self: { base bytestring cereal containers data-default HUnit idna text utf8-string ]; - configureFlags = [ "-f-runtimelist" "-f-create" ]; homepage = "https://github.com/litherum/publicsuffixlist"; description = "Is a given string a domain suffix?"; license = stdenv.lib.licenses.bsd3; @@ -88920,6 +89444,7 @@ self: { publicsuffixlist text ]; testDepends = [ base cereal HUnit publicsuffixlist ]; + jailbreak = true; homepage = "https://github.com/litherum/publicsuffixlist"; description = "Create the publicsuffixlist package"; license = stdenv.lib.licenses.bsd3; @@ -88950,6 +89475,7 @@ self: { base Cabal HUnit QuickCheck smallcheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck ]; + jailbreak = true; homepage = "http://github.com/pubnub/haskell"; description = "PubNub Haskell SDK"; license = stdenv.lib.licenses.mit; @@ -88968,7 +89494,7 @@ self: { buildDepends = [ base fastcgi feed HTTP json mime network random utf8-string xml ]; - configureFlags = [ "-f-old-base" ]; + jailbreak = true; homepage = "http://projects.haskell.org/pubsub/"; description = "A library for Google/SixApart pubsub hub interaction"; license = stdenv.lib.licenses.bsd3; @@ -89071,7 +89597,6 @@ self: { version = "1.0"; sha256 = "1px8qvz7afws2w8scplxs4zm628anvh5ssbf0ba9hajh686h133i"; buildDepends = [ array base haskell98 ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://repetae.net/john/computer/haskell/hsregex/"; description = "Haskell PCRE binding"; license = stdenv.lib.licenses.bsd3; @@ -89192,6 +89717,7 @@ self: { version = "0.14"; sha256 = "125vnkjx6n7pgflk9iqg7b6daw55a1rdfi9pfgp39ikfcx9vhb3p"; buildDepends = [ base containers ]; + jailbreak = true; description = "A pure priority queue"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -89210,6 +89736,7 @@ self: { base containers pure-priority-queue QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; description = "Tests for the pure-priority-queue package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -89242,7 +89769,6 @@ self: { version = "2.1.2.1"; sha256 = "1zsn949qk95bwx1fbyv84q0lhb4k18bgixl7nivfzsnmhr31fs37"; buildDepends = [ base binary bytestring cereal crypto-api tagged ]; - configureFlags = [ "-f-test" ]; description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -89398,7 +89924,6 @@ self: { base blaze-svg bytestring containers deepseq diagrams-lib diagrams-svg tasty tasty-hunit text yaml ]; - configureFlags = [ "-f-cairo" ]; description = "Creating graphics for pencil puzzles"; license = stdenv.lib.licenses.mit; }) {}; @@ -89417,7 +89942,7 @@ self: { aeson base diagrams-lib diagrams-svg filepath optparse-applicative puzzle-draw yaml ]; - configureFlags = [ "-f-cairo" ]; + jailbreak = true; description = "Creating graphics for pencil puzzles, command line tools"; license = stdenv.lib.licenses.mit; }) {}; @@ -89457,7 +89982,6 @@ self: { base bytestring HUnit process pwstore-fast test-framework test-framework-hunit ]; - configureFlags = [ "-ffast" ]; homepage = "http://hub.darcs.net/rycee/pwstore-cli"; description = "Command line interface for the pwstore library"; license = stdenv.lib.licenses.gpl3; @@ -89556,6 +90080,7 @@ self: { buildDepends = [ attoparsec base bytestring cereal cmdargs containers mtl ]; + jailbreak = true; description = "Serialization/deserialization using Python Pickle format"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -89567,6 +90092,7 @@ self: { version = "1.2.0.3"; sha256 = "13rga5haz26qvx3hznbl6ik55s8g7qi3nj7a6vhyx46vjhzwnsvg"; buildDepends = [ base fclabels QuickCheck template-haskell ]; + jailbreak = true; homepage = "http://www.iai.uni-bonn.de/~jv/GV14.html"; description = "Compile time generation of operation invariance tests for QuickCheck"; license = stdenv.lib.licenses.bsd3; @@ -89615,7 +90141,6 @@ self: { version = "0.1.2"; sha256 = "1wfnxlz6rqjcgnkaqq0wdn75jsh3b9hagb84c1ljnwqaw98n3a9d"; buildDepends = [ array base containers mtl vector ]; - configureFlags = [ "-f-prof" ]; description = "QR Code library in pure Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -89634,6 +90159,7 @@ self: { base directory doctest filepath mtl numbers QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/ion1/quadratic-irrational"; description = "An implementation of quadratic irrationals"; license = stdenv.lib.licenses.mit; @@ -89670,6 +90196,7 @@ self: { base containers doctest Glob hlint hspec mtl parsec process regex-compat ]; + jailbreak = true; homepage = "http://github.com/jdreaver/quantities"; description = "Unit conversion and manipulation library"; license = stdenv.lib.licenses.bsd3; @@ -89682,6 +90209,7 @@ self: { version = "0.0.5"; sha256 = "19z5b0jwnz20g0203xd78cv8rgm92diyxard4mbj6dyrj2kkfgww"; buildDepends = [ base MonadRandom mtl QuickCheck random ]; + jailbreak = true; homepage = "http://github.com/luqui/quantum-arrow"; description = "An embedding of quantum computation as a Haskell arrow"; license = "LGPL"; @@ -89730,7 +90258,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ ansi-terminal base readline terminal-size ]; - configureFlags = [ "-f-examples" ]; homepage = "https://github.com/yamadapc/haskell-questioner.git"; description = "A package for prompting values from the command-line"; license = stdenv.lib.licenses.mit; @@ -89743,7 +90270,6 @@ self: { version = "0.1.2"; sha256 = "0fx2svkj2sy2wd056lha9h20hy2z6gjspzl11jmv7i3rdwwfr6f7"; buildDepends = [ base stm ]; - configureFlags = [ "-fusestm" ]; homepage = "http://code.haskell.org/~mokus/queue"; description = "Abstraction typeclasses for queue-like things"; license = stdenv.lib.licenses.bsd3; @@ -89846,6 +90372,7 @@ self: { version = "0.1.0.2"; sha256 = "0wqz2amhwf1djbwwdin142mzp94mxbzb12khznijissjdz38knp5"; buildDepends = [ base mtl QuickCheck ]; + jailbreak = true; homepage = "http://www.github.com/jfeltz/quickcheck-property-comb"; description = "Combinators for Quickcheck Property construction and diagnostics"; license = stdenv.lib.licenses.publicDomain; @@ -89861,7 +90388,6 @@ self: { sha256 = "12vg14xwhhsqwygrs5lylsg514am5sslqc15nbl8mwzzxix1w8xb"; buildDepends = [ base either QuickCheck transformers ]; testDepends = [ base directory doctest filepath QuickCheck ]; - configureFlags = [ "-ftests" ]; homepage = "http://github.com/bennofs/quickcheck-property-monad/"; description = "quickcheck-property-monad"; license = stdenv.lib.licenses.bsd3; @@ -89907,6 +90433,7 @@ self: { sha256 = "0pmw9441l36sprw9ngq6gn2yi4v427zd5n22s9zicfyiwi4qf5ba"; buildDepends = [ base QuickCheck rematch ]; testDepends = [ base hspec HUnit QuickCheck rematch ]; + jailbreak = true; homepage = "http://github.com/tcrayford/rematch"; description = "QuickCheck support for rematch"; license = stdenv.lib.licenses.mit; @@ -89921,7 +90448,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory process QuickCheck ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.cs.chalmers.se/~rjmh/QuickCheck/"; description = "Automated test tool for QuickCheck"; license = stdenv.lib.licenses.bsd3; @@ -89963,7 +90489,6 @@ self: { base bytestring QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-f-memory-safe" ]; homepage = "http://github.com/thoughtpolice/hs-quicklz"; description = "QuickLZ compression for ByteStrings"; license = stdenv.lib.licenses.gpl2; @@ -89980,7 +90505,6 @@ self: { isExecutable = true; buildDepends = [ barecheck base directory filepath QuickCheck ]; testDepends = [ base directory filepath QuickCheck ]; - configureFlags = [ "-f-old-quick-check" "-f-build-test-gen" ]; homepage = "http://www.github.com/massysett/quickpull"; description = "Generate Main module with QuickCheck tests"; license = stdenv.lib.licenses.bsd3; @@ -90056,6 +90580,7 @@ self: { snap-server websockets websockets-snap ]; testDepends = [ base HUnit mtl ]; + jailbreak = true; homepage = "https://github.com/talw/quoridor-hs"; description = "A Quoridor implementation in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -90081,6 +90606,7 @@ self: { version = "0.1.6.3"; sha256 = "19g2lc3vmnapccdxf390cmkfl9bd3agcn01kk8ccd4lmaqn2c12d"; buildDepends = [ array base containers data-reify ]; + jailbreak = true; homepage = "http://comonad.com/reader/"; description = "Reverse Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; @@ -90098,7 +90624,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/NICTA/radian"; description = "A floating-point wrapper for measurements that use radians"; license = stdenv.lib.licenses.bsd3; @@ -90113,6 +90638,7 @@ self: { sha256 = "01bmh77cjcz7phl4fzn97hzjnjx3wicr12m7nrdyflw2zckxycwl"; buildDepends = [ base containers parsec ]; testDepends = [ base Cabal containers hspec parsec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/klangner/radium"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; @@ -90127,6 +90653,7 @@ self: { sha256 = "1b2gmc27dj9fanbjh7h0902jjh3jz1ydc6qvp9p3rfskaf6854bf"; buildDepends = [ base containers parsec ]; testDepends = [ base Cabal containers hspec parsec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/klangner/radium-formula-parser"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; @@ -90143,7 +90670,6 @@ self: { buildDepends = [ async base bytestring containers mtl uuid ]; testDepends = [ async base bytestring hspec HUnit mtl rados uuid ]; extraLibraries = [ rados ]; - configureFlags = [ "-f-atomic_writes" ]; homepage = "github"; description = "librados haskell bindings"; license = stdenv.lib.licenses.bsd3; @@ -90165,6 +90691,7 @@ self: { process transformers ]; testDepends = [ base containers HUnit process ]; + jailbreak = true; homepage = "https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14"; description = "Compiler and editor for the esolang rail"; license = stdenv.lib.licenses.mit; @@ -90211,7 +90738,6 @@ self: { array base QuickCheck rainbow rainbow-tests random tasty tasty-quickcheck text transformers ]; - configureFlags = [ "-f-mosaic" ]; homepage = "http://www.github.com/massysett/rainbox"; description = "Two-dimensional box pretty printing, with colors"; license = stdenv.lib.licenses.bsd3; @@ -90229,6 +90755,7 @@ self: { attoparsec base bytestring containers lens mtl pipes scientific transformers vector zlib ]; + jailbreak = true; homepage = "http://github.com/YoEight/rakhana"; description = "Stream based PDF library"; license = stdenv.lib.licenses.bsd3; @@ -90316,6 +90843,7 @@ self: { version = "0.1.0.1"; sha256 = "1m28np0zfabp1n1d08przh35bxfr1l7d39kj4a5z61jkchmsaxyf"; buildDepends = [ base extensible-effects random ]; + jailbreak = true; description = "A simple random generator library for extensible-effects"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -90327,7 +90855,7 @@ self: { version = "0.1.1.0"; sha256 = "0p1n5dfdsp00q9mlhd7xcl93k5d0wji91p59858gmfx9xf8j0p0h"; buildDepends = [ base effin random ]; - configureFlags = [ "-f-monadrandom" ]; + jailbreak = true; description = "A simple random generator library for effin"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -90358,7 +90886,6 @@ self: { base erf logfloat math-functions monad-loops mtl random-shuffle random-source rvar syb template-haskell transformers vector ]; - configureFlags = [ "-fmtl2" "-fbase4_2" ]; homepage = "https://github.com/mokus0/random-fu"; description = "Random number generation"; license = stdenv.lib.licenses.publicDomain; @@ -90388,7 +90915,6 @@ self: { base flexible-defaults mersenne-random-pure64 mtl mwc-random random stateref syb template-haskell th-extras ]; - configureFlags = [ "-fmtl2" "-fbase4" ]; homepage = "https://github.com/mokus0/random-fu"; description = "Generic basis for random number generators"; license = stdenv.lib.licenses.publicDomain; @@ -90401,9 +90927,6 @@ self: { version = "0.1.1"; sha256 = "0q191kz3hmjzrgs143nja5gcis07igb38f51mwqw64zx7vjqvx66"; buildDepends = [ base binary bytestring random ]; - configureFlags = [ - "-f-have_win32_crypt" "-f-have_ssl" "-f-have_urandom" - ]; description = "An infinite stream of random data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -90463,6 +90986,7 @@ self: { base Cabal QuickCheck random test-framework test-framework-quickcheck2 ]; + jailbreak = true; description = "This has a bunch of code for specifying and managing ranges in your code"; license = stdenv.lib.licenses.mit; }) {}; @@ -90475,7 +90999,7 @@ self: { sha256 = "1qgw95gvbxar13ia6562ddz9zqd14ffyxwp9qi41w859prfc1728"; buildDepends = [ base ]; testDepends = [ base containers tasty tasty-quickcheck ]; - configureFlags = [ "-foptimized" ]; + jailbreak = true; homepage = "https://github.com/phadej/range-set-list"; description = "Memory efficient sets with continuous ranges of elements"; license = stdenv.lib.licenses.mit; @@ -90497,6 +91021,7 @@ self: { base QuickCheck semigroups test-framework test-framework-quickcheck2 time vector-space vector-space-points ]; + jailbreak = true; homepage = "https://github.com/JohnLato/range-space"; description = "A Range type with vector-space instances"; license = stdenv.lib.licenses.bsd3; @@ -90509,7 +91034,6 @@ self: { version = "2.2.2"; sha256 = "01n1m3ibi44pjg04mg16j751fjzkspmnq8bzxz55qbyi22wshnwc"; buildDepends = [ base containers primitive vector ]; - configureFlags = [ "-fwall" "-f-llvm" ]; description = "Linear range-min algorithms"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -90562,6 +91086,7 @@ self: { filepath HUnit mtl process QuickCheck tasty tasty-hunit tasty-quickcheck vector ]; + jailbreak = true; homepage = "http://soli.github.io/rascal/"; description = "A command-line client for Reddit"; license = stdenv.lib.licenses.mit; @@ -90704,9 +91229,6 @@ self: { network-uri parsec QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text unordered-containers ]; - configureFlags = [ - "-fnetwork-uri" "-fhpc" "-f-tests" "-fsmall_base" - ]; homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -90778,7 +91300,6 @@ self: { buildDepends = [ base deepseq haste-compiler lens-family monads-tf transformers void ]; - configureFlags = [ "-f-haste-inst" ]; homepage = "https://github.com/joelburget/react-haskell"; description = "Haskell React bindings"; license = stdenv.lib.licenses.mit; @@ -90844,7 +91365,7 @@ self: { midi-alsa non-negative random reactive-banana transformers utility-ht ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa"; description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = stdenv.lib.licenses.bsd3; @@ -90867,7 +91388,6 @@ self: { base containers hashable HUnit pqueue test-framework test-framework-hunit transformers unordered-containers vault ]; - configureFlags = [ "-fuseextensions" ]; homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Library for functional reactive programming (FRP)"; license = stdenv.lib.licenses.bsd3; @@ -90899,7 +91419,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base reactive-banana threepenny-gui ]; - configureFlags = [ "-f-buildexamples" ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using threepenny-gui"; license = stdenv.lib.licenses.bsd3; @@ -90914,7 +91434,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base cabal-macosx reactive-banana wx wxcore ]; - configureFlags = [ "-f-buildExamples" "-f-buildexamples" ]; + configureFlags = [ "-f-buildExamples" ]; homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using wxHaskell"; license = stdenv.lib.licenses.bsd3; @@ -90982,7 +91502,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base monad-parallel SDL stm transformers ]; - configureFlags = [ "-f-profile" ]; + jailbreak = true; homepage = "https://github.com/strager/reactive-thread"; description = "Reactive programming via imperative threads"; license = stdenv.lib.licenses.bsd3; @@ -91000,6 +91520,7 @@ self: { array base bits-atomic comonad contravariant mtl semigroupoids transformers ]; + jailbreak = true; homepage = "http://comonad.com/reader/"; description = "Reactor - task parallel reactive programming"; license = stdenv.lib.licenses.bsd3; @@ -91012,6 +91533,7 @@ self: { version = "0.1.0.0"; sha256 = "1nvfkxjxn38rpplvg48sgx671fmfxj80dy2a77pjvm3c31q0hhqm"; buildDepends = [ base ]; + jailbreak = true; description = "Class for reading bounded values"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -91035,7 +91557,6 @@ self: { version = "1.0.3.0"; sha256 = "1sszlx34qa88fad3wlhd4rkb1my1nrpzvyd8vq7dn806j5sf3ff0"; buildDepends = [ base process ]; - configureFlags = [ "-fsplit-base" ]; description = "An interface to the GNU readline library"; license = "GPL"; }) {}; @@ -91047,7 +91568,6 @@ self: { version = "1.0.1.0"; sha256 = "1gfxs3wfdkkarxil2an5l58syrm2vajj0qpshzabzchni32yxic8"; buildDepends = [ base readline StateVar ]; - configureFlags = [ "-f-debug" ]; description = "Readline with variables (setX/getY) wrapped in state vars"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -91073,6 +91593,7 @@ self: { version = "0.4.0.0"; sha256 = "1qmrfisnvm9a25a9ssg4r466yna69vzbwn7s7f4zql28cndg3syy"; buildDepends = [ base parsec ]; + jailbreak = true; homepage = "http://website-ckkashyap.rhcloud.com"; description = "A really simple XML parser"; license = stdenv.lib.licenses.publicDomain; @@ -91097,7 +91618,6 @@ self: { version = "0.1.0.3"; sha256 = "18rqsqzni11nr2cvs7ah9k87w493d92c0gmc0n6fhfq6gay9ia19"; buildDepends = [ base HTTP network network-uri xhtml ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/jgm/recaptcha/tree/master"; description = "Functions for using the reCAPTCHA service in web applications"; license = stdenv.lib.licenses.bsd3; @@ -91127,6 +91647,7 @@ self: { aeson base data-default kinds records template-haskell text type-functions unordered-containers ]; + jailbreak = true; homepage = "github.com/lassoinc/records-th"; description = "Template Haskell declarations for the records package"; license = stdenv.lib.licenses.mit; @@ -91175,6 +91696,7 @@ self: { array base bytestring cgi containers haskell98 MaybeT mtl network old-time parsec stm unix xhtml ]; + jailbreak = true; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; }) {}; @@ -91227,6 +91749,7 @@ self: { async base bytestring bytestring-conversion containers redis-resp tasty tasty-hunit tinylog transformers ]; + jailbreak = true; homepage = "https://github.com/twittner/redis-io/"; description = "Yet another redis client"; license = "unknown"; @@ -91318,6 +91841,7 @@ self: { version = "0.1.1.2"; sha256 = "109illgbz4g4a6qavgc4wvyxfjvjhyrxa2gpps67avmr1v90gihr"; buildDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; @@ -91342,6 +91866,7 @@ self: { version = "0.3"; sha256 = "0wijkaf3qyp6qjz0cwyhb89z5jrcz792hx8m9a43xrp7v2f84080"; buildDepends = [ base mtl stm transformers ]; + jailbreak = true; homepage = "http://www.eecs.harvard.edu/~mainland/"; description = "A type class for monads with references compatible with the mtl2 library"; license = stdenv.lib.licenses.bsd3; @@ -91403,6 +91928,7 @@ self: { array base containers directory either filepath instance-control mtl template-haskell text transformers ]; + jailbreak = true; homepage = "https://github.com/lazac/references"; description = "Generalization of lenses, folds and traversals to handle monads and addition"; license = stdenv.lib.licenses.bsd3; @@ -91422,6 +91948,7 @@ self: { buildDepends = [ base clippard cmdargs directory filepath haskheap network ]; + jailbreak = true; homepage = "https://github.com/Raynes/refh"; description = "A command-line tool for pasting to https://www.refheap.com"; license = stdenv.lib.licenses.mit; @@ -91434,7 +91961,6 @@ self: { version = "1.5.1"; sha256 = "18ail6j7rs5jff9zxphxd7vjkwanpv12dhi98s86r65425fdhjlx"; buildDepends = [ base template-haskell ]; - configureFlags = [ "-fth" "-f-slow" ]; homepage = "http://github.com/ekmett/reflection"; description = "Reifies arbitrary terms into types that can be reflected back into terms"; license = stdenv.lib.licenses.bsd3; @@ -91448,6 +91974,7 @@ self: { version = "0.1.1.0"; sha256 = "1cnqd8hrcvjvcdrida0q3dxkkmp36qsfqhv0a5zr94b1y5zfrj4k"; buildDepends = [ aeson base constraints lens reflection tagged ]; + jailbreak = true; homepage = "http://github.com/jfischoff/reflection-extras"; description = "Utilities for the reflection package"; license = stdenv.lib.licenses.bsd3; @@ -91512,6 +92039,7 @@ self: { buildDepends = [ base bytestring happstack-server mtl random reform text utf8-string ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Happstack support for reform"; license = stdenv.lib.licenses.bsd3; @@ -91554,7 +92082,6 @@ self: { version = "0.93.2"; sha256 = "0y1j4h2pg12c853nzmczs263di7xkkmlnsq5dlp5wgbgl49mgp10"; buildDepends = [ array base bytestring containers mtl ]; - configureFlags = [ "-fsplitbase" "-fnewbase" ]; homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -91567,7 +92094,6 @@ self: { version = "0.95.1"; sha256 = "0fwmima3f04p9y4h3c23493n1xj629ia2dxaisqm6rynljjv2z6m"; buildDepends = [ array base regex-base regex-posix ]; - configureFlags = [ "-fsplitbase" "-fnewbase" ]; homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -91580,7 +92106,6 @@ self: { version = "0.95.1.4"; sha256 = "1p90fn90yhp7fvljjdqjp41cszidcfz4pw7fwvzyx4739b98x8sg"; buildDepends = [ array base regex-base regex-tdfa ]; - configureFlags = [ "-fsplitbase" "-fnewbase" ]; homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; description = "Unicode Support version of Text.Regex, using regex-tdfa"; license = stdenv.lib.licenses.bsd3; @@ -91599,7 +92124,6 @@ self: { base bitset bytestring containers deepseq dequeue ghc-prim hashable hashtables mtl parallel parsec regex-base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.google.com/p/xhaskell-regex-deriv/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = stdenv.lib.licenses.bsd3; @@ -91673,7 +92197,6 @@ self: { sha256 = "1h16w994g9s62iwkdqa7bar2n9cfixmkzz2rm8svm960qr57valf"; buildDepends = [ array base bytestring containers regex-base ]; extraLibraries = [ pcre ]; - configureFlags = [ "-fsplitbase" "-fnewbase" ]; homepage = "http://hackage.haskell.org/package/regex-pcre"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -91686,7 +92209,6 @@ self: { version = "0.94.4.8.8.35"; sha256 = "0y7as9wqlkykpipka2cfdhmcnin345q01pp0wsva8fwmvsavdl8b"; buildDepends = [ array base bytestring containers regex-base ]; - configureFlags = [ "-fsplitbase" "-fnewbase" ]; homepage = "http://hackage.haskell.org/package/regex-pcre"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -91704,7 +92226,6 @@ self: { base bitset bytestring containers deepseq ghc-prim mtl parallel parsec regex-base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = stdenv.lib.licenses.bsd3; @@ -91717,7 +92238,6 @@ self: { version = "0.95.2"; sha256 = "0gkhzhj8nvfn1ija31c7xnl6p0gadwii9ihyp219ck2arlhrj0an"; buildDepends = [ array base bytestring containers regex-base ]; - configureFlags = [ "-fsplitbase" "-fnewbase" ]; homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -91751,7 +92271,6 @@ self: { buildDepends = [ array base bytestring containers ghc-prim mtl parsec regex-base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://hackage.haskell.org/package/regex-tdfa"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -91768,7 +92287,6 @@ self: { buildDepends = [ array base bytestring containers ghc-prim mtl parsec regex-base ]; - configureFlags = [ "-fbase4" ]; homepage = "http://hackage.haskell.org/package/regex-tdfa"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -91837,6 +92355,7 @@ self: { version = "0.1.5"; sha256 = "1dmhvnz6sj80kdnm2v7n0lvx8g9arhf9pqqzkn0rwzfhr2by0ss4"; buildDepends = [ base haskell98 parsec ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; description = "A regular expression library for W3C XML Schema regular expressions"; license = stdenv.lib.licenses.bsd3; @@ -91856,7 +92375,7 @@ self: { array base Cabal containers parallel parsec QuickCheck regex-base regex-posix regexdot toolshed ]; - configureFlags = [ "-f-llvm" "-fthreaded" ]; + jailbreak = true; homepage = "http://functionalley.eu"; description = "A POSIX, extended regex-engine"; license = "GPL"; @@ -91869,7 +92388,6 @@ self: { version = "0.11.1.0"; sha256 = "0hxqhfamy98ygnbh0ajhdab1zqnx4qnkwclnn5x5f9ra5iqj0rrq"; buildDepends = [ base deepseq parallel parsec toolshed ]; - configureFlags = [ "-fthreaded" "-f-llvm" "-fhavedeepseq" ]; homepage = "http://functionalley.eu"; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; @@ -91886,6 +92404,7 @@ self: { buildDepends = [ base containers derive-trie template-haskell weighted-regexp ]; + jailbreak = true; homepage = "http://github.com/baldo/regexp-tries"; description = "Regular Expressions on Tries"; license = stdenv.lib.licenses.bsd3; @@ -91910,6 +92429,7 @@ self: { version = "0.5"; sha256 = "1cpwvb5mmcaqwy617m6cr25pcb4v4yxwzxng82bcrwkhjfdklsdr"; buildDepends = [ base ]; + jailbreak = true; homepage = "http://sulzmann.blogspot.com/2008/12/equality-containment-and-intersection.html"; description = "Regular expressions via symbolic manipulation"; license = stdenv.lib.licenses.bsd3; @@ -91935,6 +92455,7 @@ self: { version = "0.7"; sha256 = "1v71k64is86yc19n96062wl8f382xna1vnm0spcmr9jx6x3wyqv2"; buildDepends = [ base base-unicode-symbols regions transformers ]; + jailbreak = true; homepage = "https://github.com/basvandijk/regional-pointers/"; description = "Regional memory pointers"; license = stdenv.lib.licenses.bsd3; @@ -91951,6 +92472,7 @@ self: { buildDepends = [ base base-unicode-symbols monad-control transformers ]; + jailbreak = true; homepage = "https://github.com/basvandijk/regions/"; description = "Provides the region monad for safely opening and working with scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -91967,6 +92489,7 @@ self: { buildDepends = [ base-unicode-symbols monads-fd regions transformers ]; + jailbreak = true; description = "Monads-fd instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -91982,6 +92505,7 @@ self: { buildDepends = [ base-unicode-symbols monads-tf regions transformers ]; + jailbreak = true; homepage = "https://github.com/basvandijk/regions-monadstf/"; description = "Monads-tf instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -91994,6 +92518,7 @@ self: { version = "0.3.1.7"; sha256 = "1s0sr42k1kmwgmrnj5zcan0j9br8xrrm1vdnj6yhliqdfz41ifc0"; buildDepends = [ base-unicode-symbols mtl regions ]; + jailbreak = true; homepage = "https://github.com/basvandijk/regions-mtl/"; description = "mtl instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -92017,7 +92542,7 @@ self: { version = "0.2.3"; sha256 = "0x1sbps0ccwpvf6fx1jnbjxylqsvvfzkkynliip9jyh6gkhm44vx"; buildDepends = [ base binary deepseq QuickCheck regular ]; - configureFlags = [ "-fquickcheck2" ]; + jailbreak = true; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -92033,6 +92558,7 @@ self: { buildDepends = [ applicative-extras base fclabels formlets json mtl regular xhtml ]; + jailbreak = true; homepage = "http://github.com/chriseidhof/regular-web"; description = "Generic programming for the web"; license = stdenv.lib.licenses.bsd3; @@ -92104,6 +92630,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ghc ]; + jailbreak = true; homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Serialize data"; license = "GPL"; @@ -92141,6 +92668,7 @@ self: { version = "0.2.1"; sha256 = "03h6l8v3ppxbwg9ddgg121yx3i2v4vbcpwrv1vg3mgbw5pwq7x4c"; buildDepends = [ array base containers groom ]; + jailbreak = true; homepage = "https://www.github.com/d-day/relation/"; description = "A data structure representing Relations on Sets"; license = stdenv.lib.licenses.bsd3; @@ -92261,6 +92789,7 @@ self: { version = "0.0.1"; sha256 = "052rk17flm5zp70wcl7ki3ys47hnaa2d5c1vjsap7bfkcg4lff66"; buildDepends = [ base concatenative datetime mtl parsec time ]; + jailbreak = true; description = "Durations and generalized time parsing"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -92359,6 +92888,7 @@ self: { placeholders QuickCheck quickcheck-instances stm system-fileio system-filepath text time transformers-base ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/remotion"; description = "A library for client-server applications based on custom protocols"; license = stdenv.lib.licenses.mit; @@ -92386,6 +92916,7 @@ self: { buildDepends = [ base constraints haskell-src-exts haskell-src-meta template-haskell ]; + jailbreak = true; description = "Define compound types that do not depend on member order"; license = "unknown"; }) {}; @@ -92426,6 +92957,7 @@ self: { version = "3.0.0.1"; sha256 = "1q7kvm39iqabanrgyi438n8mfn1ikvpygralyakfc02rm2gpl0gb"; buildDepends = [ base repa ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -92459,6 +92991,7 @@ self: { template-haskell vector ]; extraLibraries = [ llvm ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Examples using the Repa array library"; license = stdenv.lib.licenses.bsd3; @@ -92504,6 +93037,7 @@ self: { base containers ddc-base ddc-core ddc-core-flow ddc-core-simpl ghc mtl ]; + jailbreak = true; description = "Data Flow Fusion GHC Plugin"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -92515,6 +93049,7 @@ self: { version = "1.0.0.1"; sha256 = "1kldz4d4cv0vliqw78ywbcfgh0mw4i5cd93j0jdagvhsbhlxlp5k"; buildDepends = [ base ghc ghc-prim vector ]; + jailbreak = true; description = "Series Expressionss API"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -92533,7 +93068,6 @@ self: { testDepends = [ base directory filepath hsndfile hsndfile-vector repa vector ]; - configureFlags = [ "-f-example" ]; description = "Reading and writing sound files with repa arrays"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -92564,6 +93098,7 @@ self: { version = "1.1"; sha256 = "0q9gk76r9n8gyn8fwqfmywbrjhyqy0gz8blmmvrvwghyfscabnh9"; buildDepends = [ base ghc ghc-paths haskell-src-exts parsec ]; + jailbreak = true; homepage = "https://github.com/mikeplus64/repl"; description = "IRC friendly REPL library"; license = stdenv.lib.licenses.mit; @@ -92581,6 +93116,7 @@ self: { base functor-monadic ListLike listsafe monad-loops mtl numericpeano parsec text ]; + jailbreak = true; homepage = "https://github.com/ombocomp/repl-toolkit"; description = "Toolkit for quickly whipping up command-line interfaces"; license = stdenv.lib.licenses.asl20; @@ -92593,6 +93129,7 @@ self: { version = "0.1.2.0"; sha256 = "1d092sj75izr8kc1777sq53ldd4dy8nlx1d6b6c0sl8jgvyzb6lr"; buildDepends = [ base containers haskeline mtl ]; + jailbreak = true; description = "Haskeline wrapper for GHCi-like REPL interfaces"; license = stdenv.lib.licenses.mit; }) {}; @@ -92635,6 +93172,7 @@ self: { buildDepends = [ base base-unicode-symbols dstring random string-combinators ]; + jailbreak = true; homepage = "https://github.com/basvandijk/repr"; description = "Render overloaded expressions to their textual representation"; license = stdenv.lib.licenses.bsd3; @@ -92647,6 +93185,7 @@ self: { version = "0.1.0"; sha256 = "1kpxfvbmfv3zhn0fx7fznnppqxjz2f70g5n89hzkiqjz2am0ls5s"; buildDepends = [ base containers syb text ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/repr-tree-syb"; description = "Tree representation and pretty-printing of data structures based on SYB"; license = stdenv.lib.licenses.mit; @@ -92666,6 +93205,7 @@ self: { contravariant distributive free keys mtl semigroupoids semigroups transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/representable-functors/"; description = "Representable functors"; license = stdenv.lib.licenses.bsd3; @@ -92709,6 +93249,7 @@ self: { version = "0.3.0.1"; sha256 = "1aqcsm9a3zd11k7d4nbvxsy7l35fr77z7gyhrl7rvflnixid29ws"; buildDepends = [ base free mtl transformers ]; + jailbreak = true; homepage = "http://github.com/nahiluhmot/request-monad"; description = "A transformer for generic requests"; license = stdenv.lib.licenses.mit; @@ -92788,6 +93329,7 @@ self: { base containers extensible-effects HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/wowus/resource-effect/"; description = "A port of the package 'resourcet' for extensible effects"; license = stdenv.lib.licenses.bsd3; @@ -92805,7 +93347,6 @@ self: { base hashable monad-control stm time transformers transformers-base vector ]; - configureFlags = [ "-f-developer" ]; homepage = "http://github.com/bos/pool"; description = "A high-performance striped resource pooling implementation"; license = stdenv.lib.licenses.bsd3; @@ -92823,7 +93364,6 @@ self: { base hashable MonadCatchIO-transformers stm time transformers transformers-base vector ]; - configureFlags = [ "-f-developer" ]; homepage = "http://github.com/norm2782/pool"; description = "Fork of resource-pool, with a MonadCatchIO constraint"; license = stdenv.lib.licenses.bsd3; @@ -92841,6 +93381,7 @@ self: { base containers monad-control monad-fork mtl-evil-instances transformers transformers-base ]; + jailbreak = true; description = "Allocate resources which are guaranteed to be released"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -92884,6 +93425,7 @@ self: { template-haskell text time transformers transformers-base unordered-containers vector wai wai-extra warp ]; + jailbreak = true; homepage = "https://github.com/raptros/respond"; description = "process and route HTTP requests and generate responses on top of WAI"; license = stdenv.lib.licenses.bsd3; @@ -92951,7 +93493,6 @@ self: { regular regular-xmlpickler rest-core rest-gen safe stm text time transformers transformers-base unordered-containers ]; - configureFlags = [ "-fgen" "-f-snap" "-f-wai" "-f-happstack" ]; homepage = "http://www.github.com/silkapp/rest"; description = "Example project for rest"; license = stdenv.lib.licenses.bsd3; @@ -93078,6 +93619,7 @@ self: { digestive-functors errors heist lens mtl old-locale readable snap snap-core snap-extras template-haskell text time xmlhtml ]; + jailbreak = true; homepage = "https://github.com/ozataman/restful-snap"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93096,6 +93638,7 @@ self: { monad-control mtl network selinux stm text transformers transformers-base unix ]; + jailbreak = true; homepage = "https://github.com/co-dan/interactive-diagrams/wiki/Restricted-Workers"; description = "Running worker processes under system resource restrictions"; license = stdenv.lib.licenses.bsd3; @@ -93110,6 +93653,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base directory filepath utf8-string ]; + jailbreak = true; description = "Convert between camel case and separated words style"; license = stdenv.lib.licenses.mit; }) {}; @@ -93121,6 +93665,7 @@ self: { version = "0.0.0.20100920"; sha256 = "06lzjf8dcbxks57x434n27146whryzzpwcn8bq2mclwfcrv9g3gs"; buildDepends = [ base mtl ]; + jailbreak = true; description = "A monad transformer for resumable exceptions"; license = "unknown"; }) {}; @@ -93140,7 +93685,6 @@ self: { utf8-string vector ]; testDepends = [ base doctest ]; - configureFlags = [ "-f-dev" ]; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 1.15"; license = stdenv.lib.licenses.asl20; @@ -93164,6 +93708,7 @@ self: { base hspec hspec-smallcheck smallcheck text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; description = "Client driver for RethinkDB"; license = stdenv.lib.licenses.mit; @@ -93202,6 +93747,7 @@ self: { base data-default-class exceptions hspec HUnit QuickCheck time transformers ]; + jailbreak = true; homepage = "http://github.com/Soostone/retry"; description = "Retry combinators for monadic actions that may fail"; license = stdenv.lib.licenses.bsd3; @@ -93266,6 +93812,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ array base process ]; + jailbreak = true; description = "Text-only reversi (aka othelo) game"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -93279,6 +93826,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring directory multiarg process ]; + jailbreak = true; homepage = "http://www.github.com/massysett/rewrite"; description = "open file and rewrite it with new contents"; license = stdenv.lib.licenses.bsd3; @@ -93325,6 +93873,7 @@ self: { buildDepends = [ base bytestring containers datetime HTTP json mtl nano-md5 xhtml ]; + jailbreak = true; description = "Github resume generator"; license = "GPL"; }) {}; @@ -93349,7 +93898,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring containers ]; - configureFlags = [ "-f-mkunicodedata" ]; description = "Simple unicode collation as per RFC5051"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93390,7 +93938,6 @@ self: { base bytestring QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-f-developer" "-fdebug" ]; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; @@ -93437,6 +93984,7 @@ self: { buildDepends = [ base binary bytestring either filepath transformers ]; + jailbreak = true; homepage = "https://bitbucket.org/robertmassaioli/riff/overview"; description = "RIFF parser for Haskell"; license = stdenv.lib.licenses.mit; @@ -93511,6 +94059,7 @@ self: { isExecutable = true; buildDepends = [ array base containers mtl pretty ]; buildTools = [ alex happy ]; + jailbreak = true; homepage = "http://www2.tcs.ifi.lmu.de/~abel/"; description = "Reduced instruction set i386 simulator"; license = stdenv.lib.licenses.bsd3; @@ -93523,6 +94072,7 @@ self: { version = "0.1.0"; sha256 = "0x7r04mwxwnqckfk865dckml4am11zx80a9k5kc91kz5ikq1ns64"; buildDepends = [ base lazysmallcheck oeis QuickCheck ]; + jailbreak = true; homepage = "https://github.com/d-rive/rivers"; description = "Rivers are like Streams, but different"; license = stdenv.lib.licenses.bsd3; @@ -93540,7 +94090,6 @@ self: { testDepends = [ base containers HUnit test-framework test-framework-hunit ]; - configureFlags = [ "-f-warn-as-error" ]; description = "Restricted monad library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93657,6 +94206,7 @@ self: { MaybeT MonadRandom mtl old-time parallel priority-sync PSQueue random stm ]; + jailbreak = true; homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Backend."; license = "unknown"; @@ -93675,6 +94225,7 @@ self: { arrows base bytestring containers filepath GLUT MonadRandom mtl OpenGL priority-sync random rsagl rsagl-frp rsagl-math stm ]; + jailbreak = true; homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client library."; license = "unknown"; @@ -93689,6 +94240,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base GLUT roguestar-gl rsagl ]; + jailbreak = true; homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; @@ -93724,6 +94276,7 @@ self: { buildDepends = [ base optparse-applicative random regex-applicative ]; + jailbreak = true; homepage = "https://github.com/Econify/roller"; description = "Playing with applicatives and dice!"; license = stdenv.lib.licenses.gpl2; @@ -93790,6 +94343,7 @@ self: { version = "0.6.4"; sha256 = "1g77bv2mmfhy2mkb08k92m3f2jab6p2la2s7rfib2r1jy6lq5vhb"; buildDepends = [ base bytestring fingertree mtl utf8-string ]; + jailbreak = true; homepage = "http://github.com/ekmett/rope"; description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; license = stdenv.lib.licenses.bsd3; @@ -93849,7 +94403,7 @@ self: { attoparsec base bytestring containers data-default-generics filepath mtl pureMD5 tasty tasty-hunit testpack transformers ]; - configureFlags = [ "-flogging" ]; + jailbreak = true; homepage = "http://github.com/acowley/roshask"; description = "Haskell support for the ROS robotics framework"; license = stdenv.lib.licenses.bsd3; @@ -93903,6 +94457,7 @@ self: { version = "0.3.0"; sha256 = "1d2vaijcna8gwcrhsjpclqw4gjdvdpmnrlyszqzcxnqf0l206a6y"; buildDepends = [ array base numeric-extras ]; + jailbreak = true; homepage = "http://patch-tag.com/r/ekmett/rounding"; description = "Explicit floating point rounding mode wrappers"; license = stdenv.lib.licenses.bsd3; @@ -93951,7 +94506,6 @@ self: { enumerator mtl pretty reference roundtrip roundtrip-string safe text xml-enumerator xml-types ]; - configureFlags = [ "-f-tests" ]; description = "Bidirectional (de-)serialization for XML"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93982,7 +94536,6 @@ self: { base containers coordinate lens semigroupoids semigroups text xsd ]; testDepends = [ base directory doctest filepath QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/route"; description = "A library and utilities for creating a route"; license = stdenv.lib.licenses.bsd3; @@ -94028,6 +94581,7 @@ self: { buildDepends = [ base containers mtl network template-haskell transformers ]; + jailbreak = true; homepage = "http://github.com/mmirman/rpc-framework"; description = "a remote procedure call framework"; license = stdenv.lib.licenses.bsd3; @@ -94061,7 +94615,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base directory filepath HaXml process ]; - configureFlags = [ "-fhpc" "-f-tests" ]; description = "Cozy little project to question unruly rpm packages"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94081,6 +94634,7 @@ self: { old-time OpenGL OpenGLRaw parallel parsec random rsagl-frp rsagl-math stm Vec Vec-OpenGLRaw ]; + jailbreak = true; homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library"; license = stdenv.lib.licenses.bsd3; @@ -94097,6 +94651,7 @@ self: { buildDepends = [ array arrows base containers mtl old-time random rsagl-math stm ]; + jailbreak = true; homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; @@ -94114,6 +94669,7 @@ self: { array base containers deepseq OpenGL OpenGLRaw parallel parsec random Vec Vec-OpenGLRaw ]; + jailbreak = true; homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = stdenv.lib.licenses.bsd3; @@ -94128,7 +94684,6 @@ self: { version = "3000.2.0.4"; sha256 = "1kq7bk3kl48699n2ri15im5ds8cd2pmcjglh06br1knxkli80kbq"; buildDepends = [ base HaXml network network-uri old-locale time ]; - configureFlags = [ "-fnetwork-uri" "-fold-locale" ]; homepage = "https://github.com/basvandijk/rss"; description = "A library for generating RSS 2.0 feeds."; license = stdenv.lib.licenses.publicDomain; @@ -94152,6 +94707,7 @@ self: { old-locale parsec regexpr resourcet safe split text time transformers utf8-string ]; + jailbreak = true; homepage = "http://hackage.haskell.org/package/rss2irc"; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = stdenv.lib.licenses.bsd3; @@ -94247,6 +94803,7 @@ self: { base bytestring haskell-src-exts haskell-src-meta pcre-light process template-haskell trifecta ]; + jailbreak = true; homepage = "https://github.com/joelteon/ruby-qq"; description = "rubyish quasiquoters"; license = stdenv.lib.licenses.mit; @@ -94350,7 +94907,6 @@ self: { version = "0.2.0.2"; sha256 = "1n24fl27mrm7cndp8b646b9c5hjm3hf5m12y9ni0f850dd739jm4"; buildDepends = [ base MonadPrompt mtl random-source transformers ]; - configureFlags = [ "-fmtl2" ]; homepage = "https://github.com/mokus0/random-fu"; description = "Random Variables"; license = stdenv.lib.licenses.publicDomain; @@ -94363,7 +94919,6 @@ self: { version = "0.0.0.3"; sha256 = "0isx32ayaqh7vhcyl11ykdy8f1chs1fdw73h3c2r53k989yfkmba"; buildDepends = [ base monad-loops-stm stm syb ]; - configureFlags = [ "-fbase4" ]; homepage = "https://github.com/mokus0/rwlock"; description = "Multiple-read / single-write locks"; license = stdenv.lib.licenses.publicDomain; @@ -94384,6 +94939,7 @@ self: { base binary bytestring parsec QuickCheck test-framework test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/karknu/rws"; description = "Packet Generation"; license = stdenv.lib.licenses.bsd3; @@ -94424,6 +94980,7 @@ self: { version = "0.2.1.0"; sha256 = "0k3ynhx6ydwz1b25z9yvpxkqy2ynz2d7db52pzbb70p6vmm1cq2i"; buildDepends = [ base mtl transformers ]; + jailbreak = true; homepage = "http://hub.darcs.net/thoferon/safe-access"; description = "A simple environment to control access to data"; license = stdenv.lib.licenses.bsd3; @@ -94459,6 +95016,7 @@ self: { version = "0.2.1"; sha256 = "12mqgak0rla20n9b4m6ynx64bwr06njcr849csc0z0r573xw2v33"; buildDepends = [ base indexed mtl vector ]; + jailbreak = true; homepage = "https://github.com/reinerp/safe-freeze"; description = "Support for safely freezing multiple arrays in the ST monad"; license = stdenv.lib.licenses.bsd3; @@ -94553,6 +95111,7 @@ self: { base base-unicode-symbols explicit-iomodes pathtype regional-pointers regions transformers ]; + jailbreak = true; homepage = "https://github.com/basvandijk/safer-file-handles/"; description = "Type-safe file handling"; license = stdenv.lib.licenses.bsd3; @@ -94570,6 +95129,7 @@ self: { base bytestring explicit-iomodes-bytestring regions safer-file-handles transformers ]; + jailbreak = true; homepage = "https://github.com/basvandijk/safer-file-handles-bytestring/"; description = "Extends safer-file-handles with ByteString operations"; license = stdenv.lib.licenses.bsd3; @@ -94586,6 +95146,7 @@ self: { buildDepends = [ explicit-iomodes-text regions safer-file-handles text transformers ]; + jailbreak = true; homepage = "https://github.com/basvandijk/safer-file-handles-text/"; description = "Extends safer-file-handles with Text operations"; license = stdenv.lib.licenses.bsd3; @@ -94598,6 +95159,7 @@ self: { version = "0.2.0.0"; sha256 = "00ykmy44paghgc3m731p1hh00zv11416pl2xil4cav7vrr43nb6h"; buildDepends = [ base blaze-html containers text ]; + jailbreak = true; description = "A simple type-safe routing library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94611,7 +95173,6 @@ self: { sha256 = "07g7qpf7avv5hnxykrh4x7qr8sx9mwwv4hbavnsqi1n7zy2z91a3"; buildDepends = [ base containers ghc ghc-syb-utils syb ]; testDepends = [ base containers ghc ghc-syb-utils HUnit syb ]; - configureFlags = [ "-fuse_data_tree" ]; homepage = "http://fremissant.net/shape-syb"; description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; license = stdenv.lib.licenses.bsd3; @@ -94651,6 +95212,7 @@ self: { salvia-protocol split stm text threadmanager time transformers unix utf8-string ]; + jailbreak = true; description = "Modular web application framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94671,6 +95233,7 @@ self: { salvia-protocol salvia-sessions salvia-websocket stm threadmanager transformers ]; + jailbreak = true; description = "Demo Salvia servers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94691,6 +95254,7 @@ self: { salvia-protocol sendfile split stm text threadmanager time transformers utf8-string ]; + jailbreak = true; description = "Collection of non-fundamental handlers for the Salvia web server"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94707,6 +95271,7 @@ self: { base bimap bytestring containers fclabels parsec safe split utf8-string ]; + jailbreak = true; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94724,6 +95289,7 @@ self: { base containers fclabels MaybeT-transformers monads-fd pureMD5 random safe salvia salvia-protocol stm time utf8-string ]; + jailbreak = true; description = "Session support for the Salvia webserver"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94740,6 +95306,7 @@ self: { base bytestring fclabels monads-fd salvia salvia-protocol stm utf8-string ]; + jailbreak = true; description = "Websocket implementation for the Salvia Webserver"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -94753,7 +95320,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base QuickCheck storable-record ]; - configureFlags = [ "-fsplitbase" "-f-buildbenchmarks" ]; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Handling of samples in an (audio) signal"; license = stdenv.lib.licenses.bsd3; @@ -94766,7 +95332,6 @@ self: { version = "0.0.4"; sha256 = "1l7447xjxj98jx99b75hdfdjps6mcm293yhx0fjrqwxkz6anxv6d"; buildDepends = [ base numeric-prelude sample-frame ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Orphan instances for types from sample-frame and numericprelude"; license = stdenv.lib.licenses.bsd3; @@ -94785,7 +95350,6 @@ self: { buildDepends = [ base bytestring filepath process seqloc vector ]; buildTools = [ c2hs ]; extraLibraries = [ zlib ]; - configureFlags = [ "-f-tests" ]; homepage = "http://www.ingolia-lab.org/samtools-tutorial.html"; description = "Binding to the C samtools library"; license = stdenv.lib.licenses.mit; @@ -94804,7 +95368,7 @@ self: { buildDepends = [ base bytestring conduit filepath resourcet samtools transformers ]; - configureFlags = [ "-f-examples" ]; + jailbreak = true; homepage = "http://www.ingolia-lab.org/samtools-tutorial.html"; description = "Conduit interface to SAM/BAM format files through samtools"; license = stdenv.lib.licenses.mit; @@ -94838,7 +95402,6 @@ self: { buildDepends = [ base bytestring iteratee monads-tf samtools transformers ]; - configureFlags = [ "-f-utilities" ]; description = "Iteratee interface to SamTools library"; license = stdenv.lib.licenses.mit; }) {}; @@ -94855,7 +95418,6 @@ self: { testDepends = [ base bytestring HUnit tasty tasty-hunit tasty-quickcheck tasty-th ]; - configureFlags = [ "-fwith-conduit" ]; homepage = "http://hackage.haskell.org/package/sandi"; description = "Data encoding library"; license = stdenv.lib.licenses.bsd3; @@ -94868,6 +95430,7 @@ self: { version = "0.0.2"; sha256 = "07wh6va4rpf6vvxnjqbmwfna3rg20ysjh2pnzylz6xzlayzq0pkx"; buildDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/regularlambda/sandlib"; description = "SAND data serialization and manipulation library"; license = stdenv.lib.licenses.bsd3; @@ -94880,6 +95443,7 @@ self: { version = "0.3.0.0"; sha256 = "0x8d5n2mydhwl9h7vzk7nr58b2aym9xb21p4m21rfa6vy6r2n438"; buildDepends = [ base deepseq portaudio ]; + jailbreak = true; homepage = "https://github.com/tokiwoousaka/Sarasvati"; description = "audio library"; license = stdenv.lib.licenses.bsd3; @@ -95069,6 +95633,7 @@ self: { attoparsec attoparsec-enumerator base blaze-builder BoundedChan bytestring enumerator mtl network network-enumerator ]; + jailbreak = true; homepage = "https://github.com/jamwt/haskell-scalable-server/"; description = "Library for writing fast/scalable TCP-based services"; license = stdenv.lib.licenses.bsd3; @@ -95083,7 +95648,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base filepath gd ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/scaleimage"; description = "Scale an image to a new geometry"; license = stdenv.lib.licenses.bsd3; @@ -95098,7 +95662,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base parsec ]; - configureFlags = [ "-f-parsec1" ]; homepage = "http://projects.haskell.org/style-scanner"; description = "lexical style suggestions for source code"; license = stdenv.lib.licenses.bsd3; @@ -95134,6 +95697,7 @@ self: { ansi-terminal base bytestring mtl optparse-applicative scrypt vector ]; + jailbreak = true; homepage = "https://github.com/redelmann/scat"; description = "Generates unique passwords for various websites from a single password"; license = stdenv.lib.licenses.bsd3; @@ -95161,7 +95725,7 @@ self: { monad-parallel monoid-subclasses QuickCheck test-framework test-framework-quickcheck2 text transformers ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "http://trac.haskell.org/SCC/"; description = "Streaming component combinators"; license = "GPL"; @@ -95179,6 +95743,7 @@ self: { array base containers fgl GLUT haskell98 hmatrix mtl old-time OpenGL process ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/SceneGraph"; description = "Scene Graph"; license = stdenv.lib.licenses.bsd3; @@ -95210,6 +95775,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory filepath old-locale time xturtle ]; + jailbreak = true; description = "Marge schedules and show EVR"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95221,6 +95787,7 @@ self: { version = "1.0"; sha256 = "0lzhxlfxa660vx4y49gbg2q76v8dda00h3rznj5fhdjj29pkypgp"; buildDepends = [ base ]; + jailbreak = true; description = "Exposes standard POSIX function sched_yield"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95258,10 +95825,7 @@ self: { HUnit process QuickCheck scholdoc-types syb test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ - "-fnetwork-uri" "-f-make-pandoc-man-pages" "-fhttps" - "-f-tryscholdoc" "-f-embed_data_files" - ]; + jailbreak = true; homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; license = "GPL"; @@ -95291,10 +95855,6 @@ self: { aeson base bytestring directory filepath process scholdoc scholdoc-types temporary text yaml ]; - configureFlags = [ - "-f-test_citeproc" "-f-unicode_collation" "-f-embed_data_files" - "-fbibutils" "-fsmall_base" - ]; homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of pandoc-citeproc"; license = stdenv.lib.licenses.bsd3; @@ -95319,7 +95879,6 @@ self: { base bytestring directory filepath process split temporary text utf8-string xml ]; - configureFlags = [ "-fnetwork-uri" "-f-executable" ]; homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of texmath"; license = "GPL"; @@ -95337,6 +95896,7 @@ self: { buildDepends = [ aeson base bytestring containers deepseq-generics ghc-prim syb ]; + jailbreak = true; homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of pandoc-types"; license = "GPL"; @@ -95373,6 +95933,7 @@ self: { version = "0.2.0.0"; sha256 = "0qp3d9la929kks2b2pyylgznl86gy91lp3zgpb9bn7gas3wll9vy"; buildDepends = [ base ]; + jailbreak = true; description = "Mathematical/physical/chemical constants"; license = "unknown"; }) {}; @@ -95384,6 +95945,7 @@ self: { version = "0.1.0.1"; sha256 = "0n39pfs7kfhy62vl9q2ka5f9bfckncpssjsdx71d1hrld0jcq2g8"; buildDepends = [ base dimensional numtype science-constants ]; + jailbreak = true; description = "Mathematical/physical/chemical constants"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95405,7 +95967,6 @@ self: { base bytestring QuickCheck smallcheck tasty tasty-ant-xml tasty-hunit tasty-quickcheck tasty-smallcheck text ]; - configureFlags = [ "-f-integer-simple" "-fbytestring-builder" ]; homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; @@ -95427,7 +95988,7 @@ self: { ghc-syb hslogger json multiset network network-bytestring time uniplate utf8-string ]; - configureFlags = [ "-fserver" "-f-testing" ]; + jailbreak = true; homepage = "http://github.com/nominolo/scion"; description = "Haskell IDE library"; license = stdenv.lib.licenses.bsd3; @@ -95456,6 +96017,7 @@ self: { resourcet tar text transformers unix unordered-containers utf8-string vector zlib ]; + jailbreak = true; homepage = "http://github.com/JPMoresmau/scion-class-browser"; description = "Command-line interface for browsing and searching packages documentation"; license = stdenv.lib.licenses.bsd3; @@ -95470,6 +96032,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring containers process ]; + jailbreak = true; description = "Generates graphviz file of scons dependency information"; license = "GPL"; }) {}; @@ -95487,7 +96050,6 @@ self: { base bytestring containers iteratee MonadCatchIO-transformers mtl mwc-random time unix zoom-cache ]; - configureFlags = [ "-fsplitbase" ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95506,7 +96068,6 @@ self: { base cairo gtk MonadCatchIO-transformers mtl old-locale scope time zoom-cache ]; - configureFlags = [ "-fsplitbase" ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95524,6 +96085,7 @@ self: { base data-default enclosed-exceptions http-types lens mtl persistent resource-pool scotty stm text transformers wai warp ]; + jailbreak = true; homepage = "https://github.com/echaozh/scottish"; description = "scotty with batteries included"; license = stdenv.lib.licenses.bsd3; @@ -95595,6 +96157,7 @@ self: { base blaze-builder bytestring containers cookie scotty text time transformers ]; + jailbreak = true; homepage = "https://bitbucket.org/wniare/scotty-cookie"; description = "Cookie management helper functions for Scotty framework"; license = stdenv.lib.licenses.bsd3; @@ -95618,6 +96181,7 @@ self: { http-types HUnit scotty test-framework test-framework-hunit text transformers wai wai-test ]; + jailbreak = true; description = "Fay integration for Scotty"; license = stdenv.lib.licenses.mit; }) {}; @@ -95685,6 +96249,7 @@ self: { sha-streams unix ]; testDepends = [ base bytestring io-streams ]; + jailbreak = true; homepage = "https://github.com/noteed/scp-streams"; description = "An SCP protocol implementation"; license = stdenv.lib.licenses.bsd3; @@ -95704,6 +96269,7 @@ self: { array base binary containers deepseq directory mtl packed-dawg parallel split ]; + jailbreak = true; description = "Scrabble play generation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95722,7 +96288,6 @@ self: { base containers curl MissingH network network-uri old-locale pureMD5 time url ]; - configureFlags = [ "-fnetwork-uri" ]; description = "Scrobbling server"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95785,7 +96350,7 @@ self: { array base cmdargs containers directory filepath json mtl parsec pretty process safe tagsoup time uniplate ]; - configureFlags = [ "-fthreaded" ]; + jailbreak = true; description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols"; license = "GPL"; }) {}; @@ -95831,6 +96396,7 @@ self: { buildDepends = [ base sdl2 ]; extraLibraries = [ SDL2 ]; pkgconfigDepends = [ SDL2 SDL2_image ]; + jailbreak = true; description = "Haskell binding to sdl2-image"; license = stdenv.lib.licenses.mit; }) { inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; @@ -95868,6 +96434,7 @@ self: { persistent-template text time transformers wai wai-extra wai-middleware-static warp web-routes web-routes-wai ]; + jailbreak = true; homepage = "https://github.com/Barrucadu/lambdadelta"; description = "Small web framework using Warp and WAI"; license = "unknown"; @@ -95908,6 +96475,7 @@ self: { version = "0.0.1"; sha256 = "1ryl0nm1a37r606xhxy6ykf3c8c1gml6gdqna428w8y3a2vg5q2v"; buildDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/urso/sec"; description = "Semantic Editor Combinators"; license = stdenv.lib.licenses.bsd3; @@ -95951,6 +96519,7 @@ self: { buildDepends = [ base containers diagrams-cairo diagrams-lib haskell-qrencode random ]; + jailbreak = true; homepage = "https://github.com/rodrigosetti/secret-santa"; description = "Secret Santa game assigner using QR-Codes"; license = stdenv.lib.licenses.gpl3; @@ -95986,6 +96555,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base haskell98 ]; + jailbreak = true; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -96071,7 +96641,6 @@ self: { version = "0.2.5"; sha256 = "0vr3d891pj947lv2grgbc83nm828gz9bbz6dp8mnf9bsji3ih7l7"; buildDepends = [ base HTTP HUnit mtl network pretty ]; - configureFlags = [ "-fsmall_base" ]; description = "Test web applications through a browser"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -96091,6 +96660,7 @@ self: { utf8-string ]; testDepends = [ base hspec text webdriver ]; + jailbreak = true; homepage = "https://github.com/joelteon/selenium-server.git"; description = "Run the selenium standalone server for usage with webdriver"; license = stdenv.lib.licenses.mit; @@ -96172,9 +96742,6 @@ self: { base comonad containers contravariant distributive semigroups transformers ]; - configureFlags = [ - "-fcomonad" "-fdistributive" "-fcontravariant" "-fcontainers" - ]; homepage = "http://github.com/ekmett/semigroupoids"; description = "Semigroupoids: Category sans id"; license = stdenv.lib.licenses.bsd3; @@ -96196,10 +96763,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ - "-fcomonad" "-fdistributive" "-fcontravariant" "-fcontainers" - "-fsmall_base" - ]; homepage = "https://github.com/NICTA/semigroupoids-syntax"; description = "RebindableSyntax using the semigroupoids package"; license = stdenv.lib.licenses.bsd3; @@ -96217,10 +96780,6 @@ self: { base bytestring containers deepseq hashable nats text unordered-containers ]; - configureFlags = [ - "-funordered-containers" "-ftext" "-fdeepseq" "-fcontainers" - "-fbytestring" "-fhashable" - ]; homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; @@ -96233,7 +96792,7 @@ self: { version = "0.1"; sha256 = "0vns2vdchszw34i12s9rfl4cm76ympfrivpb397j2vzg2i7bghqb"; buildDepends = [ base containers semigroups ]; - configureFlags = [ "-f-base2" ]; + jailbreak = true; homepage = "http://github.com/ppetr/semigroups-actions/"; description = "Semigroups actions"; license = stdenv.lib.licenses.bsd3; @@ -96254,7 +96813,7 @@ self: { base Boolean containers HUnit monoids QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-f-testing" ]; + jailbreak = true; homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Semirings, ring-like structures used for dynamic programming applications"; license = stdenv.lib.licenses.bsd3; @@ -96293,7 +96852,6 @@ self: { version = "0.7.9"; sha256 = "0hnw1ym81cff49dwww19kgbs4s0kpandbvn6h5cml3y0p1nxybqh"; buildDepends = [ base bytestring network ]; - configureFlags = [ "-f-portable" ]; homepage = "http://hub.darcs.net/stepcut/sendfile"; description = "A portable sendfile library"; license = stdenv.lib.licenses.bsd3; @@ -96312,6 +96870,7 @@ self: { buildDepends = [ aeson base bytestring containers process stm zeromq3-haskell ]; + jailbreak = true; homepage = "https://github.com/rossdylan/sensenet"; description = "Distributed sensor network for the raspberry pi"; license = stdenv.lib.licenses.mit; @@ -96332,6 +96891,7 @@ self: { ansi-terminal base bytestring cereal cmdargs directory filepath old-locale old-time process safecopy time unix ]; + jailbreak = true; homepage = "https://github.com/noteed/sentry"; description = "Process monitoring tool written and configured in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -96359,7 +96919,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/separated"; description = "A data type with elements separated by values"; license = stdenv.lib.licenses.bsd3; @@ -96381,12 +96940,7 @@ self: { modulespection mtl process regex-base regex-pcre syb template-haskell temporary th-expand-syns ]; - configureFlags = [ - "-fshow_type" "-f-nfdatan_only" "-f-no_top_level_seqinj_dummies" - "-fdbg_seqaid" "-fdemo_mode" "-f-infer_top_level_types" - "-fseqaidpp_types" "-f-th_type_in_types_ann" "-f-seqable_only" - "-f-try_inject_noinline_on_requested_binds" - ]; + jailbreak = true; homepage = "http://www.fremissant.net/seqaid"; description = "Dynamic strictness control, including space leak repair"; license = stdenv.lib.licenses.bsd3; @@ -96399,6 +96953,7 @@ self: { version = "0.1.0"; sha256 = "0q5vs8kravhiq906rrzi5iw5837bb8s6fibycgdracyfwrzvxly0"; buildDepends = [ base transformers ]; + jailbreak = true; description = "Sequence ID production and consumption"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -96453,7 +97008,6 @@ self: { random resourcet seqloc transformers transformers-base unordered-containers vector ]; - configureFlags = [ "-f-tests" ]; homepage = "http://www.ingolia-lab.org/seqloc-datafiles-tutorial.html"; description = "Read and write BED and GTF format genome annotations"; license = stdenv.lib.licenses.mit; @@ -96528,6 +97082,7 @@ self: { attoparsec attoparsec-conduit base conduit mtl operational process resourcet text ]; + jailbreak = true; homepage = "http://github.com/sanetracker/serf"; description = "Interact with Serf via Haskell"; license = stdenv.lib.licenses.mit; @@ -96540,6 +97095,7 @@ self: { version = "0.2.6"; sha256 = "17z0pkc0nz3hf9s68spbb6ijcx6b2dw4y50cavf5110aav59kik1"; buildDepends = [ base unix ]; + jailbreak = true; description = "POSIX serial port wrapper"; license = "LGPL"; }) {}; @@ -96652,7 +97208,7 @@ self: { warp ]; testDepends = [ base hspec language-ecmascript servant ]; - configureFlags = [ "-f-example" ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -96776,6 +97332,7 @@ self: { directory hamlet http-types mime-types shakespeare-css text transformers wai wai-app-static wai-extra warp ]; + jailbreak = true; homepage = "http://github.com/yesodweb/hamlet"; description = "Serve Shakespearean templates via Warp (deprecated)"; license = stdenv.lib.licenses.mit; @@ -96836,7 +97393,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers utility-ht ]; - configureFlags = [ "-f-buildexamples" ]; homepage = "http://code.haskell.org/~thielema/set-cover/"; description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; license = stdenv.lib.licenses.bsd3; @@ -96961,7 +97517,6 @@ self: { buildDepends = [ base base64-string binary bytestring pretty QuickCheck random ]; - configureFlags = [ "-f-testing" ]; description = "S-expression printer and parser"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -96973,7 +97528,6 @@ self: { version = "0.1.0.0"; sha256 = "0vq7fbm8gm7fym9qjaxsy2mk89rn2pjfkbhv3ym94xslcybwrwpy"; buildDepends = [ base bytestring template-haskell ]; - configureFlags = [ "-fbytestring" "-f-text" ]; homepage = "http://github.com/dzhus/sext/"; description = "Lists, Texts and ByteStrings with type-encoded length"; license = stdenv.lib.licenses.bsd3; @@ -97017,6 +97571,7 @@ self: { base binary bytestring containers deepseq filepath lazy-io logfloat monad-par mtl primitive random temporary vector ]; + jailbreak = true; homepage = "https://github.com/kawu/sgd"; description = "Stochastic gradient descent"; license = stdenv.lib.licenses.bsd3; @@ -97034,6 +97589,7 @@ self: { base containers encoding extensible-exceptions mtl parsec split time transformers ]; + jailbreak = true; homepage = "https://github.com/tonicebrian/sgf"; description = "SGF (Smart Game Format) parser"; license = stdenv.lib.licenses.bsd3; @@ -97062,6 +97618,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base binary bytestring io-streams SHA ]; + jailbreak = true; homepage = "https://github.com/noteed/sha-streams"; description = "SHA hashes for io-streams"; license = stdenv.lib.licenses.bsd3; @@ -97171,7 +97728,6 @@ self: { js-flot js-jquery old-time process QuickCheck random time transformers unix unordered-containers utf8-string ]; - configureFlags = [ "-f-portable" ]; homepage = "http://www.shakebuild.com/"; description = "Build system library, like Make, but more accurate dependencies"; license = stdenv.lib.licenses.bsd3; @@ -97202,6 +97758,7 @@ self: { buildDepends = [ base bytestring cmdargs directory filepath shake ]; + jailbreak = true; homepage = "http://thoughtpolice.github.com/shake-extras"; description = "Extra utilities for shake build systems"; license = stdenv.lib.licenses.bsd3; @@ -97243,6 +97800,7 @@ self: { regex-posix template-haskell test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/bonnefoa/Shaker"; description = "simple and interactive command-line build tool"; license = stdenv.lib.licenses.bsd3; @@ -97268,9 +97826,6 @@ self: { exceptions ghc-prim hspec HUnit parsec process system-fileio system-filepath template-haskell text time transformers ]; - configureFlags = [ - "-f-test_roy" "-f-test_coffee" "-f-test_export" - ]; homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; @@ -97594,6 +98149,7 @@ self: { version = "0.2"; sha256 = "0ywb8bfkdpqqv2spb92j9rzx4fv5k1c7b65wj0zwnn9rp7ckq59v"; buildDepends = [ base curl ]; + jailbreak = true; homepage = "http://richardfergie.com/shoap"; description = "A very basic SOAP package"; license = stdenv.lib.licenses.bsd3; @@ -97618,6 +98174,7 @@ self: { version = "0.1.0.1"; sha256 = "1srqbc2kx1zn0xlzv94y7kqdrflmdck3jy6d2fl75zhf11wilxw3"; buildDepends = [ base text ]; + jailbreak = true; homepage = "https://github.com/Tarrasch/shorten-strings"; description = "Shorten a variety of string-like types adding ellipsis"; license = stdenv.lib.licenses.bsd3; @@ -97630,7 +98187,6 @@ self: { version = "0.6"; sha256 = "15bvfffnr034z8wbmhxa8h5qskbxwbflk434dx023l1qlm3sjmsg"; buildDepends = [ base syb ]; - configureFlags = [ "-fbase4" ]; description = "'Show' instances for Lambdabot"; license = "GPL"; }) {}; @@ -97656,6 +98212,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base glade gtk random ]; + jailbreak = true; description = "A simple gtk based Russian Roulette game"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -97721,7 +98278,6 @@ self: { array base Cabal containers directory filepath network network-uri process uhc-util uuagc uuagc-cabal uulib ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/UU-ComputerScience/shuffle"; description = "Shuffle tool for UHC"; license = stdenv.lib.licenses.bsd3; @@ -97753,7 +98309,7 @@ self: { base cairo containers directory fgl filepath glib gtk hxt mtl parsec process sifflet-lib unix ]; - configureFlags = [ "-f-no-link" ]; + jailbreak = true; homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "A simple, visual, functional programming language"; license = stdenv.lib.licenses.bsd3; @@ -97772,6 +98328,7 @@ self: { parsec process unix ]; extraLibraries = [ gdk_x11 gtk_x11 ]; + jailbreak = true; homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "Library of modules shared by sifflet and its tests and its exporters"; license = stdenv.lib.licenses.bsd3; @@ -97844,6 +98401,7 @@ self: { buildDepends = [ base containers haskell98 mersenne-random-pure64 mtl parsec random ]; + jailbreak = true; homepage = "http://simgi.sourceforge.net/"; description = "stochastic simulation engine"; license = "GPL"; @@ -97871,6 +98429,7 @@ self: { testDepends = [ base hspec HUnit monad-control mtl transformers wai ]; + jailbreak = true; homepage = "http://simple.cx"; description = "A minimalist web framework for the WAI server interface"; license = stdenv.lib.licenses.gpl3; @@ -97896,7 +98455,7 @@ self: { version = "0.2"; sha256 = "1kqkaay3r03plxvvyan3hdgj2rfynygnisi6hrsjwqgj4nw6va17"; buildDepends = [ base containers deepseq ]; - configureFlags = [ "-f-debug" ]; + jailbreak = true; homepage = "http://github.com/nominolo/simple-atom"; description = "Atom (or symbol) datatype for fast comparision and sorting"; license = stdenv.lib.licenses.bsd3; @@ -97952,6 +98511,7 @@ self: { monad-control mono-traversable mtl mwc-random primitive semigroups stm streaming-commons text transformers transformers-base vector ]; + jailbreak = true; homepage = "http://github.com/jwiegley/simple-conduit"; description = "A simple streaming I/O library based on monadic folds"; license = stdenv.lib.licenses.bsd3; @@ -97970,7 +98530,6 @@ self: { transformers ]; testDepends = [ base hspec ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/yunomu/simple-config"; description = "Simple config file parser generator"; license = stdenv.lib.licenses.bsd3; @@ -98043,6 +98602,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base deepseq parallel random ]; + jailbreak = true; homepage = "http://eax.me/haskell-genetic-algorithm/"; description = "Simple parallel genetic algorithm implementation"; license = stdenv.lib.licenses.bsd3; @@ -98059,6 +98619,7 @@ self: { buildDepends = [ base containers hashable safecopy unordered-containers ]; + jailbreak = true; description = "Allows simple indexation on any data type"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -98077,6 +98638,7 @@ self: { MonadCatchIO-transformers mtl old-locale SafeSemaphore text time transformers ]; + jailbreak = true; homepage = "http://github.com/mvoidex/simple-log"; description = "Simple log for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -98089,6 +98651,7 @@ self: { version = "0.2.0"; sha256 = "1619jsxgz5afmwhjcixg54i7dhh8jl29cmziifjrg60mm4rf2c34"; buildDepends = [ base hsyslog simple-log text ]; + jailbreak = true; homepage = "http://github.com/mvoidex/simple-log-syslog"; description = "Syslog backend for simple-log"; license = stdenv.lib.licenses.bsd3; @@ -98104,6 +98667,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers deepseq parallel random split ]; + jailbreak = true; homepage = "http://eax.me/haskell-neural-networks/"; description = "Simple parallel neural networks implementation"; license = stdenv.lib.licenses.bsd3; @@ -98150,6 +98714,7 @@ self: { base bytestring lifted-base monad-control monads-tf stm transformers-base ]; + jailbreak = true; homepage = "https://github.com/YoshikuniJujo/simple-pipe/wiki"; description = "simple pipeline library like conduit"; license = stdenv.lib.licenses.bsd3; @@ -98210,7 +98775,6 @@ self: { base bytestring conduit conduit-extra directory hspec HUnit network process resourcet unix ]; - configureFlags = [ "-fallow-bsd" ]; description = "Cross platform library for the sendfile system call"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -98286,7 +98850,6 @@ self: { testDepends = [ base HUnit mtl parsec pretty test-framework test-framework-hunit ]; - configureFlags = [ "-f-sqlindent" ]; homepage = "http://jakewheat.github.io/simple-sql-parser/"; description = "A parser for SQL queries"; license = stdenv.lib.licenses.bsd3; @@ -98316,6 +98879,7 @@ self: { version = "0.1.0.0"; sha256 = "0p7rd8y6rhwg0ap6cib7l32bglvfkvbzg938pdwpb2ss6cv8b9zs"; buildDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/BartMassey/simple-tabular"; description = "Simple tabular-text formatter"; license = stdenv.lib.licenses.mit; @@ -98347,6 +98911,7 @@ self: { version = "0.1.0.1"; sha256 = "1vzx88drwg40a9b7dzz4nbd5faawrc15wgyd1b12zmrsysn0h6s4"; buildDepends = [ base vector ]; + jailbreak = true; homepage = "http://github.com/dzhus/simple-vec3/"; description = "Three-dimensional vectors of doubles with basic operations"; license = stdenv.lib.licenses.bsd3; @@ -98423,6 +98988,7 @@ self: { buildDepends = [ base ghc-paths haskell-src-exts process uniplate ]; + jailbreak = true; description = "A simplified Haskell prelude for teaching"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -98512,6 +99078,7 @@ self: { x11-xim X11-xshape ]; pkgconfigDepends = [ libXft ]; + jailbreak = true; homepage = "http://sigkill.dk/programs/sindre"; description = "A programming language for simple GUIs"; license = stdenv.lib.licenses.bsd3; @@ -98541,6 +99108,7 @@ self: { version = "0.1.0.1"; sha256 = "04ny9450h2mlw1j0gn6a1vvgwsk3gbhhzshqv2sbcg5pwkzkdrzp"; buildDepends = [ base ]; + jailbreak = true; description = "An alternative to lazy I/O that doesn't conflate execution with evaluation"; license = stdenv.lib.licenses.mit; }) {}; @@ -98616,7 +99184,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ array base containers singletons ]; - configureFlags = [ "-f-all" ]; + jailbreak = true; homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools"; description = "Sized types in Haskell using the GHC Nat kind"; license = stdenv.lib.licenses.bsd3; @@ -98671,9 +99239,6 @@ self: { testDepends = [ base bytestring cereal crypto-api filepath hspec tagged ]; - configureFlags = [ - "-f-big-endian" "-f-force-endianness" "-f-reference" - ]; homepage = "https://github.com/meteficha/skein"; description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; license = stdenv.lib.licenses.bsd3; @@ -98690,6 +99255,7 @@ self: { buildDepends = [ base blaze-html bytestring containers http-types text wai ]; + jailbreak = true; homepage = "https://github.com/pharpend/skell"; description = "An overly complex Haskell web framework"; license = stdenv.lib.licenses.bsd3; @@ -98708,7 +99274,6 @@ self: { attoparsec base bytestring lifted-base monad-control mtl stm text time transformers-base word8 X11 ]; - configureFlags = [ "-f-carbon" "-f-x11" ]; homepage = "https://github.com/emonkak/haskell-skype"; description = "Skype Desktop API binding for Haskell"; license = stdenv.lib.licenses.mit; @@ -98729,6 +99294,7 @@ self: { attoparsec base bytestring containers directory filepath ghc-binary haskell98 IfElse old-locale regex-pcre time utf8-string ]; + jailbreak = true; homepage = "https://github.com/jdevelop/skypelogexport/wiki"; description = "Export Skype chat logs to text files"; license = stdenv.lib.licenses.bsd3; @@ -98747,6 +99313,7 @@ self: { aeson base containers either http-conduit mtl old-locale text time transformers ]; + jailbreak = true; description = "Haskell API for interacting with Slack"; license = stdenv.lib.licenses.mit; }) {}; @@ -98888,6 +99455,7 @@ self: { version = "0.2.2.4"; sha256 = "16fgxsg8grxhqx6d4s3mm89qbkw2k72qvr4r701ih1i8gmf1ms1z"; buildDepends = [ base bytestring deepseq hashable ]; + jailbreak = true; homepage = "http://community.haskell.org/~aslatter/code/bytearray"; description = "low-level unboxed arrays, with minimal features"; license = stdenv.lib.licenses.bsd3; @@ -98935,6 +99503,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base vector ]; + jailbreak = true; homepage = "http://github.com/noteed/smallpt-hs"; description = "A Haskell port of the smallpt path tracer"; license = stdenv.lib.licenses.bsd3; @@ -98951,6 +99520,7 @@ self: { buildDepends = [ base bytestring deepseq hashable smallarray text utf8-string ]; + jailbreak = true; homepage = "http://community.haskell.org/~aslatter/code/smallstring/"; description = "A Unicode text type, optimized for low memory overhead"; license = stdenv.lib.licenses.bsd3; @@ -98981,7 +99551,6 @@ self: { buildDepends = [ base containers generic-deriving ghc-prim mtl QuickCheck random ]; - configureFlags = [ "-f-regression-flag" ]; homepage = "https://github.com/leepike/SmartCheck"; description = "A smarter QuickCheck"; license = stdenv.lib.licenses.bsd3; @@ -99019,6 +99588,7 @@ self: { version = "0.0.2"; sha256 = "1phm50pabahrpxrzp25mfhpafzhp4hz8cxp6fp93rwh4cl7cckky"; buildDepends = [ array base directory polyparse ]; + jailbreak = true; homepage = "http://tomahawkins.org"; description = "Parsing and printing SMT-LIB"; license = stdenv.lib.licenses.bsd3; @@ -99049,7 +99619,6 @@ self: { constraints containers data-fix mtl process tagged text transformers ]; - configureFlags = [ "-f-withdatakinds" "-fwithconstraints" ]; description = "A type-safe interface to communicate with an SMT solver"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -99140,7 +99709,6 @@ self: { stm syb template-haskell text time transformers unordered-containers vector vector-algorithms xmlhtml ]; - configureFlags = [ "-f-old-base" ]; homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; @@ -99153,6 +99721,7 @@ self: { version = "0.1.0"; sha256 = "19sn7q9avb7y9j46fk7iga237qgcdm69sanb351c5s0lfgcpnf1m"; buildDepends = [ base http-media snap-core ]; + jailbreak = true; homepage = "http://github.com/zimothy/snap-accept"; description = "Accept header branching for the Snap web framework"; license = stdenv.lib.licenses.mit; @@ -99183,6 +99752,7 @@ self: { aeson aeson-pretty base bytestring clientsession cmdargs snap text unordered-containers utf8-string ]; + jailbreak = true; homepage = "https://github.com/dzhus/snap-auth-cli"; description = "Command-line tool to manage Snap AuthManager database"; license = stdenv.lib.licenses.bsd3; @@ -99207,6 +99777,7 @@ self: { version = "0.1.0.0"; sha256 = "05zi9rjd37xznjj8yhm5har12mfrclsrwd9fbcwh5ngccd7h7fiy"; buildDepends = [ base blaze-html clay snap-core ]; + jailbreak = true; homepage = "http://github.com/deckool/snap-blaze-clay"; description = "blaze-html-clay integration for Snap"; license = stdenv.lib.licenses.bsd3; @@ -99242,7 +99813,6 @@ self: { hashable HUnit MonadCatchIO-transformers mtl random regex-posix text time unix unix-compat unordered-containers vector zlib-enum ]; - configureFlags = [ "-f-debug" "-f-portable" ]; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework (core interfaces and types)"; license = stdenv.lib.licenses.bsd3; @@ -99261,7 +99831,6 @@ self: { attoparsec base bytestring case-insensitive hashable network network-uri snap text transformers unordered-containers ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/ocharles/snap-cors"; description = "Add CORS headers to Snap applications"; license = stdenv.lib.licenses.bsd3; @@ -99318,6 +99887,7 @@ self: { digestive-functors-snap directory-tree errors filepath heist jmacro mtl readable safe snap snap-core text transformers xmlhtml ]; + jailbreak = true; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -99393,9 +99963,7 @@ self: { enumerator HsOpenSSL MonadCatchIO-transformers mtl network old-locale snap-core text time unix unix-compat ]; - configureFlags = [ - "-fopenssl" "-f-debug" "-fopenssl" "-f-portable" - ]; + configureFlags = [ "-fopenssl" ]; homepage = "http://snapframework.com/"; description = "A fast, iteratee-based, epoll-enabled web server for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99420,6 +99988,7 @@ self: { hxt io-streams lens mtl process QuickCheck snap snap-core text transformers ]; + jailbreak = true; homepage = "https://github.com/dbp/snap-testing"; description = "A library for BDD-style testing with the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; @@ -99437,6 +100006,7 @@ self: { base bytestring heist http-types MonadCatchIO-transformers mtl snap snap-core text xmlhtml ]; + jailbreak = true; homepage = "https://github.com/LukeHoersten/snap-utils"; description = "Snap Framework utilities"; license = stdenv.lib.licenses.bsd3; @@ -99453,6 +100023,7 @@ self: { buildDepends = [ base bytestring heist mtl snap snap-core text web-routes xmlhtml ]; + jailbreak = true; homepage = "https://github.com/lukerandall/snap-web-routes"; description = "Type safe URLs for Snap"; license = stdenv.lib.licenses.bsd3; @@ -99465,6 +100036,7 @@ self: { version = "0.2.6.1"; sha256 = "0wlawnsxisslqzspa29swsdmncgx04z3rd1bhwx73mx5pksykw60"; buildDepends = [ acid-state base snap text ]; + jailbreak = true; homepage = "https://github.com/mightybyte/snaplet-acid-state"; description = "acid-state snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99489,6 +100061,7 @@ self: { restful-snap snap snap-extras snaplet-persistent text time transformers unordered-containers xmlhtml ]; + jailbreak = true; homepage = "https://github.com/soostone/snaplet-actionlog"; description = "Generic action log snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99506,6 +100079,7 @@ self: { amqp base bytestring configurator lens monad-control mtl network resource-pool snap transformers ]; + jailbreak = true; homepage = "https://github.com/ixmatus/snaplet-amqp"; description = "Snap framework snaplet for the AMQP library"; license = stdenv.lib.licenses.bsd3; @@ -99526,6 +100100,7 @@ self: { errors filepath hashable lens MonadCatchIO-transformers mtl safecopy snap snap-core text time unordered-containers vector ]; + jailbreak = true; description = "Provides an Acid-State backend for the Auth Snaplet"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -99576,6 +100151,7 @@ self: { base bson configurator mtl regex-tdfa snap snap-core text unordered-containers ]; + jailbreak = true; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -99608,6 +100184,7 @@ self: { buildDepends = [ base haxl MonadCatchIO-transformers snap transformers ]; + jailbreak = true; homepage = "https://github.com/ChristopherBiscardi/snaplet-haxl"; description = "Snaplet for Facebook's Haxl"; license = stdenv.lib.licenses.bsd3; @@ -99629,6 +100206,7 @@ self: { resource-pool-catchio snap text time transformers unordered-containers ]; + jailbreak = true; homepage = "http://norm2782.com/"; description = "HDBC snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99645,6 +100223,7 @@ self: { buildDepends = [ base configurator hslogger mtl snap transformers ]; + jailbreak = true; homepage = "https://github.com/ixmatus/snaplet-logger"; description = "Snap framework snaplet for the Logger API library"; license = stdenv.lib.licenses.bsd3; @@ -99664,6 +100243,7 @@ self: { base bytestring configurator filepath heist lens snap snap-loader-static text xmlhtml ]; + jailbreak = true; homepage = "https://github.com/HaskellCNOrg/snaplet-i18n"; description = "snaplet-i18n"; license = stdenv.lib.licenses.bsd3; @@ -99682,6 +100262,7 @@ self: { base bytestring configurator http-client influxdb lens monad-control mtl network snap text transformers ]; + jailbreak = true; homepage = "https://github.com/ixmatus/snaplet-influxdb"; description = "Snap framework snaplet for the InfluxDB library"; license = stdenv.lib.licenses.bsd3; @@ -99715,6 +100296,7 @@ self: { buildDepends = [ base configurator mandrill mtl network snap transformers ]; + jailbreak = true; homepage = "https://github.com/ixmatus/snaplet-mandrill"; description = "Snap framework snaplet for the Mandrill API library"; license = stdenv.lib.licenses.bsd3; @@ -99735,6 +100317,7 @@ self: { MonadCatchIO-transformers mongoDB mtl parsec regular safe snap snap-core template-haskell text time ]; + jailbreak = true; description = "Snap Framework MongoDB support as Snaplet"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -99747,6 +100330,7 @@ self: { version = "0.0.6.12"; sha256 = "0d0hnn0qp4zd453wzh1d3adls68gpv28dnkr7dcmjfl4f5igdran"; buildDepends = [ base lens mongoDB mtl snap text transformers ]; + jailbreak = true; homepage = "https://github.com/Palmik/snaplet-mongodb-minimalistic"; description = "Minimalistic MongoDB Snaplet"; license = stdenv.lib.licenses.bsd3; @@ -99767,6 +100351,7 @@ self: { MonadCatchIO-transformers mtl mysql mysql-simple resource-pool-catchio snap text transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99793,6 +100378,7 @@ self: { aeson base bytestring bytestring-show HUnit test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "https://github.com/HaskellCNOrg/snaplet-oauth"; description = "snaplet-oauth"; license = stdenv.lib.licenses.bsd3; @@ -99815,6 +100401,7 @@ self: { persistent-postgresql persistent-template readable resource-pool resourcet safe snap text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/soostone/snaplet-persistent"; description = "persistent snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99851,6 +100438,7 @@ self: { buildDepends = [ base configurator mtl postmark snap text transformers ]; + jailbreak = true; homepage = "https://github.com/LukeHoersten/snaplet-postmark"; description = "Postmark snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99885,6 +100473,7 @@ self: { buildDepends = [ base configurator hedis lens mtl network snap text transformers ]; + jailbreak = true; homepage = "https://github.com/dzhus/snaplet-redis/"; description = "Redis support for Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -99905,6 +100494,7 @@ self: { data-lens-template easy-file hedis mtl snap snap-core snaplet-redis text utf8-string websockets websockets-snap ]; + jailbreak = true; homepage = "https://github.com/dzhus/snaplet-redson/"; description = "CRUD for JSON data with Redis storage"; license = stdenv.lib.licenses.bsd3; @@ -99923,6 +100513,7 @@ self: { aeson base blaze-builder bytestring case-insensitive http-media lens mtl snap snap-accept snap-core text utf8-string xmlhtml ]; + jailbreak = true; homepage = "http://github.com/zimothy/snaplet-rest"; description = "REST resources for the Snap web framework"; license = stdenv.lib.licenses.mit; @@ -99941,6 +100532,7 @@ self: { aeson base containers data-lens data-lens-template mtl riak riak-protobuf snap snap-core time transformers ]; + jailbreak = true; homepage = "http://github.com/statusfailed/snaplet-riak"; description = "A Snaplet for the Riak database"; license = stdenv.lib.licenses.mit; @@ -99958,6 +100550,7 @@ self: { base bytestring configurator directory filepath mtl process snap snap-core transformers ]; + jailbreak = true; homepage = "https://github.com/lukerandall/snaplet-sass"; description = "Sass integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; @@ -99975,6 +100568,7 @@ self: { base bytestring containers monad-control mtl resource-pool sednaDBXML snap ]; + jailbreak = true; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = stdenv.lib.licenses.gpl3; }) {}; @@ -100036,6 +100630,7 @@ self: { base bytestring configurator heist lens-family-core mtl snap stripe text text-format transformers xmlhtml ]; + jailbreak = true; homepage = "https://github.com/LukeHoersten/snaplet-stripe"; description = "Stripe snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -100053,6 +100648,7 @@ self: { base bytestring containers curl data-hash haskell98 MissingH mtl network snap snap-core ]; + jailbreak = true; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -100070,6 +100666,7 @@ self: { base bytestring cereal clientsession containers hashtables mtl PSQueue random regex-posix snap snap-core time ]; + jailbreak = true; description = "Typed session snaplets and continuation-based programming for the Snap web framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -100131,7 +100728,7 @@ self: { listlike-instances MonadCatchIO-transformers transformers vector word24 ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.tiresiaspress.us/haskell/sndfile-enumerators"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; @@ -100243,6 +100840,7 @@ self: { buildDepends = [ base bytestring containers gl-capture GLUT OpenGL OpenGLRaw random ]; + jailbreak = true; description = "randomized fractal snowflakes demo"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -100267,6 +100865,7 @@ self: { base bytestring hspec HUnit text unordered-containers xml-conduit xml-conduit-writer ]; + jailbreak = true; homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "SOAP client tools"; license = stdenv.lib.licenses.mit; @@ -100284,6 +100883,7 @@ self: { base configurator data-default HsOpenSSL http-client http-client-openssl soap text ]; + jailbreak = true; homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "TLS-enabled SOAP transport (using openssl bindings)"; license = stdenv.lib.licenses.mit; @@ -100302,6 +100902,7 @@ self: { base configurator connection data-default http-client http-client-tls soap text tls x509 x509-store x509-validation ]; + jailbreak = true; homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "TLS-enabled SOAP transport (using tls package)"; license = stdenv.lib.licenses.mit; @@ -100388,6 +100989,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text transformers-base unordered-containers vector wai warp ]; + jailbreak = true; description = "Socket.IO server"; license = stdenv.lib.licenses.mit; }) {}; @@ -100422,6 +101024,7 @@ self: { version = "0.12.1"; sha256 = "01f49hwxc5h85iwzgnddxlh1lmb3s27zddmghxrlq958gcrr2iar"; buildDepends = [ base cairo gtk old-time stm ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "GUI functions as used in the book \"The Haskell School of Expression\""; license = stdenv.lib.licenses.lgpl21; @@ -100475,6 +101078,7 @@ self: { testDepends = [ base bindings-sophia bytestring directory tasty tasty-hunit ]; + jailbreak = true; description = "Bindings to Sophia library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -100502,6 +101106,7 @@ self: { version = "0.0.1"; sha256 = "0rzcxhzc4s4sbdnysmjh1i8pd39jyx7a4hbhkarsp2qbx29s4h03"; buildDepends = [ base ]; + jailbreak = true; description = "Efficient, type-safe sorted sequences"; license = stdenv.lib.licenses.mit; }) {}; @@ -100515,7 +101120,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring ]; - configureFlags = [ "-f-debug" ]; + jailbreak = true; description = "Sort lines per file size"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -100628,7 +101233,6 @@ self: { base containers explicit-exception extensible-exceptions process sample-frame transformers unix utility-ht ]; - configureFlags = [ "-f-executeshell" "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Sox"; description = "Play, write, read, convert audio signals using Sox"; license = "GPL"; @@ -100667,7 +101271,6 @@ self: { base bytestring cereal cmdargs containers pretty QuickCheck trifecta uniplate vector ]; - configureFlags = [ "-fsplit-base" ]; homepage = "https://github.com/amtal/0x10c"; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = stdenv.lib.licenses.mit; @@ -100693,6 +101296,7 @@ self: { version = "0.1.0.0"; sha256 = "118wch92ix54jp1hi4qw9mk46571lnak4df8ji83bs2vz3vax6jp"; buildDepends = [ base vector-space ]; + jailbreak = true; homepage = "http://code.haskell.org/data-spacepart"; description = "Space partition data structures. Currently only a QuadTree."; license = stdenv.lib.licenses.bsd3; @@ -100719,10 +101323,7 @@ self: { test-framework test-framework-quickcheck2 test-framework-th transformers vector ]; - configureFlags = [ - "-f-llvm" "-foptimize" "-ftest-hlint" "-ftest-doctests" - "-ftest-properties" - ]; + jailbreak = true; homepage = "http://github.com/ekmett/sparse"; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = stdenv.lib.licenses.bsd3; @@ -100840,6 +101441,7 @@ self: { version = "1.0.0.1"; sha256 = "0c68af104qxn9lhzshcy9s466q10n3ic7q4navqi53mmmmznivrd"; buildDepends = [ base mtl ]; + jailbreak = true; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -100900,6 +101502,7 @@ self: { base containers multiset-comb np-extras numeric-prelude template-haskell ]; + jailbreak = true; homepage = "http://www.cis.upenn.edu/~byorgey/species"; description = "Computational combinatorial species"; license = stdenv.lib.licenses.bsd3; @@ -100912,7 +101515,6 @@ self: { version = "1.5.0.1"; sha256 = "1kjshccmfnigb2dxq0czn3c1ckdflz6bl1q60h38qp3rc7250ml0"; buildDepends = [ base ghc-prim stm transformers ]; - configureFlags = [ "-foptimize" ]; homepage = "http://github.com/ekmett/speculation"; description = "A framework for safe, programmable, speculative parallelism"; license = stdenv.lib.licenses.bsd3; @@ -100943,7 +101545,6 @@ self: { buildDepends = [ base edit-distance parseargs phonetic-code sqlite ]; - configureFlags = [ "-fdebug" ]; homepage = "https://github.com/gregwebs/haskell-spell-suggest"; description = "Spelling suggestion tool with library and command-line interfaces"; license = stdenv.lib.licenses.bsd3; @@ -100960,6 +101561,7 @@ self: { buildDepends = [ base bytestring cereal containers mtl simple-bluetooth ]; + jailbreak = true; description = "Orbotix Sphero client library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -100976,7 +101578,6 @@ self: { base binary bytestring data-binary-ieee754 network text text-icu xml ]; - configureFlags = [ "-f-version-1-1-beta" ]; homepage = "https://github.com/gregwebs/haskell-sphinx-client"; description = "Haskell bindings to the Sphinx full-text searching daemon"; license = stdenv.lib.licenses.bsd3; @@ -101007,6 +101608,7 @@ self: { base bytestring containers data-default elerea GLFW JuicyPixels JuicyPixels-repa OpenGL ]; + jailbreak = true; homepage = "http://github.com/crockeo/spice"; description = "An FRP-based game engine written in Haskell"; license = stdenv.lib.licenses.mit; @@ -101028,6 +101630,7 @@ self: { process random rosezipper stm webkit ]; pkgconfigDepends = [ libsoup ]; + jailbreak = true; homepage = "http://github.com/Tener/spike"; description = "Experimental web browser"; license = stdenv.lib.licenses.bsd3; @@ -101070,7 +101673,6 @@ self: { version = "0.6.1.1"; sha256 = "0lsfkm4vfipzbnqpf3yli6fwrv5a5mwbs149dfzhs7spa9kbxyl1"; buildDepends = [ base network ]; - configureFlags = [ "-f-llvm" "-fportable" ]; homepage = "http://corsis.github.com/splice/"; description = "Cross-platform Socket to Socket Data Splicing"; license = stdenv.lib.licenses.bsd3; @@ -101176,7 +101778,6 @@ self: { base bytestring bytestring-lexing cairo colour containers HUnit mtl strptime template-haskell time vcs-revision ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Splot"; description = "A tool for visualizing the lifecycle of many concurrent multi-staged processes"; license = stdenv.lib.licenses.bsd3; @@ -101235,6 +101836,7 @@ self: { aeson base bytestring lens lens-aeson pipes text unordered-containers wreq ]; + jailbreak = true; homepage = "https://github.com/davnils/spoty"; description = "Spotify web API wrapper"; license = stdenv.lib.licenses.bsd3; @@ -101250,7 +101852,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base explicit-exception transformers utility-ht ]; - configureFlags = [ "-fsplitbase" "-f-buildexamples" ]; homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; description = "Read and write spreadsheets from and to CSV files in a lazy way"; license = stdenv.lib.licenses.bsd3; @@ -101263,6 +101864,7 @@ self: { version = "0.1.0.0"; sha256 = "1syv2l0z7c2s6bbi5103i4var40j8pavahiic813v8m9s6waa4fk"; buildDepends = [ base lens mtl vector ]; + jailbreak = true; homepage = "https://github.com/relrod/spritz"; description = "An implementation of the Spritz RC4-like stream cipher in Haskell"; license = stdenv.lib.licenses.bsd2; @@ -101281,7 +101883,6 @@ self: { base hmatrix HUnit QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/yanatan16/haskell-spsa"; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = stdenv.lib.licenses.mit; @@ -101308,7 +101909,6 @@ self: { process QuickCheck system-filepath test-framework test-framework-hunit test-framework-quickcheck2 time unix ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://bitbucket.org/ssaasen/spy"; description = "A compact file system watcher for Mac OS X, Linux and Windows"; license = stdenv.lib.licenses.bsd3; @@ -101326,6 +101926,7 @@ self: { base containers exceptions monad-control text transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/philopon/sql-simple"; description = "common middle-level sql client"; license = stdenv.lib.licenses.mit; @@ -101342,6 +101943,7 @@ self: { buildDepends = [ base data-default-class mysql mysql-simple sql-simple text ]; + jailbreak = true; homepage = "https://github.com/philopon/sql-simple"; description = "mysql backend for sql-simple"; license = stdenv.lib.licenses.mit; @@ -101359,6 +101961,7 @@ self: { base data-default-class monad-control resource-pool sql-simple text time ]; + jailbreak = true; homepage = "https://github.com/philopon/sql-simple"; description = "conection pool for sql-simple"; license = stdenv.lib.licenses.mit; @@ -101375,6 +101978,7 @@ self: { buildDepends = [ base data-default-class postgresql-simple sql-simple text ]; + jailbreak = true; homepage = "https://github.com/philopon/sql-simple"; description = "postgresql backend for sql-simple"; license = stdenv.lib.licenses.mit; @@ -101417,7 +102021,6 @@ self: { base bytestring directory pretty time utf8-string ]; extraLibraries = [ sqlite ]; - configureFlags = [ "-f-builtin-sqlite3" ]; description = "Haskell binding to sqlite3"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) sqlite;}; @@ -101485,7 +102088,6 @@ self: { base Cabal directory factory filepath mtl QuickCheck random toolshed unix ]; - configureFlags = [ "-fthreaded" "-f-llvm" ]; homepage = "http://functionalley.eu"; description = "A file-packing application"; license = "GPL"; @@ -101566,6 +102168,7 @@ self: { crypto-api crypto-pubkey-types cryptohash-cryptoapi HsOpenSSL network process random RSA SHA SimpleAES split transformers ]; + jailbreak = true; homepage = "http://hub.darcs.net/simon/ssh"; description = "A pure-Haskell SSH server library"; license = stdenv.lib.licenses.bsd3; @@ -101608,7 +102211,7 @@ self: { data-default http-conduit http-types mtl network-conduit text wai wai-extra warp ]; - configureFlags = [ "-f-no-cli" ]; + jailbreak = true; homepage = "http://github.com/erudify/sssp/"; description = "HTTP proxy for S3"; license = stdenv.lib.licenses.bsd3; @@ -101628,7 +102231,6 @@ self: { array base binary bytestring cmdargs containers deepseq directory iteratee ]; - configureFlags = [ "-f-tests" ]; description = "SSTables in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -101666,6 +102268,7 @@ self: { version = "0.2.4"; sha256 = "1mm3j63qaq12bdpn134j7jxzrikk9rawfd559xdkxkayq83z52i8"; buildDepends = [ base ghc-prim hashtables tagged ]; + jailbreak = true; description = "Memoization based on argument identity"; license = stdenv.lib.licenses.mit; }) {}; @@ -101689,6 +102292,7 @@ self: { base bytestring bytestring-arbitrary cereal containers mtl objectid QuickCheck tasty tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/tsuraan/stable-tree"; description = "Trees whose branches are resistant to change"; license = stdenv.lib.licenses.bsd3; @@ -101756,6 +102360,7 @@ self: { buildDepends = [ base Cabal containers directory filepath optparse-applicative ]; + jailbreak = true; homepage = "http://documentup.com/feuerbach/standalone-haddock"; description = "Generate standalone haddock documentation for a set of packages"; license = stdenv.lib.licenses.mit; @@ -101790,6 +102395,7 @@ self: { version = "0.3.0"; sha256 = "0i0f19k2b5y6vb0jngqwnf035csgiaqjgiw37wvj8vs2lbh907bp"; buildDepends = [ base binary bytestring failure transformers ]; + jailbreak = true; homepage = "http://community.haskell.org/~aslatter/starling"; description = "A memcached client"; license = stdenv.lib.licenses.bsd3; @@ -101821,6 +102427,7 @@ self: { version = "0.1"; sha256 = "0j5hbh0rkcwfigvskmgb0hql95qs0cjbys61c6sni2hc719bshx6"; buildDepends = [ arrows base mtl ]; + jailbreak = true; description = "Data.State"; license = "LGPL"; }) {}; @@ -101894,7 +102501,6 @@ self: { version = "0.3"; sha256 = "0hdpw6g255lj7jjvgqwhjdpzmka546vda5qjvry8gjj6nfm91lvx"; buildDepends = [ base mtl stm ]; - configureFlags = [ "-fusetmvar" "-fusestm" ]; homepage = "http://code.haskell.org/~mokus/stateref/"; description = "Abstraction for things that work like IORef"; license = stdenv.lib.licenses.publicDomain; @@ -101918,6 +102524,7 @@ self: { version = "0.1.1"; sha256 = "05clniwqk4i3zz22jzbjj2x9cgkxb2ks7mccjyp3gyy4zbm2xlmz"; buildDepends = [ applicative base transformers ]; + jailbreak = true; description = "The ST monad and STRefs"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -102016,6 +102623,7 @@ self: { buildDepends = [ base deepseq hmatrix-special nonlinear-optimization vector ]; + jailbreak = true; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102057,6 +102665,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base statistics text vector ]; + jailbreak = true; homepage = "http://github.com/cheecheeo/stats/"; description = "command line statistics"; license = stdenv.lib.licenses.gpl3; @@ -102073,6 +102682,7 @@ self: { buildDepends = [ base bytestring monad-control mtl network random ]; + jailbreak = true; homepage = "https://github.com/mitchellwrosen/statsd-haskell"; description = "StatsD API"; license = stdenv.lib.licenses.gpl3; @@ -102096,7 +102706,6 @@ self: { version = "0.2.1"; sha256 = "1mx6i5q56wy13fvpnypb2c6fk2z3i5xdfblkpazzc70p2dgxaf52"; buildDepends = [ base bitmap bytestring ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "A wrapper around Sean Barrett's JPEG/PNG decoder"; license = stdenv.lib.licenses.publicDomain; @@ -102109,7 +102718,6 @@ self: { version = "0.1.2"; sha256 = "1hbbi7hax5fw5zb7ashfs5paixqzqrrr64lwisda80dskdazld4m"; buildDepends = [ array base bytestring containers ]; - configureFlags = [ "-fbase4" "-fsplitbase" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "A wrapper around Sean Barrett's TrueType rasterizer library"; license = stdenv.lib.licenses.publicDomain; @@ -102122,6 +102730,7 @@ self: { version = "0.0.4"; sha256 = "0ijir2knl4vc1cpzzmf32wcjfdc958li1wd7w5vdmgk4bx45kybf"; buildDepends = [ base parsec syb template-haskell ]; + jailbreak = true; description = "Structure Data Library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102141,6 +102750,7 @@ self: { aeson base base64-bytestring binary bytestring containers data-binary-ieee754 split text time unix-time zlib ]; + jailbreak = true; homepage = "https://github.com/gitfoxi/Stdf"; description = "Parse Structured Test Data Format (STDF)"; license = stdenv.lib.licenses.gpl2; @@ -102207,6 +102817,7 @@ self: { version = "0.1.0.1"; sha256 = "18p0yxfw9wnzk0yxdvlm3g23k8zq5nb707411i92z5m82l6pkpmi"; buildDepends = [ base ]; + jailbreak = true; description = "get and set STICKYKEYS.SKF_HOTKEYACTIVE"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102302,6 +102913,7 @@ self: { mtl-prelude placeholders primitive QuickCheck transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; license = stdenv.lib.licenses.mit; @@ -102334,6 +102946,7 @@ self: { stm-conduit transformers wai warp ]; testDepends = [ base hspec HUnit stm ]; + jailbreak = true; description = "Conduits and STM operations for fire hoses"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102345,6 +102958,7 @@ self: { version = "1.0.0"; sha256 = "1wx68z1vq693bdcvv7d52pmk2s3pin0m382bc7j4i0s67m0ldcdn"; buildDepends = [ array base containers mtl stm ]; + jailbreak = true; description = "STM with IO hooks"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102427,6 +103041,7 @@ self: { version = "0.0"; sha256 = "11v2sq911byxvvmjbm7qkpdzma1mzzlch6rr529xsra0dv7myig2"; buildDepends = [ base stm ]; + jailbreak = true; description = "TMVars, TVars and TChans with distinguished input and output side"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102550,7 +103165,6 @@ self: { version = "0.2.2"; sha256 = "01kwwkpbfjrv26vj83cd92px5qbq1bpgxj0r45534aksqhany1xb"; buildDepends = [ base ]; - configureFlags = [ "-f-instanceinbase" ]; homepage = "https://github.com/cartazio/storable-complex"; description = "Storable instance for Complex"; license = stdenv.lib.licenses.bsd3; @@ -102563,7 +103177,6 @@ self: { version = "0.2.5"; sha256 = "04j1nk0wga4dqrqvhm8yd9h9194db1n3yrnhg8s3gsc0jk7yw1p2"; buildDepends = [ base byteorder ]; - configureFlags = [ "-fsplitbase" ]; description = "Storable instances with endianness"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102577,7 +103190,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base transformers utility-ht ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; homepage = "http://code.haskell.org/~thielema/storable-record/"; description = "Elegant definition of Storable instances for records"; license = stdenv.lib.licenses.bsd3; @@ -102590,6 +103202,7 @@ self: { version = "0.6.1.0"; sha256 = "0akdh6v2cdq38jw8v69bn3m50g6wxanh0plikq4hj5mfrkg6xsxm"; buildDepends = [ array base tagged vector ]; + jailbreak = true; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102601,7 +103214,6 @@ self: { version = "0.0.2"; sha256 = "03qls46rwc3za730r6pv63rrnjq4vkh3h2vjhx9082dqa9q7vqqd"; buildDepends = [ base storable-record utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://code.haskell.org/~thielema/storable-tuple/"; description = "Storable instance for pairs and triples"; license = stdenv.lib.licenses.bsd3; @@ -102619,7 +103231,7 @@ self: { base non-negative QuickCheck syb transformers unsafe utility-ht ]; testDepends = [ base bytestring QuickCheck random utility-ht ]; - configureFlags = [ "-fseparatesyb" "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Fast, packed, strict storable arrays with a list interface like ByteString"; license = stdenv.lib.licenses.bsd3; @@ -102651,7 +103263,7 @@ self: { base binary bytestring old-time storablevector stream-fusion utility-ht ]; - configureFlags = [ "-f-buildtests" "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = stdenv.lib.licenses.bsd3; @@ -102669,6 +103281,7 @@ self: { base base16-bytestring bytestring Crypto hashable MissingH text utf8-string ]; + jailbreak = true; homepage = "http://www.github.com/thinkpad20/str"; description = "A type class to abstract between many different string types"; license = stdenv.lib.licenses.mit; @@ -102695,7 +103308,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base logict ]; - configureFlags = [ "-f-benchmarks" ]; + jailbreak = true; homepage = "http://github.com/sebfisch/stream-monad"; description = "Simple, Fair and Terminating Backtracking Monad"; license = stdenv.lib.licenses.bsd3; @@ -102715,7 +103328,7 @@ self: { data-accessor-transformers event-list midi midi-alsa non-negative random transformers utility-ht ]; - configureFlags = [ "-f-buildexamples" "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Programmatically edit MIDI event streams via ALSA"; license = stdenv.lib.licenses.bsd3; @@ -102738,7 +103351,6 @@ self: { array async base blaze-builder bytestring deepseq hspec network QuickCheck text unix zlib ]; - configureFlags = [ "-f-use-bytestring-builder" ]; homepage = "https://github.com/fpco/streaming-commons"; description = "Common lower-level functions needed by various streaming data libraries"; license = stdenv.lib.licenses.mit; @@ -102779,7 +103391,6 @@ self: { version = "0.3.2"; sha256 = "08cjajqz9h47fkq98mlf3rc8n5ghbmnmgn8pfsl3bdldjdkmmlrc"; buildDepends = [ array base ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; description = "Strict data types and String IO"; license = stdenv.lib.licenses.bsd3; @@ -102858,7 +103469,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base directory filepath process unix ]; - configureFlags = [ "-fsmall-base" ]; description = "Find a local optimum of strictness annotations"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102870,6 +103480,7 @@ self: { version = "1.0.0.0"; sha256 = "1a3azrg9ksb4kmbckjqw3krxj0app6q19ighd6k3z7xpf682qx3c"; buildDepends = [ base deepseq ]; + jailbreak = true; homepage = "https://github.com/DanBurton/strictly#readme"; description = "Combinators for strictifying functions"; license = stdenv.lib.licenses.bsd3; @@ -102927,6 +103538,7 @@ self: { version = "2.0.0"; sha256 = "1wwx7j6qvb93yc0r2hdah1rgbi96r2mjhmibx72d4x7idhn0xsd9"; buildDepends = [ base bytestring text utf8-string ]; + jailbreak = true; homepage = "https://bitbucket.org/tdammers/string-convert"; description = "Provide universal string conversions between any two string-like types"; license = stdenv.lib.licenses.bsd3; @@ -103003,6 +103615,7 @@ self: { base bytestring QuickCheck quickcheck-instances test-framework test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "https://github.com/selectel/stringlike"; description = "Transformations to several string-like types"; license = stdenv.lib.licenses.mit; @@ -103044,7 +103657,6 @@ self: { version = "0.3.6.5"; sha256 = "1mjvb1qr4fkxv5qvq4jfswa3dcj3dwzvwx7dbp2wqw8zand41lsq"; buildDepends = [ array base bytestring containers ]; - configureFlags = [ "-f-base3" "-fbase4" ]; homepage = "https://bitbucket.org/dafis/stringsearch"; description = "Fast searching, splitting and replacing of ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -103057,7 +103669,6 @@ self: { version = "0.0.7"; sha256 = "1wp6w12bflrqcwi09y7s1crj72n4pbj8bkpwj2ia5gaqn5x56wjs"; buildDepends = [ base binary bytestring containers syb ]; - configureFlags = [ "-f-sybinbase" ]; homepage = "http://github.com/audreyt/stringtable-atom/"; description = "Memoize Strings as Atoms for fast comparison and sorting, with maps and sets"; license = stdenv.lib.licenses.bsd3; @@ -103075,6 +103686,7 @@ self: { aeson base bytestring http-conduit http-types mtl text time unordered-containers utf8-string ]; + jailbreak = true; homepage = "https://github.com/michaelschade/hs-stripe"; description = "A Haskell implementation of the Stripe API"; license = stdenv.lib.licenses.bsd3; @@ -103118,6 +103730,7 @@ self: { testDepends = [ aeson base bytestring data-default hlint markdown-unlit time ]; + jailbreak = true; homepage = "http://taylor.fausak.me/strive/"; description = "A Haskell client for the Strava V3 API"; license = stdenv.lib.licenses.mit; @@ -103130,7 +103743,6 @@ self: { version = "1.0.10"; sha256 = "1f42yf49fqr2fyjfakscmmlnmw3w5rg7wyy6gjyrf0gcgsh0h9fd"; buildDepends = [ base bytestring text time ]; - configureFlags = [ "-fsplit-base" ]; description = "Efficient parsing of LocalTime using a binding to C's strptime, with some extra features (i.e. fractional seconds)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -103149,7 +103761,6 @@ self: { base geniplate language-haskell-extract mtl pretty QuickCheck safe testing-feat ]; - configureFlags = [ "-f-werror" ]; homepage = "http://www.github.com/danr/structural-induction"; description = "Instantiate structural induction schemas for algebraic data types"; license = stdenv.lib.licenses.gpl3; @@ -103165,6 +103776,7 @@ self: { isExecutable = true; buildDepends = [ base haskell-src-exts ]; buildTools = [ emacs ]; + jailbreak = true; postInstall = '' emacs -L elisp --batch -f batch-byte-compile "elisp/"*.el install -d $out/share/emacs/site-lisp @@ -103189,6 +103801,7 @@ self: { monad-control mongoDB mtl old-time template-haskell transformers transformers-base ]; + jailbreak = true; description = "Structured MongoDB interface"; license = "GPL"; }) {}; @@ -103215,10 +103828,6 @@ self: { QuickCheck semigroups tasty tasty-quickcheck tasty-th unordered-containers ]; - configureFlags = [ - "-foptimized" "-f-llvm" "-fthreaded" "-ftest-hlint" - "-ftest-doctests" "-f-test-hunit" "-ftest-properties" - ]; homepage = "http://github.com/ekmett/structures"; description = "\"Advanced\" Data Structures"; license = stdenv.lib.licenses.bsd3; @@ -103262,7 +103871,6 @@ self: { base binary bullet bytestring containers directory elerea GLFW-b lambdacube-bullet lambdacube-engine mtl random vector ]; - configureFlags = [ "-f-portable" "-f-capture" ]; homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = stdenv.lib.licenses.bsd3; @@ -103300,6 +103908,7 @@ self: { version = "0.1.3"; sha256 = "09gacqlq3vlnsnbjjr44pjypw9v3amg8sqsxg0xwl8ricxpww774"; buildDepends = [ ansi-terminal base ]; + jailbreak = true; homepage = "http://patch-tag.com/r/lucid/Stylized"; description = "Ways to output stylized text on ANSI consoles"; license = "GPL"; @@ -103312,7 +103921,6 @@ self: { version = "0.5"; sha256 = "1kkr6zbnv777gnv2lwq3pyxq3vv5r24f4avwv5g4dds3y8d8mv3q"; buildDepends = [ attoparsec base containers text ]; - configureFlags = [ "-f-developer" ]; homepage = "https://patch-tag.com/r/rubenAst/subtitleParser/home"; description = "A parser for .srt and .sub files"; license = stdenv.lib.licenses.bsd3; @@ -103340,6 +103948,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base HUnit vector ]; + jailbreak = true; homepage = "https://github.com/VictorDenisov/suffixarray"; description = "n log n implementation of suffix array"; license = stdenv.lib.licenses.gpl2; @@ -103406,6 +104015,7 @@ self: { base bytestring Cabal directory old-locale process random time tuple ]; + jailbreak = true; homepage = "http://www.github.com/massysett/sunlight"; description = "Test Cabalized package against multiple dependency versions"; license = stdenv.lib.licenses.bsd3; @@ -103445,6 +104055,7 @@ self: { process QuickCheck random semigroups shake stm sunroof-compiler sunroof-server ]; + jailbreak = true; homepage = "https://github.com/ku-fpg/sunroof-examples"; description = "Tests for Sunroof"; license = stdenv.lib.licenses.bsd3; @@ -103467,6 +104078,7 @@ self: { transformers unordered-containers vector vector-space wai-middleware-static warp ]; + jailbreak = true; homepage = "https://github.com/ku-fpg/sunroof-server"; description = "Monadic Javascript Compiler - Server Utilities"; license = stdenv.lib.licenses.bsd3; @@ -103485,7 +104097,6 @@ self: { buildDepends = [ base hosc hsc3 opensoundcontrol-ht process random transformers ]; - configureFlags = [ "-f-buildexamples" "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell SuperCollider utilities"; license = "GPL"; @@ -103509,7 +104120,7 @@ self: { non-negative opensoundcontrol-ht random supercollider-ht transformers utility-ht ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; @@ -103543,6 +104154,7 @@ self: { base containers cpphs directory filepath haskell-src-exts mtl process time uniplate ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/supero/"; description = "A Supercompiler"; license = stdenv.lib.licenses.bsd3; @@ -103584,6 +104196,7 @@ self: { buildDepends = [ base haskell98 language-c pretty svgutils syb xml ]; + jailbreak = true; homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; @@ -103614,6 +104227,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base filepath xml ]; + jailbreak = true; homepage = "https://patch-tag.com/r/twistedsquare/svgutils/home"; description = "Helper functions for dealing with SVG files"; license = stdenv.lib.licenses.bsd3; @@ -103655,6 +104269,7 @@ self: { base binary bindings-svm bytestring containers deepseq directory monad-par mwc-random vector ]; + jailbreak = true; homepage = "http://github.com/aleator/Simple-SVM"; description = "Medium level, simplified, bindings to libsvm"; license = stdenv.lib.licenses.bsd3; @@ -103758,7 +104373,6 @@ self: { base containers hashable HUnit network-uri old-locale semigroups test-framework test-framework-hunit text time ]; - configureFlags = [ "-fnetwork-uri" "-f-w3ctests" "-f-developer" ]; homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home"; description = "A semantic web toolkit"; license = "LGPL"; @@ -103782,6 +104396,7 @@ self: { resourcet transformers wai wai-extra wai-middleware-static warp warp-tls x509 ]; + jailbreak = true; description = "A simple web server for serving directories, similar to weborf"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -103858,6 +104473,7 @@ self: { base parsec smallcheck test-framework test-framework-smallcheck void ]; + jailbreak = true; homepage = "https://github.com/lfairy/sylvia"; description = "Lambda calculus visualization"; license = "GPL"; @@ -103882,6 +104498,7 @@ self: { version = "0.2.0"; sha256 = "0186i6c3dyvs5pa4fh0b284wgpm10pgwax9prahirnq8whph94p2"; buildDepends = [ base diagrams-cairo diagrams-lib sym ]; + jailbreak = true; homepage = "http://github.com/akc/sym-plot"; description = "Plot permutations; an addition to the sym package"; license = stdenv.lib.licenses.bsd3; @@ -103935,6 +104552,7 @@ self: { testDepends = [ argparser base haskell-src-exts hpc hspec regexpr split Synt ]; + jailbreak = true; homepage = "http://github.com/brentlintner/synt"; description = "Similar code analysis"; license = "unknown"; @@ -104117,10 +104735,7 @@ self: { old-time process QuickCheck random sox storable-record storablevector transformers utility-ht ]; - configureFlags = [ - "-f-buildtests" "-f-buildprofilers" "-f-buildexamples" - "-foptimizeadvanced" "-fcategory" "-fsplitbase" - ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell"; license = "GPL"; @@ -104144,9 +104759,7 @@ self: { synthesizer-core synthesizer-dimensional synthesizer-midi transformers utility-ht ]; - configureFlags = [ - "-f-buildexamples" "-f-optimizeadvanced" "-fsplitbase" - ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Control synthesizer effects via ALSA/MIDI"; license = "GPL"; @@ -104174,7 +104787,6 @@ self: { base containers event-list non-empty non-negative numeric-prelude QuickCheck random storable-tuple storablevector utility-ht ]; - configureFlags = [ "-foptimizeadvanced" ]; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Low level part"; license = "GPL"; @@ -104196,7 +104808,6 @@ self: { storable-record storablevector synthesizer-core transformers utility-ht ]; - configureFlags = [ "-f-buildexamples" "-foptimizeadvanced" ]; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing with static physical dimensions"; license = "GPL"; @@ -104216,10 +104827,7 @@ self: { base event-list non-negative numeric-prelude random synthesizer-core transformers UniqueLogicNP utility-ht ]; - configureFlags = [ - "-f-buildexamples" "-f-buildtests" "-f-buildprofilers" - "-foptimizeadvanced" "-fcategory" "-fsplitbase" - ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing with dynamic physical dimensions"; license = "GPL"; @@ -104245,9 +104853,7 @@ self: { storable-tuple storablevector synthesizer-core synthesizer-midi tfp transformers unsafe utility-ht vault ]; - configureFlags = [ - "-fjack" "-falsa" "-f-buildtests" "-f-buildexamples" - ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Efficient signal processing using runtime compilation"; license = "GPL"; @@ -104272,9 +104878,6 @@ self: { storable-record storablevector synthesizer-core synthesizer-dimensional transformers utility-ht ]; - configureFlags = [ - "-f-buildtests" "-f-buildexamples" "-fsplitbase" - ]; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Render audio signals from MIDI files or realtime messages"; license = "GPL"; @@ -104331,7 +104934,6 @@ self: { sha256 = "11lfr6xm5xpvq4244pc7a0psy2m1krz0b1jd9pdw6kzn5ammi1b2"; buildDepends = [ base directory filepath process transformers ]; testDepends = [ base directory doctest filepath QuickCheck ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/system-command"; description = "A replacement for System.Exit and System.Process"; license = stdenv.lib.licenses.bsd3; @@ -104446,6 +105048,7 @@ self: { base extensible-effects HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/wowus/system-random-effect"; description = "Random number generation for extensible effects"; license = stdenv.lib.licenses.bsd3; @@ -104480,6 +105083,7 @@ self: { base directory easy-data either filepath hspec quickcheck-instances semigroups system-lifted template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/jcristovao/system-util"; description = "Various system utils lifted to EitherT"; license = stdenv.lib.licenses.bsd3; @@ -104501,7 +105105,6 @@ self: { template-haskell ]; extraLibraries = [ libossp_uuid ]; - configureFlags = [ "-f-cli" "-fsplit-base" ]; homepage = "http://github.com/solidsnack/system-uuid/"; description = "Bindings to system UUID functions"; license = stdenv.lib.licenses.bsd3; @@ -104527,7 +105130,6 @@ self: { version = "0.2.0.0"; sha256 = "1m5395937yyxsa1bmlfn1dxa1jr15yjhlz9s15bpwapshcd8119y"; buildDepends = [ base syb ]; - configureFlags = [ "-fbase4" ]; homepage = "http://www.cs.indiana.edu/~adamsmd/papers/scrap_your_zippers/"; description = "Scrap Your Zippers"; license = stdenv.lib.licenses.bsd3; @@ -104544,6 +105146,7 @@ self: { buildDepends = [ base containers ghc-prim mtl Takusen template-haskell time ]; + jailbreak = true; homepage = "not available"; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = stdenv.lib.licenses.bsd3; @@ -104597,7 +105200,6 @@ self: { base containers directory doctest filepath lens transformers unordered-containers ]; - configureFlags = [ "-f-transformers2" "-ftest-properties" ]; homepage = "http://github.com/ekmett/tables/"; description = "In-memory storage with multiple keys using lenses and traversals"; license = stdenv.lib.licenses.bsd3; @@ -104673,7 +105275,6 @@ self: { utf8-string X11 xdg-basedir xmonad xmonad-contrib ]; pkgconfigDepends = [ gtk ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/travitch/taffybar"; description = "A desktop bar similar to xmobar, but with more GUI"; license = stdenv.lib.licenses.bsd3; @@ -104721,7 +105322,6 @@ self: { base bytestring containers data-accessor explicit-exception transformers utility-ht xml-basic ]; - configureFlags = [ "-f-buildtests" "-f-buildexamples" ]; homepage = "http://code.haskell.org/~thielema/tagchup/"; description = "alternative package for processing of tag soups"; license = "GPL"; @@ -104761,7 +105361,6 @@ self: { version = "2.0.0.0"; sha256 = "02ny4yz9afaazw2pxpkpalffx8i5nhi3x9561blrd0pdrqq8qnib"; buildDepends = [ base exceptions mmorph transformers ]; - configureFlags = [ "-fbase-ge-4_2" "-f-pedantic" ]; homepage = "https://github.com/trskop/tagged-exception"; description = "Reflect exceptions using phantom types"; license = stdenv.lib.licenses.bsd3; @@ -104782,6 +105381,7 @@ self: { type-level-natural-number type-level-natural-number-induction type-level-natural-number-operations ]; + jailbreak = true; description = "Lists tagged with a type-level natural number representing their length"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -104793,6 +105393,7 @@ self: { version = "0.1"; sha256 = "1qqysn5zrkx2q3rv8ynf6nmy5rwdqk6niw0fphg5kyrg72h31s69"; buildDepends = [ base tagged template-haskell type-spine ]; + jailbreak = true; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -104892,7 +105493,7 @@ self: { base bytestring containers mtl text transformers ]; pkgconfigDepends = [ taglib_c ]; - configureFlags = [ "-fusepkgconfig" ]; + jailbreak = true; description = "An FFI layer over TagLib's C bindings"; license = stdenv.lib.licenses.bsd3; }) { taglib_c = null;}; @@ -104931,7 +105532,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring containers text ]; - configureFlags = [ "-f-download" "-f-testprog" ]; homepage = "http://community.haskell.org/~ndm/tagsoup/"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; @@ -104952,6 +105552,7 @@ self: { base bytestring containers data-accessor explicit-exception old-time tagsoup transformers utility-ht xml-basic ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/tagsoup-ht/"; description = "alternative parser for the tagsoup package"; license = "GPL"; @@ -105003,7 +105604,6 @@ self: { buildDepends = [ base mtl old-time QuickCheck random time ]; buildTools = [ sqlplus ]; extraLibraries = [ clntsh ]; - configureFlags = [ "-f-buildtests" ]; homepage = "https://github.com/paulrzcz/takusen-oracle.git"; description = "Database library with left-fold interface for Oracle"; license = stdenv.lib.licenses.bsd3; @@ -105033,9 +105633,7 @@ self: { tamarin-prover-theory tamarin-prover-utils text threads time transformers uniplate wai warp yesod-core yesod-json yesod-static ]; - configureFlags = [ - "-f-build-tests" "-ftest-coverage" "-fthreaded" "-f-no-gui" - ]; + jailbreak = true; homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; @@ -105055,6 +105653,7 @@ self: { directory dlist HUnit mtl parsec process safe split syb tamarin-prover-utils ]; + jailbreak = true; homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; @@ -105077,6 +105676,7 @@ self: { safe syb tamarin-prover-term tamarin-prover-utils time transformers uniplate ]; + jailbreak = true; homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; @@ -105095,6 +105695,7 @@ self: { base base64-bytestring binary blaze-builder bytestring containers deepseq dlist fclabels mtl parsec pretty SHA syb time transformers ]; + jailbreak = true; homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Utility library for the tamarin prover"; license = "GPL"; @@ -105107,6 +105708,7 @@ self: { version = "0.4.0"; sha256 = "16ca5c4w0qmar1nv4m91cwrjw38ql76lphxd25d063d5v77lwr8z"; buildDepends = [ base containers mtl safe text ]; + jailbreak = true; description = "An HTML templating system similar to Blaze, implemented as a monad transformer of sorts"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -105134,7 +105736,6 @@ self: { version = "0.3.0.0"; sha256 = "15f88b5qg4v1ah60y0jxkww9n6z7gvnkslx4inckh6m6c7yvj8k6"; buildDepends = [ base mtl ]; - configureFlags = [ "-f-use-undecidable-instances" ]; homepage = "https://github.com/DanBurton/tardis"; description = "Bidirectional state monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -105181,6 +105782,7 @@ self: { aeson attoparsec base bytestring containers csv-enumerator directory filepath old-locale random text time unix ]; + jailbreak = true; description = "A command line tool for keeping track of tasks you worked on"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -105339,6 +105941,7 @@ self: { stringbuilder system-filepath tasty tasty-quickcheck text transformers ]; + jailbreak = true; description = "automated integration of QuickCheck properties into tasty suites"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -105382,7 +105985,6 @@ self: { sha256 = "1q1fghmsjrdl6jkcnajmsvw4d893m6cyhzpai9vvrhxy9vdy0l1v"; buildDepends = [ base QuickCheck tagged tasty ]; testDepends = [ base pcre-light tasty tasty-hunit ]; - configureFlags = [ "-f-old-quickcheck" ]; homepage = "http://documentup.com/feuerbach/tasty"; description = "QuickCheck support for the Tasty test framework"; license = stdenv.lib.licenses.mit; @@ -105457,6 +106059,7 @@ self: { array base binary cautious-file containers directory filepath IfElse monad-loops mtl random safe-failure stm-io-hooks ]; + jailbreak = true; homepage = "http://darcs.monoid.at/tbox"; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; @@ -105541,7 +106144,6 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers ]; - configureFlags = [ "-fquickcheck26" ]; description = "Test framework wrapper"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -105587,6 +106189,7 @@ self: { base bifunctors containers errors mtl network split time transformers ]; + jailbreak = true; description = "IRC tellbot"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -105609,6 +106212,7 @@ self: { version = "0.1.1"; sha256 = "07b8j11v0247fwaf3mv72m7aaq3crbsyrxmxa352vn9h2g6l1jsd"; buildDepends = [ base data-default template-haskell ]; + jailbreak = true; homepage = "https://github.com/haskell-pkg-janitors/template-default"; description = "declaring Default instances just got even easier"; license = stdenv.lib.licenses.bsd3; @@ -105641,7 +106245,7 @@ self: { testDepends = [ base parsec QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ "-f-testing" ]; + jailbreak = true; description = "Haskell's Simple Markup Language"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -105677,6 +106281,7 @@ self: { aeson base blaze-builder bytestring containers HsOpenSSL HTTP http-streams io-streams mtl old-locale text time ]; + jailbreak = true; homepage = "https://github.com/ixmatus/hs-tempodb"; description = "A small Haskell wrapper around the TempoDB api"; license = stdenv.lib.licenses.bsd3; @@ -105818,7 +106423,7 @@ self: { uniplate utf8-string ]; buildTools = [ happy ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; description = "Interpreter for the FRP language Tempus"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -105849,6 +106454,7 @@ self: { union-find-array ]; testDepends = [ base containers HUnit QuickCheck ]; + jailbreak = true; homepage = "http://cl-informatik.uibk.ac.at/software/haskell-rewriting/"; description = "Term Rewriting Library"; license = stdenv.lib.licenses.mit; @@ -105866,7 +106472,6 @@ self: { testDepends = [ base base-unicode-symbols HUnit test-framework test-framework-hunit ]; - configureFlags = [ "-f-example" ]; homepage = "https://github.com/roelvandijk/terminal-progress-bar"; description = "A simple progress bar in the terminal"; license = stdenv.lib.licenses.bsd3; @@ -105890,6 +106495,7 @@ self: { version = "0.1"; sha256 = "1k32s5vzkxnsawj8vdscyfc96hk0s97zpj1mgw1hk93hwcrxn9wh"; buildDepends = [ base containers contravariant ]; + jailbreak = true; homepage = "http://www.github.com/batterseapower/termination-combinators"; description = "Termination combinators for forcing non-terminating algorithms to terminate"; license = stdenv.lib.licenses.bsd3; @@ -105932,6 +106538,7 @@ self: { sha256 = "0gciz8nvn7x1lclzihvwy8v1c53p6frb1q32ckpmsqw7xiasqlhb"; buildDepends = [ base haskell98 old-time ]; extraLibraries = [ terralib4c translib ]; + jailbreak = true; homepage = "http://lucc.ess.inpe.br/doku.php?id=terrahs"; description = "A Haskell GIS Programming Environment"; license = "GPL"; @@ -105947,7 +106554,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base containers mtl process syb transformers ]; - configureFlags = [ "-f-ircbot" ]; homepage = "http://mbays.freeshell.org/tersmu"; description = "A semantic parser for lojban"; license = stdenv.lib.licenses.gpl3; @@ -105967,7 +106573,6 @@ self: { ansi-terminal ansi-wl-pprint base containers hostname old-locale random regex-posix time xml ]; - configureFlags = [ "-f-tests" ]; homepage = "https://batterseapower.github.io/test-framework/"; description = "Framework for running and organising tests, with HUnit and QuickCheck support"; license = stdenv.lib.licenses.bsd3; @@ -105985,6 +106590,7 @@ self: { base doctest test-framework test-framework-hunit ]; testDepends = [ base test-framework ]; + jailbreak = true; description = "Test.Framework wrapper for DocTest"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -106013,7 +106619,6 @@ self: { version = "0.3.0.1"; sha256 = "1h0h55kf6ff25nbfx1mhliwyknc0glwv3zi78wpzllbjbs7gvyfk"; buildDepends = [ base extensible-exceptions HUnit test-framework ]; - configureFlags = [ "-f-base3" "-fbase4" ]; homepage = "https://batterseapower.github.io/test-framework/"; description = "HUnit support for the test-framework package"; license = stdenv.lib.licenses.bsd3; @@ -106041,7 +106646,7 @@ self: { buildDepends = [ base deepseq extensible-exceptions QuickCheck random test-framework ]; - configureFlags = [ "-f-base3" "-fbase4" ]; + jailbreak = true; homepage = "http://batterseapower.github.com/test-framework/"; description = "QuickCheck support for the test-framework package"; license = stdenv.lib.licenses.bsd3; @@ -106058,7 +106663,6 @@ self: { buildDepends = [ base extensible-exceptions QuickCheck random test-framework ]; - configureFlags = [ "-f-base3" "-fbase4" ]; homepage = "https://batterseapower.github.io/test-framework/"; description = "QuickCheck2 support for the test-framework package"; license = stdenv.lib.licenses.bsd3; @@ -106100,6 +106704,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-smallcheck ]; + jailbreak = true; description = "Functions for conveniently marking some of the tests in a suite as being skipped"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -106168,7 +106773,7 @@ self: { version = "0.3.0.0"; sha256 = "0fncybd3sxrbnrd4l1hri18rhfg9h0fm3k4305iwh4l65fbwg2n8"; buildDepends = [ base ]; - configureFlags = [ "-f-docheckwarns" ]; + jailbreak = true; description = "Just tests Hackage"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -106194,6 +106799,7 @@ self: { base containers directory hastache heredoc hspec mtl process QuickCheck regex-posix template-haskell text transformers unix ]; + jailbreak = true; homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "Sandbox for system tests"; license = stdenv.lib.licenses.bsd3; @@ -106235,6 +106841,7 @@ self: { sha256 = "0m8kb8ydj3s3agh45mzmn8icbik68fvh0fp2idkd1hs7km1qzaga"; buildDepends = [ base HUnit ]; testDepends = [ base hspec hspec-discover silently ]; + jailbreak = true; homepage = "https://github.com/sol/test-shouldbe#readme"; description = "Catchy combinators for HUnit"; license = stdenv.lib.licenses.mit; @@ -106263,6 +106870,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base ]; + jailbreak = true; description = "Small test package"; license = "unknown"; }) {}; @@ -106291,6 +106899,7 @@ self: { base Cabal directory filepath fsnotify hint mtl system-filepath time unix ]; + jailbreak = true; homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; @@ -106304,7 +106913,6 @@ self: { version = "2.1.3.0"; sha256 = "1rq5d64d7j3gpgbfxmfr4xmzizjy0ricw5ghrakv8gzvxmi2bn4p"; buildDepends = [ base containers HUnit mtl QuickCheck random ]; - configureFlags = [ "-fsplitbase" ]; homepage = "https://github.com/jgoerzen/testpack"; description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; license = "LGPL"; @@ -106368,7 +106976,6 @@ self: { base bytestring directory filepath process split temporary text utf8-string xml ]; - configureFlags = [ "-fnetwork-uri" "-f-executable" ]; homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; @@ -106392,7 +106999,6 @@ self: { QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-f-integer-simple" "-f-developer" ]; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; @@ -106422,7 +107028,6 @@ self: { array base double-conversion ghc-prim integer-gmp old-locale text time transformers ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/bos/text-format"; description = "Text formatting"; license = stdenv.lib.licenses.bsd3; @@ -106540,7 +107145,6 @@ self: { version = "0.1.0.2"; sha256 = "1ls41s45qwrmmac8k1gryvxbhhczqy2wanwanw48m7xnbv52p9fg"; buildDepends = [ base bytestring bytestring-handle text ]; - configureFlags = [ "-ftrustworthy" ]; homepage = "https://github.com/exbb2/text-locale-encoding"; description = "Encode and decode Text to/from ByteString using TextEncoding"; license = stdenv.lib.licenses.bsd3; @@ -106614,6 +107218,7 @@ self: { version = "0.4.0"; sha256 = "0g0iihfin5vjfk69r7jjw4vs3l1k3f0kkg3bbc4xqm274vd72bph"; buildDepends = [ base containers mtl vector ]; + jailbreak = true; homepage = "https://github.com/acfoltzer/text-register-machine"; description = "A Haskell implementation of the 1# Text Register Machine"; license = stdenv.lib.licenses.bsd3; @@ -106636,9 +107241,6 @@ self: { array base bytestring nats quickcheck-instances tasty tasty-hunit tasty-quickcheck text transformers transformers-compat void ]; - configureFlags = [ - "-f-transformers-four" "-frecent-text" "-finteger-gmp2" - ]; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; @@ -106666,7 +107268,7 @@ self: { tasty-quickcheck template-haskell text-show time transformers unix unordered-containers vector xhtml ]; - configureFlags = [ "-ftransformers-four" ]; + jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show-instances"; description = "Additional instances for text-show"; license = stdenv.lib.licenses.bsd3; @@ -106681,7 +107283,6 @@ self: { editedCabalFile = "d4ea8ff401a3ccbd8a6ce2918385bac4859150047ce9b7f752ff5575db71e9fd"; buildDepends = [ base bytestring text ]; testDepends = [ base bytestring deepseq hspec text ]; - configureFlags = [ "-ftext11" ]; homepage = "http://github.com/fpco/text-stream-decode"; description = "Streaming decoding functions for UTF encodings. (deprecated)"; license = stdenv.lib.licenses.mit; @@ -106789,7 +107390,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-build-test" ]; homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; description = "Type-level integers, booleans, lists using type families"; license = stdenv.lib.licenses.bsd3; @@ -106824,6 +107424,7 @@ self: { testDepends = [ base hslogger mtl network QuickCheck transformers ]; + jailbreak = true; homepage = "http://github.com/sheyll/tftp"; description = "A library for building tftp servers"; license = stdenv.lib.licenses.bsd3; @@ -106836,6 +107437,7 @@ self: { version = "0.2"; sha256 = "0lpc5z575y7cq03ww2knr5qdkfb36qnim5y1gkh552r9k3pfdjhf"; buildDepends = [ base bytestring ]; + jailbreak = true; description = "Reading and writing of tga image files"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -106908,7 +107510,6 @@ self: { version = "0.0.0.2"; sha256 = "15sqf2jjnqcssq8hp80fk0ysgwqykjjc31gvvmzg4sypskpjs8cl"; buildDepends = [ base syb template-haskell ]; - configureFlags = [ "-fbase4" ]; homepage = "https://github.com/mokus0/th-extras"; description = "A grab bag of functions for use with Template Haskell"; license = stdenv.lib.licenses.publicDomain; @@ -106944,6 +107545,7 @@ self: { QuickCheck QuickCheck-GenT quickcheck-instances template-haskell th-expand-syns ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/th-instance-reification"; description = "Fixed versions of instances reification functions"; license = stdenv.lib.licenses.mit; @@ -106979,6 +107581,7 @@ self: { version = "0.1.1"; sha256 = "0d8n0wnygdyi9qhkr7418f0227r3dcjwvmfhpw0kslryz0vqyf5b"; buildDepends = [ base containers mtl template-haskell ]; + jailbreak = true; description = "Automated kind inference in Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -107012,6 +107615,7 @@ self: { base bytestring containers directory doctest filepath QuickCheck template-haskell text vector ]; + jailbreak = true; homepage = "http://github.com/bennofs/th-lift-instances/"; description = "Lift instances for template-haskell for common data types"; license = stdenv.lib.licenses.bsd3; @@ -107091,6 +107695,7 @@ self: { testDepends = [ aeson base bytestring HTTP HUnit network old-locale text time unix ]; + jailbreak = true; homepage = "http://github.com/pjones/themoviedb"; description = "Haskell API bindings for http://themoviedb.org"; license = stdenv.lib.licenses.mit; @@ -107122,6 +107727,7 @@ self: { version = "0.0.0"; sha256 = "05z0jppjbw70rlyh2qis27xp8vdx9fgn7i22ckxb0m2y75gffq61"; buildDepends = [ base HTTP json utf8-string ]; + jailbreak = true; description = "A common library for TheoremQuest, a theorem proving game"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -107135,6 +107741,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base HTTP network theoremquest ]; + jailbreak = true; description = "A simple client for the TheoremQuest theorem proving game"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -107152,6 +107759,7 @@ self: { base bifunctors containers mtl profunctors semigroupoids semigroups transformers vector ]; + jailbreak = true; homepage = "https://github.com/isomorphism/these"; description = "An either-or-both data type, with corresponding hybrid error/writer monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -107226,6 +107834,7 @@ self: { base bifunctors containers contravariant mtl profunctors random template-haskell ]; + jailbreak = true; homepage = "https://github.com/Kinokkory/Thorn"; description = "Datatype Manipulation with Template Haskell"; license = stdenv.lib.licenses.bsd3; @@ -107310,6 +107919,7 @@ self: { array base binary cairo containers deepseq filepath ghc-events glib gtk mtl pango text time unix ]; + configureFlags = [ "--ghc-options=-rtsopts" ]; homepage = "http://www.haskell.org/haskellwiki/ThreadScope"; description = "A graphical tool for profiling parallel Haskell programs"; license = stdenv.lib.licenses.bsd3; @@ -107353,7 +107963,6 @@ self: { transformers unordered-containers utf8-string vault websockets websockets-snap ]; - configureFlags = [ "-f-rebug" "-fnetwork-uri" "-f-buildexamples" ]; homepage = "http://www.haskell.org/haskellwiki/Threepenny-gui"; description = "GUI framework that uses the web browser as a display"; license = stdenv.lib.licenses.bsd3; @@ -107373,7 +107982,6 @@ self: { network network-uri QuickCheck split text unordered-containers vector ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; @@ -107456,9 +108064,6 @@ self: { time vector-space ]; buildTools = [ cpphs ]; - configureFlags = [ - "-f-werror" "-f-show-internal" "-f-lens" "-f-hlint" "-fbug-for-bug" - ]; homepage = "https://github.com/liyang/thyme"; description = "A faster time library"; license = stdenv.lib.licenses.bsd3; @@ -107482,6 +108087,7 @@ self: { transformers utf8-string webkit xdg-basedir xmonad xmonad-contrib ]; pkgconfigDepends = [ gtk ]; + jailbreak = true; homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; @@ -107517,7 +108123,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/nicta/tickle"; description = "A port of @Data.Binary@"; license = stdenv.lib.licenses.bsd3; @@ -107561,6 +108166,7 @@ self: { version = "0.2"; sha256 = "1iksr5h6cyyl88z35fbaskriv4vhc1696d3i1i3c171c0vq0hwg4"; buildDepends = [ base containers mtl recursion-schemes ]; + jailbreak = true; homepage = "https://github.com/ppetr/tie-knot"; description = "\"Ties the knot\" on a given set of structures that reference each other by keys"; license = "LGPL"; @@ -107605,6 +108211,7 @@ self: { aeson base bytestring containers http-types lens mtl text wai wai-extra wreq ]; + jailbreak = true; description = "Nice API for a Slackbot"; license = stdenv.lib.licenses.mit; }) {}; @@ -107670,6 +108277,7 @@ self: { base deepseq QuickCheck test-framework test-framework-quickcheck2 unix ]; + jailbreak = true; homepage = "https://github.com/haskell/time"; description = "A time library"; license = stdenv.lib.licenses.bsd3; @@ -107694,6 +108302,7 @@ self: { version = "1.1.4"; sha256 = "1k9adm922l431gyk8figx5df1n2xk5awir2fpijnvvyphrwk5p3l"; buildDepends = [ base time ]; + jailbreak = true; homepage = "http://semantic.org/TimeLib/"; description = "Data instances for the time package"; license = stdenv.lib.licenses.bsd3; @@ -107739,6 +108348,7 @@ self: { blaze-textual bytestring convertible-text data-default failure QuickCheck tagged time ]; + jailbreak = true; homepage = "http://cielonegro.org/HTTPDateTime.html"; description = "Parse and format HTTP/1.1 Date and Time strings"; license = stdenv.lib.licenses.publicDomain; @@ -107751,6 +108361,7 @@ self: { version = "0.1.0.0"; sha256 = "0n05lw6zpcfr3lwy2qn7v0j3ym1la9x0mak8szaxc2nbkyc8drrb"; buildDepends = [ base base-io-access time ]; + jailbreak = true; description = "IO Access for time"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -107773,7 +108384,6 @@ self: { version = "0.1.0.1"; sha256 = "0q5d134cvcy7hlr473fanqqixqnqpqvz9ka2r45m59l6kzrws95c"; buildDepends = [ base old-locale time ]; - configureFlags = [ "-fold-locale" ]; homepage = "http://twitter.com/khibino/"; description = "Compatibility of TimeLocale between old-locale and time-1.5"; license = stdenv.lib.licenses.bsd3; @@ -107790,6 +108400,7 @@ self: { buildDepends = [ base intervals lens profunctors thyme vector-space ]; + jailbreak = true; homepage = "https://bitbucket.org/jfmueller/time-patterns"; description = "Patterns for reccurring events"; license = stdenv.lib.licenses.bsd3; @@ -107808,7 +108419,6 @@ self: { base data-ordlist HUnit mtl old-locale test-framework test-framework-hunit time ]; - configureFlags = [ "-f-test-suite" ]; homepage = "http://github.com/hellertime/time-recurrence"; description = "Generate recurring dates"; license = stdenv.lib.licenses.gpl3; @@ -107848,7 +108458,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base convertible parsec time ]; - configureFlags = [ "-f-build-test-suite" ]; + jailbreak = true; homepage = "http://cielonegro.org/W3CDateTime.html"; description = "Parse, format and convert W3C Date and Time"; license = stdenv.lib.licenses.publicDomain; @@ -107906,6 +108516,7 @@ self: { buildDepends = [ base ghc-prim lifted-base monad-control mtl transformers-base ]; + jailbreak = true; homepage = "http://github.com/alphaHeavy/timeout-control"; description = "Updatable timeouts as a Monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -107934,6 +108545,7 @@ self: { buildDepends = [ attoparsec base bytestring containers convertible mtl time ]; + jailbreak = true; description = "Attoparsec parsers for various Date/Time formats"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -107981,6 +108593,7 @@ self: { buildDepends = [ base lifted-base monad-control suspend transformers-base ]; + jailbreak = true; description = "Simple package that implements timers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108097,7 +108710,6 @@ self: { isExecutable = true; buildDepends = [ base mtl parsec pretty utf8-string vty ]; testDepends = [ HUnit test-framework test-framework-hunit ]; - configureFlags = [ "-f-test" ]; homepage = "http://patch-tag.com/r/nonowarn/tkhs/snapshot/current/content/pretty/README"; description = "Simple Presentation Utility"; license = stdenv.lib.licenses.bsd3; @@ -108126,7 +108738,7 @@ self: { vector wai wai-extra warp web-routes yesod yesod-core yesod-form yesod-static ]; - configureFlags = [ "-f-devel" "-fproduction" ]; + jailbreak = true; homepage = "https://github.com/maoe/tkyprof"; description = "A web-based visualizer for GHC Profiling Reports"; license = stdenv.lib.licenses.bsd3; @@ -108156,7 +108768,6 @@ self: { data-default-class hourglass mtl QuickCheck tasty tasty-quickcheck x509 x509-validation ]; - configureFlags = [ "-fcompat" ]; homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS/SSL protocol native implementation (Server and Client)"; license = stdenv.lib.licenses.bsd3; @@ -108197,7 +108808,7 @@ self: { base bytestring certificate cipher-aes cipher-rc4 crypto-pubkey crypto-random cryptohash mtl network pem time tls vector ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS extra default values and helpers"; license = stdenv.lib.licenses.bsd3; @@ -108230,6 +108841,7 @@ self: { buildDepends = [ aeson aeson-pretty base bytestring optparse-applicative text time ]; + jailbreak = true; description = "A journaling program for Linux"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108276,7 +108888,6 @@ self: { version = "0.2"; sha256 = "1h5aq3shagzgh1j8sbslvi2rrkqv1djm595d522ci8hpj6h8vxl9"; buildDepends = [ to-string-class ]; - configureFlags = [ "-f-text" "-f-doc" "-f-bytestring" ]; description = "Instances for the ToString class"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108297,7 +108908,6 @@ self: { directory dyre filepath Glob mtl parsec process regex-pcre syb time utf8-string ]; - configureFlags = [ "-f-with_curses" ]; homepage = "http://gitorious.org/todos"; description = "Easy-to-use TODOs manager"; license = stdenv.lib.licenses.bsd3; @@ -108334,6 +108944,7 @@ self: { buildDepends = [ base containers old-locale strict time transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/toilet/"; description = "Manage the toilet queue at the IMO"; license = "GPL"; @@ -108347,7 +108958,6 @@ self: { sha256 = "1l3axqdkrjf28pxhrvdvlpf9wi79czsfvhi33w4v2wbj0g00j9ii"; buildDepends = [ base ]; testDepends = [ base time ]; - configureFlags = [ "-fuse-cbits" ]; homepage = "https://github.com/hvr/token-bucket"; description = "Rate limiter using lazy bucket algorithm"; license = stdenv.lib.licenses.gpl3; @@ -108379,7 +108989,6 @@ self: { base bytestring containers criterion filepath gf haskell98 HUnit iconv progression QuickCheck ]; - configureFlags = [ "-f-test" "-f-benchmark" ]; license = "GPL"; }) {}; @@ -108391,7 +109000,6 @@ self: { sha256 = "1v6s39q8a6cnc0ggpspz9i0xw6aih4ixn9bhn4hwf9kwgcspardg"; buildDepends = [ base bytestring mtl ]; extraLibraries = [ tokyocabinet ]; - configureFlags = [ "-f-buildtest" ]; homepage = "http://tom-lpsd.github.com/tokyocabinet-haskell/"; description = "Haskell binding of Tokyo Cabinet"; license = stdenv.lib.licenses.bsd3; @@ -108418,6 +109026,7 @@ self: { version = "0.1.0.3"; sha256 = "0dk7s5fng3vybdqgqn9vqg7k6sjw4zgqld51i926lgqnixgpmw8z"; buildDepends = [ base OpenAL stm vector ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/tomato-rubato"; description = "Easy to use library for audio programming"; license = stdenv.lib.licenses.bsd3; @@ -108451,7 +109060,6 @@ self: { array base Cabal containers deepseq directory filepath QuickCheck random ]; - configureFlags = [ "-f-llvm" "-fhavedeepseq" ]; homepage = "http://functionalley.eu"; description = "Utilities used by other packages"; license = "GPL"; @@ -108470,7 +109078,6 @@ self: { buildDepends = [ ALUT array base filepath GLUT OpenAL OpenGL random ]; - configureFlags = [ "-f-ftgl" "-f-pdflaby" "-fsound" ]; homepage = "http://home.arcor.de/chr_bauer/topkata.html"; description = "OpenGL Arcade Game"; license = "GPL"; @@ -108567,10 +109174,6 @@ self: { prettyclass QuickCheck stm test-framework test-framework-hunit test-framework-quickcheck2 test-framework-th vector-space ]; - configureFlags = [ - "-f-time15" "-frandom1013" "-fexceptions06" "-f-buildmiscprograms" - "-f-buildsampleprograms" "-f-buildtoyfmf" "-f-forcechar8" - ]; description = "Assorted decision procedures for SAT, Max-SAT, PB, MIP, etc"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108621,6 +109224,7 @@ self: { version = "0.1"; sha256 = "1fiz1v9d4ck8na68cywha53vgbgdk6iqad1zv6pj3lq0pwvkx6aw"; buildDepends = [ base containers mtl ]; + jailbreak = true; description = "functions for logging the arguments and results of function calls"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108632,6 +109236,7 @@ self: { version = "0.1"; sha256 = "0c5nsq9x59rmdkyvcrr1v94kjya48nhl9pnsad6xdmh77msf33xy"; buildDepends = [ base ]; + jailbreak = true; description = "Easy lightweight tracing of function arguments and results for ad hoc debugging"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108643,7 +109248,6 @@ self: { version = "2014.11.15"; sha256 = "17yrlfn54il2xf8xnl1b06cwnmmyzkqxb0k7pqycrjmwsxzqkig2"; buildDepends = [ base containers mtl pretty ]; - configureFlags = [ "-fbase4" ]; description = "Simple evaluation trace"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108687,6 +109291,7 @@ self: { aeson attoparsec base bytestring cmdargs containers http-enumerator http-types regexpr text unordered-containers uri ]; + jailbreak = true; homepage = "https://github.com/mike-burns/trajectory"; description = "Tools and a library for working with Trajectory"; license = stdenv.lib.licenses.bsd3; @@ -108773,7 +109378,6 @@ self: { sha256 = "0bklr7piiipnh99jnqx262pdyb9hzk852d6hzk5sqppvz5ndcf4y"; editedCabalFile = "48e267c7ce3e0cbc1493d5d7dc3fd7301ae42d229857fd21240a3b915665545e"; buildDepends = [ base stm transformers ]; - configureFlags = [ "-forphaninstances" ]; homepage = "https://github.com/mvv/transformers-base"; description = "Lift computations from the bottom of a transformer stack"; license = stdenv.lib.licenses.bsd3; @@ -108786,7 +109390,7 @@ self: { version = "0.3.3.4"; sha256 = "1hab41ggyaxr4xn2szv8y9fg9np8zi8ifhimr33fspid1jz14xr5"; buildDepends = [ base transformers ]; - configureFlags = [ "-fthree" "-fthree" "-f-two" ]; + configureFlags = [ "-fthree" ]; homepage = "http://github.com/ekmett/transformers-compat/"; description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms."; license = stdenv.lib.licenses.bsd3; @@ -108799,6 +109403,7 @@ self: { version = "0.1"; sha256 = "0kvhl5s1js6i639hc6c4ib9jmgy4l1503ifs30a9ajrk97nagp6d"; buildDepends = [ base transformers ]; + jailbreak = true; homepage = "http://github.com/aristidb/transformers-compose"; description = "Arrow-like / category-like composition for transformers"; license = stdenv.lib.licenses.bsd3; @@ -108818,6 +109423,7 @@ self: { base data-easy directory either errors haskell-src-exts hlint hspec HUnit QuickCheck text transformers unix ]; + jailbreak = true; homepage = "https://github.com/jcristovao/transformers-convert"; description = "Sensible conversions between some of the monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -108841,6 +109447,7 @@ self: { version = "0.1.0.0"; sha256 = "0m1vvdfi661mmxm5rghsfnwcjd2r0r7ryc3jk0nwlzs0kaw5xi1s"; buildDepends = [ base transformers ]; + jailbreak = true; homepage = "https://github.com/JanBessai/transformers-runnable"; description = "A unified interface for the run operation of monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -108866,6 +109473,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base fingertree ]; + jailbreak = true; description = "Integer sets with a constant time translate operation"; license = stdenv.lib.licenses.mit; }) {}; @@ -108902,6 +109510,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base gtk process ]; + jailbreak = true; homepage = "http://projects.haskell.org/traypoweroff"; description = "Tray Icon application to PowerOff / Reboot computer"; license = stdenv.lib.licenses.bsd3; @@ -108941,7 +109550,7 @@ self: { buildDepends = [ base Cabal containers filepath ghc html parsec regex-posix ]; - configureFlags = [ "-f-testing" ]; + jailbreak = true; homepage = "http://rampa.sk/static/treemap-html.html"; description = "Generates HTML for Data.Tree as TreeMap"; license = stdenv.lib.licenses.bsd3; @@ -108961,7 +109570,7 @@ self: { base Cabal containers directory filepath ghc parsec regex-posix split treemap-html xml ]; - configureFlags = [ "-f-testing" ]; + jailbreak = true; homepage = "http://rampa.sk/static/treemap-html.html"; description = "Treemap related commands for producing foldable TreeMap HTML"; license = stdenv.lib.licenses.bsd3; @@ -109058,6 +109667,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bio bytestring simpleargs ]; + jailbreak = true; description = "Search for, annotate and trim poly-A tail"; license = "GPL"; }) {}; @@ -109168,6 +109778,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base gloss stm vector ]; + jailbreak = true; homepage = "https://github.com/davnils/tsp-viz"; description = "Real time TSP tour visualization"; license = stdenv.lib.licenses.bsd3; @@ -109186,7 +109797,7 @@ self: { buildDepends = [ base Decimal parsec pretty process random split time ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "http://www.github.com/massysett/tsparse"; description = "Parses U.S. federal Thrift Savings Plan PDF quarterly statements"; license = stdenv.lib.licenses.bsd3; @@ -109211,6 +109822,7 @@ self: { version = "0.0.2"; sha256 = "0q6g2wcjddb9r1l9fxpn2qcssw5gyfwsam15rc3q6xjqbwz7fm41"; buildDepends = [ base bytestring unix ]; + jailbreak = true; description = "Interface to TUN/TAP drivers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -109247,6 +109859,7 @@ self: { version = "2.0"; sha256 = "0bgwsxq8wrh76hhbwadv0rag4c7dx3644zrh2aflnsych0rncvd7"; buildDepends = [ base combinat ]; + jailbreak = true; description = "Enum instances for tuples where the digits increase with the same speed"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -109270,6 +109883,7 @@ self: { version = "0.1.0.2"; sha256 = "1qq1sla89410wr9pnkmj100izkraad1gr163815p3dvh7qi04c7w"; buildDepends = [ base lens template-haskell ]; + jailbreak = true; homepage = "http://github.com/jfischoff/tuple-lenses"; description = "Stock FieldN combos and generators"; license = stdenv.lib.licenses.bsd3; @@ -109305,6 +109919,7 @@ self: { version = "0.0.1"; sha256 = "0kcmcg1fxsslpzpg766r9hr8aysg0s5fyang2xc0aa77zi71qyi3"; buildDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/diegoeche/tupleinstances"; description = "Functor, Applicative and Monad for n-ary tuples"; license = stdenv.lib.licenses.bsd3; @@ -109356,6 +109971,7 @@ self: { version = "0.1.0.1"; sha256 = "1l5y94gac9s55wgn6w610pqb63c8l20vmlpsnmgbzw1f9vbnzgiw"; buildDepends = [ base containers lens stm transformers ]; + jailbreak = true; homepage = "http://github.com/jfischoff/tweak"; description = "A library for incremental computing"; license = stdenv.lib.licenses.bsd3; @@ -109383,6 +109999,7 @@ self: { buildDepends = [ base network text twentefp-number twentefp-websockets ]; + jailbreak = true; description = "Used as Lab Assignments Environment at Univeriteit Twente"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -109419,6 +110036,7 @@ self: { buildDepends = [ base twentefp-eventloop-graphics twentefp-number ]; + jailbreak = true; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -109448,6 +110066,7 @@ self: { case-insensitive concurrent-extra containers entropy io-streams mtl network random SHA text ]; + jailbreak = true; description = "A fork of the popular websockets package. It is used for the practical assignments of the University of Twente. A sensible and clean way to write WebSocket-capable servers in Haskell."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -109472,6 +110091,7 @@ self: { twitter-conduit ]; testDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/suzuki-shin/twhs"; description = "CLI twitter client"; license = stdenv.lib.licenses.mit; @@ -109493,7 +110113,7 @@ self: { hslogger MissingH mtl network old-locale parsec regex-posix text time unix utf8-string ]; - configureFlags = [ "-f-withbitly" ]; + jailbreak = true; homepage = "http://software.complete.org/twidge"; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; @@ -109525,6 +110145,7 @@ self: { bytestring cryptohash data-default datetime errors old-locale QuickCheck text time ]; + jailbreak = true; description = "Twilio API interaction"; license = stdenv.lib.licenses.mit; }) {}; @@ -109537,6 +110158,7 @@ self: { sha256 = "0ipc8i1hbsjdz6rp7ks25w0zbrcv4byp0791aw9rrdpyqzdir0zx"; buildDepends = [ base network xml ]; testDepends = [ base Cabal lens ]; + jailbreak = true; homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -109569,6 +110191,7 @@ self: { buildDepends = [ array base containers data-memocombinators MonadRandom parallel ]; + jailbreak = true; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; }) {}; @@ -109643,10 +110266,6 @@ self: { template-haskell text time transformers transformers-base twitter-types twitter-types-lens ]; - configureFlags = [ - "-f-run-integrated-test" "-f-build-samples" "-flens-aeson" - "-fnetwork-uri" - ]; homepage = "https://github.com/himura/twitter-conduit"; description = "Twitter API package with conduit interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; @@ -109666,6 +110285,7 @@ self: { containers enumerator http-enumerator http-types text tls-extra transformers ]; + jailbreak = true; homepage = "https://github.com/himura/twitter-enumerator"; description = "Twitter API package with enumerator interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; @@ -109686,6 +110306,7 @@ self: { testDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -109736,6 +110357,7 @@ self: { buildDepends = [ base bytestring cereal safecopy stm transformers ]; + jailbreak = true; homepage = "https://github.com/mcschroeder/tx"; description = "Persistent transactions on top of STM"; license = stdenv.lib.licenses.mit; @@ -109989,6 +110611,7 @@ self: { version = "1.0.0.1"; sha256 = "1mwnsz5rbqnwskzf4cyv05zxha86afqh68b5ppwvizrvwf4jav2r"; buildDepends = [ base transformers type-level-natural-number ]; + jailbreak = true; description = "High-level combinators for performing inductive operations"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -110000,6 +110623,7 @@ self: { version = "1.0"; sha256 = "0vql5q5zhbhmwv0wqqb0xi4ayqdsz149rymhs730c583pq0h9r3w"; buildDepends = [ base type-level-natural-number ]; + jailbreak = true; description = "Basic operations on type-level natural numbers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -110153,6 +110777,7 @@ self: { template-haskell text th-instance-reification time transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/type-structure"; description = "Type structure analysis"; license = stdenv.lib.licenses.mit; @@ -110207,6 +110832,7 @@ self: { sha256 = "1ps9rkysx7zbcqkz51ahayg2jivlihiqdlb27iq7bf9aa7383k6v"; buildDepends = [ base template-haskell transformers ]; testDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/bennofs/typeable-th"; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = stdenv.lib.licenses.bsd3; @@ -110224,7 +110850,6 @@ self: { aeson base bytestring haskell-src-meta parsec template-haskell text transformers ]; - configureFlags = [ "-f-debug-typed-queries" ]; homepage = "https://github.com/tolysz/typedquery"; description = "Parser for SQL augmented with types"; license = stdenv.lib.licenses.bsd3; @@ -110254,7 +110879,6 @@ self: { array base HUnit numeric-prelude QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-ftest" ]; homepage = "https://github.com/nushio3/typelevel-tensor"; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = stdenv.lib.licenses.bsd3; @@ -110269,7 +110893,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base process ]; - configureFlags = [ "-fsmall_base" ]; description = "Small script for inferring types"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -110368,7 +110991,6 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; - configureFlags = [ "-ftemplate-haskell" ]; preConfigure = "export TZDIR=${tzdata}/share/zoneinfo"; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; @@ -110408,6 +111030,7 @@ self: { array base BNFC-meta cmdargs containers mtl parsec pretty split transformers ]; + jailbreak = true; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; }) {}; @@ -110431,6 +111054,7 @@ self: { file-embed filepath HUnit pcre-light syb test-framework test-framework-hunit test-framework-quickcheck2 text yaml ]; + jailbreak = true; description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -110474,7 +111098,6 @@ self: { sha256 = "0v71qw494klyh3ar8qdp7wx7kn7629iy83xham9b7jpmvk2p76bv"; buildDepends = [ base bytestring ]; extraLibraries = [ icu ]; - configureFlags = [ "-f-bytestring_in_base" ]; description = "String encoding conversion with ICU"; license = stdenv.lib.licenses.bsd3; }) { inherit (pkgs) icu;}; @@ -110493,7 +111116,6 @@ self: { base binary bytestring cereal containers ghc-prim mtl network unix utf8-string ]; - configureFlags = [ "-f-executable" "-f-test" ]; homepage = "http://github.com/vincenthz/hs-udbus"; description = "Small DBus implementation"; license = stdenv.lib.licenses.bsd3; @@ -110508,7 +111130,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring udbus xml ]; - configureFlags = [ "-f-executable" ]; homepage = "http://github.com/vincenthz/hs-udbus"; description = "Model API for udbus introspection and definitions"; license = stdenv.lib.licenses.bsd3; @@ -110537,7 +111158,6 @@ self: { isExecutable = true; buildDepends = [ base bytestring posix-paths select unix ]; pkgconfigDepends = [ libudev ]; - configureFlags = [ "-f-examples" ]; homepage = "https://github.com/pxqr/udev"; description = "libudev bindings"; license = stdenv.lib.licenses.bsd3; @@ -110601,6 +111221,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring split ]; + jailbreak = true; description = "hex dumper for UTF-8 text"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -110618,6 +111239,7 @@ self: { buildDepends = [ async base bytestring bytestring-lexing cmdargs deepseq network ]; + jailbreak = true; homepage = "https://github.com/hvr/uhttpc"; description = "Minimal HTTP client library optimized for benchmarking"; license = stdenv.lib.licenses.gpl3; @@ -110682,7 +111304,7 @@ self: { testDepends = [ atomic-primops base containers ghc-prim primitive ]; - configureFlags = [ "-f-dev" "-f-compare-benchmarks" ]; + jailbreak = true; description = "Fast concurrent queues with a Chan-like API, and more"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -110694,6 +111316,7 @@ self: { version = "0.1.1.0"; sha256 = "1mns1qmxv1xmrrsbhr1ywami37gk416rwxi5p3ry6j88cbf4i4zg"; buildDepends = [ base io-streams unagi-chan ]; + jailbreak = true; description = "Unagi Chan IO-Streams"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -110707,7 +111330,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-test" ]; homepage = "http://haskell.org/haskellwiki/unamb"; description = "Unambiguous choice"; license = stdenv.lib.licenses.bsd3; @@ -110775,6 +111397,7 @@ self: { version = "0.4"; sha256 = "02j4i2dms15vb87ar3m99hvpxrjdakljyql708zs716k1jdm7614"; buildDepends = [ base unbounded-delays units units-defs ]; + jailbreak = true; homepage = "https://github.com/jcristovao/unbouded-delays-units"; description = "Thread delays and timeouts using proper time units"; license = stdenv.lib.licenses.bsd3; @@ -110812,6 +111435,7 @@ self: { version = "0.8.1"; sha256 = "0y3y8m271spkmzc3182v8j06kspkzv03yxiscaa1vvhm2sbqp2is"; buildDepends = [ base ghc-prim QuickCheck random transformers ]; + jailbreak = true; homepage = "https://github.com/sjoerdvisscher/unfoldable"; description = "Class of data structures that can be unfolded"; license = stdenv.lib.licenses.bsd3; @@ -110852,7 +111476,6 @@ self: { buildDepends = [ base containers mtl uni-events uni-htk uni-reactor uni-util ]; - configureFlags = [ "-f-debug" ]; homepage = "http://www.informatik.uni-bremen.de/uniform/wb/"; description = "Graphs"; license = "LGPL"; @@ -110870,7 +111493,6 @@ self: { base containers directory uni-events uni-posixutil uni-reactor uni-util ]; - configureFlags = [ "-f-debug" ]; homepage = "http://www.informatik.uni-bremen.de/htk/"; description = "Graphical User Interface for Haskell Programs"; license = "LGPL"; @@ -110932,7 +111554,6 @@ self: { array base bytestring containers directory ghc-prim mtl network old-time parsec ]; - configureFlags = [ "-f-parsec1" "-f-debug" "-fbase4" ]; homepage = "http://www.informatik.uni-bremen.de/uniform/wb/"; description = "Utilities for the uniform workbench"; license = "LGPL"; @@ -110948,7 +111569,6 @@ self: { isExecutable = true; buildDepends = [ base containers ]; testDepends = [ base containers utility-ht ]; - configureFlags = [ "-f-buildexamples" ]; homepage = "http://code.haskell.org/~thielema/unicode/"; description = "Construct and transform unicode characters"; license = stdenv.lib.licenses.bsd3; @@ -110973,7 +111593,6 @@ self: { sha256 = "1smfc7a62xi6y4sc0vai2l0nljxl9dr9l5zkqi17n14cq36ppfwb"; buildDepends = [ base bytestring compact-string ]; extraLibraries = [ icu ]; - configureFlags = [ "-fsplit-base" ]; homepage = "http://sloompie.reinier.de/unicode-normalization/"; description = "Unicode normalization using the ICU library"; license = stdenv.lib.licenses.bsd3; @@ -111008,6 +111627,7 @@ self: { version = "0.1.1.2"; sha256 = "0y1awqrf1x2in158linszma69zyz3zp14h3rmdx3vmbmif9fvbyv"; buildDepends = [ base containers ]; + jailbreak = true; description = "Unicode alternatives for common functions and operators"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -111022,6 +111642,7 @@ self: { isExecutable = true; buildDepends = [ attoparsec base directory text ]; testDepends = [ attoparsec base text ]; + jailbreak = true; homepage = "https://github.com/Zankoku-Okuno/unicoder"; description = "Make writing in unicode easy"; license = stdenv.lib.licenses.bsd3; @@ -111034,7 +111655,6 @@ self: { version = "0.9.0"; sha256 = "0fdnpcpcpjlxlwxpqlawwbgqhs1p9lrksy5ln5isyvr06hwqh7ki"; buildDepends = [ base containers logict mtl ]; - configureFlags = [ "-fsplitbase" "-fbase4" ]; homepage = "http://code.haskell.org/~wren/"; description = "Simple generic unification algorithms"; license = stdenv.lib.licenses.bsd3; @@ -111099,7 +111719,6 @@ self: { buildDepends = [ base containers hashable syb unordered-containers ]; - configureFlags = [ "-fseparate_syb" "-ftypeable_fingerprint" ]; homepage = "http://community.haskell.org/~ndm/uniplate/"; description = "Help writing simple, concise and fast generic operations"; license = stdenv.lib.licenses.bsd3; @@ -111117,6 +111736,7 @@ self: { testDepends = [ base non-empty QuickCheck transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/unique-logic/"; description = "Solve simple simultaneous equations"; license = stdenv.lib.licenses.bsd3; @@ -111136,6 +111756,7 @@ self: { testDepends = [ base non-empty QuickCheck transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/unique-logic-tf/"; description = "Solve simple simultaneous equations"; license = stdenv.lib.licenses.bsd3; @@ -111212,6 +111833,7 @@ self: { sha256 = "1ab27rwnp8ncfn5sm4llxjxx7fbp495sl1838g8z9hishr5dgddl"; buildDepends = [ base ]; testDepends = [ base ]; + jailbreak = true; homepage = "https://bitbucket.org/xnyhps/haskell-unittyped/"; description = "An extendable library for type-safe computations including units"; license = stdenv.lib.licenses.lgpl21; @@ -111281,6 +111903,7 @@ self: { buildDepends = [ adjunctions base comonad universe-instances-base void ]; + jailbreak = true; homepage = "https://github.com/dmwit/universe"; description = "Universe instances for types from select extra packages"; license = stdenv.lib.licenses.bsd3; @@ -111368,7 +111991,6 @@ self: { version = "0.4.1.4"; sha256 = "0jxk7j5pz2kgfpqr4hznndjg31pqj5xg2qfc5308fcn9xyg1myps"; buildDepends = [ base unix ]; - configureFlags = [ "-f-old-time" ]; homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; license = stdenv.lib.licenses.bsd3; @@ -111426,6 +112048,7 @@ self: { transformers unix ]; testDepends = [ base bytestring conduit hspec transformers unix ]; + jailbreak = true; homepage = "https://github.com/snoyberg/conduit"; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = stdenv.lib.licenses.mit; @@ -111512,7 +112135,6 @@ self: { base ChasingBottoms containers hashable HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - configureFlags = [ "-f-debug" ]; homepage = "https://github.com/tibbe/unordered-containers"; description = "Efficient hashing-based container types"; license = stdenv.lib.licenses.bsd3; @@ -111530,6 +112152,7 @@ self: { testDepends = [ base hashable hspec HUnit rematch unordered-containers ]; + jailbreak = true; homepage = "http://github.com/tcrayford/rematch"; description = "Rematch support for unordered containers"; license = stdenv.lib.licenses.mit; @@ -111595,7 +112218,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - configureFlags = [ "-f-examples" ]; homepage = "http://github.com/konn/unsafely"; description = "Flexible access control for unsafe operations and instances"; license = stdenv.lib.licenses.bsd3; @@ -111644,6 +112266,7 @@ self: { buildDepends = [ base directory filepath mtl parsec split transformers ]; + jailbreak = true; description = "Generates pathnames to up directories"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -111660,6 +112283,7 @@ self: { aeson attoparsec base bytestring cryptohash hex http-conduit http-types old-locale time ]; + jailbreak = true; description = "Haskell client for Uploadcare"; license = stdenv.lib.licenses.mit; }) {}; @@ -111694,6 +112318,7 @@ self: { network old-locale opml optparse-applicative parallel-io split tagsoup terminal-size text time xml ]; + jailbreak = true; homepage = "https://github.com/pxqr/ureader"; description = "Minimalistic CLI RSS reader"; license = stdenv.lib.licenses.bsd3; @@ -111714,6 +112339,7 @@ self: { base bytestring cake3 directory filepath language-javascript mime-types mtl optparse-applicative process syb text ]; + jailbreak = true; homepage = "http://github.com/grwlf/urembed"; description = "Ur/Web static content generator"; license = stdenv.lib.licenses.bsd3; @@ -111744,6 +112370,7 @@ self: { base bytestring conduit containers deepseq failure monad-control network system-fileio system-filepath text transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -111760,7 +112387,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring network-uri text utf8-string ]; - configureFlags = [ "-fnetwork-uri" "-f-tools" ]; description = "Unicode aware uri-encoding"; license = "unknown"; }) {}; @@ -111777,6 +112403,7 @@ self: { base bytestring containers enumerator failure network text transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -111796,6 +112423,7 @@ self: { network system-fileio system-filepath text transformers uri-enumerator ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "uri-enumerator backend for the file scheme (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -111810,7 +112438,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base containers utf8-string ]; - configureFlags = [ "-fnew-base" ]; description = "URI template library for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -111869,7 +112496,6 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base bytestring containers mtl network old-time ]; - configureFlags = [ "-fsmall_base" ]; homepage = "http://code.haskell.org/~dons/code/urlcheck"; description = "Parallel link checker"; license = stdenv.lib.licenses.bsd3; @@ -111909,7 +112535,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base mtl network split ]; - configureFlags = [ "-f-test" ]; homepage = "https://github.com/pheaver/urlencoded"; description = "Generate or process x-www-urlencoded data"; license = stdenv.lib.licenses.bsd3; @@ -111939,6 +112564,7 @@ self: { sha256 = "1wxgq445nzfly9773bjx3mr15l8ga4840d2q1zw50kk07fwxx6h7"; buildDepends = [ base parsec ]; testDepends = [ base hspec ]; + jailbreak = true; homepage = "https://github.com/pxqr/urn"; description = "Universal Resource Names"; license = stdenv.lib.licenses.bsd3; @@ -111957,6 +112583,7 @@ self: { buildDepends = [ base filepath mtl optparse-applicative parsec process syb ]; + jailbreak = true; homepage = "http://github.com/grwlf/urxml"; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = stdenv.lib.licenses.publicDomain; @@ -111990,6 +112617,7 @@ self: { base base-unicode-symbols bindings-libusb iteratee monad-control transformers usb ]; + jailbreak = true; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -112008,7 +112636,6 @@ self: { base base-unicode-symbols bytestring containers containers-unicode-symbols parsimony ]; - configureFlags = [ "-f-example" ]; homepage = "https://github.com/roelvandijk/usb-id-database"; description = "A database of USB identifiers"; license = stdenv.lib.licenses.bsd3; @@ -112026,6 +112653,7 @@ self: { base base-unicode-symbols bindings-libusb iteratee monad-control usb vector ]; + jailbreak = true; homepage = "https://github.com/basvandijk/usb-iteratee"; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; @@ -112043,6 +112671,7 @@ self: { base base-unicode-symbols bindings-libusb bytestring iteratee regions text transformers usb ]; + jailbreak = true; homepage = "https://github.com/basvandijk/usb-safe/"; description = "Type-safe communication with USB devices"; license = stdenv.lib.licenses.bsd3; @@ -112090,7 +112719,6 @@ self: { version = "0.3.8"; sha256 = "1h29dn0scsfkhmkg14ywq9178lw40ah1r36w249zfzqr02y7qxc0"; buildDepends = [ base bytestring ]; - configureFlags = [ "-f-bytestring-in-base" ]; homepage = "http://github.com/glguy/utf8-string/"; description = "Support for reading and writing UTF8 Strings"; license = stdenv.lib.licenses.bsd3; @@ -112225,7 +112853,6 @@ self: { array base containers directory filepath ghc-prim haskell-src-exts mtl uuagc-cabal uulib ]; - configureFlags = [ "-f-with-loag" "-f-bootstrap_external" ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; description = "Attribute Grammar System of Universiteit Utrecht"; license = stdenv.lib.licenses.bsd3; @@ -112367,7 +112994,7 @@ self: { sha256 = "1psbdsq20nr28cr9ni2mwzwkpz3p20n1xqp0m0m9qafz66d2vi08"; editedCabalFile = "e289ff93c365248deb93e6268b57be8a47d724a39702887979fd842c80577508"; buildDepends = [ base ghc-prim ]; - configureFlags = [ "-f-safe" ]; + jailbreak = true; homepage = "http://code.haskell.org/~dons/code/uvector"; description = "Fast unboxed arrays with a flexible interface"; license = stdenv.lib.licenses.bsd3; @@ -112434,6 +113061,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base GLUT v4l2 ]; + jailbreak = true; homepage = "https://gitorious.org/hsv4l2"; description = "video for linux two examples"; license = stdenv.lib.licenses.bsd3; @@ -112476,6 +113104,7 @@ self: { version = "2.1.0.1"; sha256 = "093ba6n30a6gyifnk3bd50rkx8qldjqq9vsk92pnq152ibs36b2m"; buildDepends = [ base filepath graphviz vacuum ]; + jailbreak = true; description = "A library for transforming vacuum graphs into GraphViz output"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -112494,7 +113123,6 @@ self: { base bitmap bitmap-opengl directory filepath GLUT network OpenGL pretty process stb-image vacuum ]; - configureFlags = [ "-fbase4" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = stdenv.lib.licenses.publicDomain; @@ -112507,6 +113135,7 @@ self: { version = "0.2.0.2"; sha256 = "0zpag42dr2763ddrwdy7744lqkd6207ljfw3bqm6db3a1128861z"; buildDepends = [ base containers hubigraph vacuum ]; + jailbreak = true; description = "Visualize Haskell data structures using vacuum and Ubigraph"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -112537,6 +113166,7 @@ self: { version = "0.1.0.1"; sha256 = "14gpkb6pbkvmny17g2gpq6i6kq7ahmcnkgrcrwm72vda12wxsl78"; buildDepends = [ base containers MonadRandom ]; + jailbreak = true; homepage = "https://i.joelt.io/symbols.html"; description = "Valid operator/module characters"; license = stdenv.lib.licenses.mit; @@ -112567,7 +113197,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/validation"; description = "A data-type like Either but with an accumulating Applicative"; license = stdenv.lib.licenses.bsd3; @@ -112590,6 +113219,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text transformers ]; + jailbreak = true; homepage = "https://github.com/mavenraven/validations"; description = "A nice way to define field validations in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -112620,6 +113250,7 @@ self: { base deepseq directory dlist fgl graphviz haskell-src-exts mtl optparse-applicative process uniplate ]; + jailbreak = true; homepage = "https://github.com/benzrf/vampire"; description = "Analyze and visualize expression trees"; license = stdenv.lib.licenses.gpl3; @@ -112637,9 +113268,6 @@ self: { testDepends = [ base QuickCheck test-framework test-framework-quickcheck2 ]; - configureFlags = [ - "-fghc-conc-sync" "-fstrict-modifyref" "-fsafe-st" - ]; homepage = "http://github.com/sonyandy/var"; description = "Mutable variables and tuples"; license = stdenv.lib.licenses.bsd3; @@ -112675,7 +113303,7 @@ self: { base complex-generic floatshow integer-gmp type-level-natural-number ]; - configureFlags = [ "-ffast" ]; + jailbreak = true; homepage = "https://gitorious.org/variable-precision"; description = "variable-precision floating point"; license = stdenv.lib.licenses.bsd3; @@ -112689,6 +113317,7 @@ self: { sha256 = "0garxmxm11qhp2wm7xib4nrlkfiqbyzf3glkdbqb582nip0sb1rp"; buildDepends = [ base mtl stm ]; testDepends = [ base hspec mtl QuickCheck stm ]; + jailbreak = true; homepage = "https://github.com/prophile/variables"; description = "Monads with variables, without deep magic"; license = stdenv.lib.licenses.mit; @@ -112702,7 +113331,6 @@ self: { version = "0.3.0.4"; sha256 = "0ah6qrg71krc87f4vjy4b4shdd0mgyil8fikb3j6fl4kfwlg67jn"; buildDepends = [ base containers hashable unordered-containers ]; - configureFlags = [ "-fuseghc" ]; homepage = "https://github.com/HeinrichApfelmus/vault"; description = "a persistent store for values of arbitrary types"; license = stdenv.lib.licenses.bsd3; @@ -112739,7 +113367,6 @@ self: { version = "0.0.2"; sha256 = "1lp1wf440n7kinmxz7la0gyfqfdlip6f0bn8pmwkxd1dqyrvg5cg"; buildDepends = [ base process ]; - configureFlags = [ "-fsplit-base" ]; description = "Facilities for accessing the version control revision of the current directory"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -112757,7 +113384,6 @@ self: { buildDepends = [ base directory filepath gtk3 mtl process text vcswrapper ]; - configureFlags = [ "-fgtk3" ]; homepage = "https://github.com/forste/haskellVCSGUI"; description = "GUI library for source code management systems"; license = "GPL"; @@ -112788,7 +113414,6 @@ self: { version = "0.4.7"; sha256 = "1049jh8rcxfnyckz5m5asdlyafqszlig96k387raldyfzbrf8f4d"; buildDepends = [ base random ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "A low-dimensional linear algebra library, tailored to computer graphics"; license = stdenv.lib.licenses.bsd3; @@ -112801,6 +113426,7 @@ self: { version = "0.1.0.4"; sha256 = "1kxsjsiqqpi7k0xz597z7r2fd45s38plgk6jplzxagg0i3bm0q4g"; buildDepends = [ base random ]; + jailbreak = true; homepage = "http://github.com/cpdurham/vect-floating"; description = "A low-dimensional linear algebra library, operating on the Floating typeclass"; license = stdenv.lib.licenses.bsd3; @@ -112826,7 +113452,6 @@ self: { version = "0.4.6.1"; sha256 = "1qp98j6bgldjcs71pd7iqc5sjf1ixb1jj0l267hw532j4yf81dig"; buildDepends = [ base OpenGL vect ]; - configureFlags = [ "-fopengl29" ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for the `vect' low-dimensional linear algebra library"; license = stdenv.lib.licenses.bsd3; @@ -112846,9 +113471,6 @@ self: { base QuickCheck random template-haskell test-framework test-framework-quickcheck2 transformers ]; - configureFlags = [ - "-f-internalchecks" "-f-unsafechecks" "-fboundschecks" - ]; homepage = "https://github.com/haskell/vector"; description = "Efficient Arrays"; license = stdenv.lib.licenses.bsd3; @@ -112866,10 +113488,6 @@ self: { isExecutable = true; buildDepends = [ base bytestring mtl mwc-random primitive vector ]; testDepends = [ base bytestring containers QuickCheck vector ]; - configureFlags = [ - "-fproperties" "-f-bench" "-f-internalchecks" "-f-unsafechecks" - "-fboundschecks" - ]; homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for vector arrays"; license = stdenv.lib.licenses.bsd3; @@ -112924,7 +113542,7 @@ self: { base bytestring criterion deepseq ghc-prim primitive vector ]; testDepends = [ base directory QuickCheck random ]; - configureFlags = [ "-f-benchmark" ]; + jailbreak = true; homepage = "https://github.com/basvandijk/vector-bytestring"; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = stdenv.lib.licenses.bsd3; @@ -112963,6 +113581,7 @@ self: { base conduit HUnit primitive QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; description = "Conduit utilities for vectors"; license = stdenv.lib.licenses.mit; }) {}; @@ -113029,6 +113648,7 @@ self: { version = "0.1.0.1"; sha256 = "13xk2iwdwrnmdm33z0fmj4sg3irih4ayl3q5pgz31qs9kcsbhi0s"; buildDepends = [ base collections-api template-haskell vector ]; + jailbreak = true; homepage = "http://github.com/kreuzschlitzschraubenzieher/vector-instances-collections"; description = "Instances of the Data.Collections classes for Data.Vector.*"; license = stdenv.lib.licenses.bsd3; @@ -113088,6 +113708,7 @@ self: { version = "0.1.0.1"; sha256 = "1s5hh7dlbw1ai3nqqcavrqgidddfj99mi0gmhf2x2zn6ag86xr8b"; buildDepends = [ base containers vector-space ]; + jailbreak = true; homepage = "https://github.com/conklech/vector-space-map"; description = "vector-space operations for finite maps using Data.Map"; license = stdenv.lib.licenses.mit; @@ -113128,6 +113749,7 @@ self: { version = "0.3.0.1"; sha256 = "19spzrk64j2rgyi15dvs8gfbx3nc79ybssaxkv8dn9df4fwksv91"; buildDepends = [ base primitive vector ]; + jailbreak = true; homepage = "http://github.com/geezusfreeek/vector-static"; description = "Statically checked sizes on Data.Vector"; license = stdenv.lib.licenses.bsd3; @@ -113163,6 +113785,7 @@ self: { version = "1.0.0.0"; sha256 = "0wai72bqb1vp4p7ml1yj2jdmkjglihai9vhmgj7ri6y2qgzkpwly"; buildDepends = [ base regex-pcre ]; + jailbreak = true; homepage = "https://github.com/VerbalExpressions/HaskellVerbalExpressions"; description = "Regular expressions made easy"; license = stdenv.lib.licenses.mit; @@ -113201,7 +113824,6 @@ self: { base byteable bytestring cereal cryptohash filepath mmap QuickCheck random test-framework test-framework-quickcheck2 text time ]; - configureFlags = [ "-f-executable" ]; homepage = "https://github.com/vincenthz/hs-vhd"; description = "Provides functions to inspect and manipulate virtual hard disk (VHD) files"; license = stdenv.lib.licenses.bsd3; @@ -113225,6 +113847,7 @@ self: { version = "1.0"; sha256 = "0kzwp58lki3jvx09n6w8rc97idhy947xqik72p2fqjyigkymv04h"; buildDepends = [ base mtl ]; + jailbreak = true; description = "Views allow you to run a State monad on part of a state"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -113265,7 +113888,7 @@ self: { time transformers unix unordered-containers vector warp yesod yesod-core yesod-platform ]; - configureFlags = [ "-f-no-client" "-f-no-server" ]; + jailbreak = true; homepage = "http://github.com/michaelxavier/vigilance"; description = "An extensible dead-man's switch system"; license = stdenv.lib.licenses.mit; @@ -113325,6 +113948,7 @@ self: { sha256 = "026h8lgz487d9xhfjscnfpykgv1ppk944hl8mb6z7y3c1vh4g63b"; buildDepends = [ base ghc-prim ]; testDepends = [ base doctest lens singletons ]; + jailbreak = true; description = "Extensible Records"; license = stdenv.lib.licenses.mit; }) {}; @@ -113362,7 +113986,7 @@ self: { aeson base bytestring template-haskell text vinyl ]; testDepends = [ base hlint ]; - configureFlags = [ "-f-documentation" ]; + jailbreak = true; description = "Provide json instances automagically to vinyl types"; license = stdenv.lib.licenses.mit; }) {}; @@ -113393,6 +114017,7 @@ self: { base bytestring Cabal directory file-embed filepath mtl process safe split ]; + jailbreak = true; homepage = "https://github.com/Paczesiowa/virthualenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; @@ -113435,6 +114060,7 @@ self: { ipprint isevaluated lazysmallcheck parallel pretty process strict-concurrency svgcairo value-supply ]; + jailbreak = true; homepage = "http://github.com/zsol/visual-graphrewrite/"; description = "Visualize the graph-rewrite steps of a Haskell program"; license = stdenv.lib.licenses.bsd3; @@ -113454,7 +114080,7 @@ self: { base containers directory filepath haskell-src-exts mtl pretty process regexpr split uniplate ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://github.com/djv/VisualProf"; description = "Create a visual profile of a program's source code"; license = stdenv.lib.licenses.bsd3; @@ -113498,7 +114124,6 @@ self: { version = "0.7"; sha256 = "0ivgr4minxb5v56v4kbd045iwqk1c2w89c830731l75mkg8qa6wq"; buildDepends = [ base ghc-prim hashable semigroups ]; - configureFlags = [ "-f-safe" ]; homepage = "http://github.com/ekmett/void"; description = "A Haskell 98 logically uninhabited data type"; license = stdenv.lib.licenses.bsd3; @@ -113523,6 +114148,7 @@ self: { version = "0.1.2"; sha256 = "09z6nbsj4rqzhksk75glrsrmcs21p8x0jmcpqs6rc9iizz79db8g"; buildDepends = [ base bytestring ]; + jailbreak = true; homepage = "https://github.com/cartazio/Vowpal-Utils"; description = "Vowpal Wabbit utilities"; license = stdenv.lib.licenses.bsd3; @@ -113614,6 +114240,7 @@ self: { mtl parallel parsec QuickCheck random string-qq terminfo text unix utf8-string vector vty ]; + jailbreak = true; homepage = "https://github.com/coreyoconnor/vty"; description = "Examples programs using the vty library"; license = stdenv.lib.licenses.bsd3; @@ -113628,6 +114255,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base vty ]; + jailbreak = true; description = "A lib for displaying a menu and getting a selection using VTY"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -113648,7 +114276,6 @@ self: { mtl old-locale QuickCheck random regex-base stm text time unix vector vty ]; - configureFlags = [ "-f-demos" "-f-no-tests" ]; homepage = "http://jtdaugherty.github.com/vty-ui/"; description = "An interactive terminal user interface library for Vty"; license = stdenv.lib.licenses.bsd3; @@ -113661,6 +114288,7 @@ self: { version = "0.1"; sha256 = "1c60bvhk1riilj7sl7x7nw4d9yg56f2k0ps1aivmjm0q4brhgnx7"; buildDepends = [ base regex-base regex-pcre vty vty-ui ]; + jailbreak = true; description = "Extra vty-ui functionality not included in the core library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -113739,7 +114367,6 @@ self: { base bytestring hspec http-date http-types mime-types network old-locale text time transformers unix-compat wai wai-extra zlib ]; - configureFlags = [ "-f-print" ]; homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "WAI application for static serving"; license = stdenv.lib.licenses.mit; @@ -113871,6 +114498,7 @@ self: { version = "0.1.0.1"; sha256 = "0a06yrakg9gwjjj4f9nr474j8i8xz642aj56m8vaq621i1kn7jaq"; buildDepends = [ base http-types mtl resourcet unix wai ]; + jailbreak = true; homepage = "https://bitbucket.org/dpwiz/wai-graceful"; description = "Graceful shutdown for WAI applications"; license = stdenv.lib.licenses.mit; @@ -113891,6 +114519,7 @@ self: { attoparsec base bytestring cmdargs directory hint http-types network old-time text time transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = stdenv.lib.licenses.mit; @@ -113932,6 +114561,7 @@ self: { version = "2.0.0.2"; sha256 = "0h7d78d641bjsnmxsnz4b7s9pw4x0y0xi8bld51y4nqnbjl8gvac"; buildDepends = [ base bytestring wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "Wai handler to SCGI (deprecated)"; license = stdenv.lib.licenses.mit; @@ -113949,6 +114579,7 @@ self: { base bytestring containers enumerator snap-core snap-server transformers wai ]; + jailbreak = true; homepage = "http://github.com/snoyberg/wai-handler-snap"; description = "Web Application Interface handler using snap-server. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -114001,6 +114632,7 @@ self: { cryptohash hspec http-types monad-loops mtl transformers wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/raptros/wai-hmac-auth"; description = "hmac authentication tools for WAI apps"; license = stdenv.lib.licenses.bsd3; @@ -114017,6 +114649,7 @@ self: { buildDepends = [ base bytestring conduit http-types text transformers wai wai-extra ]; + jailbreak = true; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -114073,6 +114706,7 @@ self: { base bytestring http-types HUnit test-framework test-framework-hunit wai wai-test ]; + jailbreak = true; homepage = "https://github.com/akaspin/wai-middleware-cache"; description = "Caching middleware for WAI"; license = stdenv.lib.licenses.bsd3; @@ -114092,6 +114726,7 @@ self: { conduit hedis hedis-pile http-types transformers wai wai-middleware-cache ]; + jailbreak = true; homepage = "https://github.com/akaspin/wai-middleware-cache-redis"; description = "Redis backend for wai-middleware-cache"; license = stdenv.lib.licenses.bsd3; @@ -114104,6 +114739,7 @@ self: { version = "0.3.6"; sha256 = "1vh5sad3zhdwxqbmivmy9hkbnq9vrv4k6k17rjk4f79lv2xcq56h"; buildDepends = [ base bytestring http-types lifted-base wai ]; + jailbreak = true; homepage = "https://github.com/akaspin/wai-middleware-catch"; description = "Wai error catching middleware"; license = stdenv.lib.licenses.bsd3; @@ -114122,6 +114758,7 @@ self: { base base64-bytestring bytestring cryptohash filepath http-date http-types unix-compat unordered-containers wai ]; + jailbreak = true; homepage = "https://github.com/ameingast/wai-middleware-etag"; description = "WAI ETag middleware for static files"; license = stdenv.lib.licenses.bsd3; @@ -114155,6 +114792,7 @@ self: { base bytestring http-types HUnit test-framework test-framework-hunit text wai wai-test ]; + jailbreak = true; homepage = "https://github.com/akaspin/wai-middleware-route"; description = "Wai dispatch middleware"; license = stdenv.lib.licenses.bsd3; @@ -114238,6 +114876,7 @@ self: { version = "1.0.0.1"; sha256 = "1827mk64vyivdc12z4h230c4b993i6g8wl4sl0364jda586z58p7"; buildDepends = [ base text wai ]; + jailbreak = true; homepage = "http://github.com/mdmarek/wai-router"; description = "Provides basic routing on URL paths for WAI"; license = stdenv.lib.licenses.mit; @@ -114255,6 +114894,7 @@ self: { aeson base blaze-builder bytestring http-types mtl template-haskell text wai yesod-routes ]; + jailbreak = true; homepage = "https://github.com/ajnsit/wai-routes"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; @@ -114392,6 +115032,7 @@ self: { version = "0.1.0.3"; sha256 = "0wfbmjdw8k63fs4425fpnq24xssl9yf16dpy6cwkz68dn0vs0dkd"; buildDepends = [ base bytestring containers http-types time wai ]; + jailbreak = true; description = "Wai middleware for request throttling"; license = stdenv.lib.licenses.mit; }) {}; @@ -114430,7 +115071,6 @@ self: { http-types network text transformers wai wai-app-static warp websockets ]; - configureFlags = [ "-fexample" ]; homepage = "http://github.com/yesodweb/wai"; description = "Provide a bridge betweeen WAI and the websockets package"; license = stdenv.lib.licenses.mit; @@ -114482,9 +115122,6 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat void wai ]; - configureFlags = [ - "-f-warp-debug" "-fallow-sendfilefd" "-f-network-bytestring" - ]; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; license = stdenv.lib.licenses.mit; @@ -114499,6 +115136,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base data-default dyre http-types wai warp ]; + jailbreak = true; homepage = "http://tanakh.jp"; description = "Dynamic configurable warp HTTP server"; license = stdenv.lib.licenses.bsd3; @@ -114518,6 +115156,7 @@ self: { base bytestring cmdargs containers directory mime-types text wai-app-static wai-extra warp ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "Static file server based on Warp and wai-app-static (deprecated)"; license = stdenv.lib.licenses.mit; @@ -114555,7 +115194,7 @@ self: { base bytestring certificate conduit crypto-random http-types network network-conduit pem tls tls-extra unix wai warp ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; description = "set group and user id before running server"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -114583,6 +115222,7 @@ self: { base basic-prelude containers hinotify system-fileio system-filepath ]; + jailbreak = true; description = "Opinionated filesystem watcher"; license = stdenv.lib.licenses.mit; }) {}; @@ -114636,6 +115276,7 @@ self: { base binary bytestring bytestring-lexing bytestring-show delimited-text ]; + jailbreak = true; homepage = "http://code.haskell.org/~StefanKersten/code/wavesurfer"; description = "Parse WaveSurfer files"; license = stdenv.lib.licenses.bsd3; @@ -114655,6 +115296,7 @@ self: { base binary bytestring containers filepath pretty-show riff split vector ]; + jailbreak = true; homepage = "http://bitbucket.org/robertmassaioli/wavy"; description = "Process WAVE files in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -114673,7 +115315,6 @@ self: { buildDepends = [ attoparsec base bytestring containers setlocale utf8-string ]; - configureFlags = [ "-f-cli" "-fsplit-base" ]; homepage = "http://github.com/solidsnack/wcwidth/"; description = "Native wcwidth"; license = stdenv.lib.licenses.bsd3; @@ -114690,6 +115331,7 @@ self: { buildDepends = [ aeson attoparsec base bytestring HTTP network utf8-string vector ]; + jailbreak = true; homepage = "https://github.com/cvb/hs-weather-api.git"; description = "Weather api implemented in haskell"; license = stdenv.lib.licenses.mit; @@ -114713,6 +115355,7 @@ self: { version = "0.1.0"; sha256 = "1havyvd6f0xagynxpar2jsmx5x1izwl7wgxia0wbwbzaj0fzn2k2"; buildDepends = [ base text ]; + jailbreak = true; description = "Simple functions for CSS"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -114730,7 +115373,7 @@ self: { buildDepends = [ base bytestring directory failure old-locale text time ]; - configureFlags = [ "-f-buildtests" ]; + jailbreak = true; homepage = "http://github.com/snoyberg/web-encodings/tree/master"; description = "Encapsulate multiple web encoding in a single package. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -114786,7 +115429,6 @@ self: { base blaze-builder blaze-html bytestring clay containers jmacro lens mtl Stream text vector wl-pprint-text ]; - configureFlags = [ "-f-testprogram" ]; homepage = "http://hub.darcs.net/ertes/web-page"; description = "Monoidally construct web pages"; license = stdenv.lib.licenses.bsd3; @@ -114883,7 +115525,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base path-pieces template-haskell text ]; - configureFlags = [ "-f-buildtests" ]; + jailbreak = true; homepage = "http://docs.yesodweb.com/web-routes-quasi/"; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -114927,6 +115569,7 @@ self: { version = "0.19.1"; sha256 = "0pm1v9wqlzi6cg92lajbwbnhsdm509371i8mvyvvj6qa5m58cdib"; buildDepends = [ base transformers web-routes ]; + jailbreak = true; description = "Extends web-routes with some transformers instances for RouteT"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -114964,7 +115607,6 @@ self: { transformers-base unordered-containers vector zip-archive ]; testDepends = [ base parallel text ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; @@ -115013,6 +115655,7 @@ self: { unordered-containers vector zip-archive ]; testDepends = [ base parallel text ]; + jailbreak = true; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -115031,6 +115674,7 @@ self: { buildDepends = [ base bytestring HSFFIG LEXER parsec pretty utf8-env utf8-string ]; + jailbreak = true; description = "Parser and Pretty Printer for the Web IDL Language"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -115051,7 +115695,7 @@ self: { base binary binary-strict bytestring containers filepath hopfli optparse-applicative text vector xmlgen zlib ]; - configureFlags = [ "-f-debug" ]; + jailbreak = true; homepage = "http://github.com/ananthakumaran/webify"; description = "webfont generator"; license = stdenv.lib.licenses.mit; @@ -115233,7 +115877,7 @@ self: { isExecutable = true; buildDepends = [ array base ]; buildTools = [ happy ]; - configureFlags = [ "-f-criterion" "-f-quickcheck" ]; + jailbreak = true; homepage = "http://sebfisch.github.com/haskell-regexp"; description = "Weighted Regular Expression Matcher"; license = stdenv.lib.licenses.bsd3; @@ -115264,6 +115908,7 @@ self: { aeson base blaze-builder bytestring conduit http-types lifted-base resourcet text transformers unordered-containers wai warp ]; + jailbreak = true; homepage = "https://github.com/mcschroeder/welshy"; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = stdenv.lib.licenses.mit; @@ -115276,6 +115921,7 @@ self: { version = "0.0.3.0"; sha256 = "1xxks0jxjwph7372jqnscm6z0b28zz3dvb49b2aw37jmnvwrfdcy"; buildDepends = [ base bson mongoDB mtl text Wheb ]; + jailbreak = true; homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "MongoDB plugin for Wheb"; license = stdenv.lib.licenses.bsd3; @@ -115288,6 +115934,7 @@ self: { version = "0.0.1.0"; sha256 = "025chjp41qbjr9m6c3pd9v510h4aac1rvbyrki3c7617sca8a45h"; buildDepends = [ base bytestring hedis mtl text Wheb ]; + jailbreak = true; homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Redis connection for Wheb"; license = stdenv.lib.licenses.bsd3; @@ -115300,6 +115947,7 @@ self: { version = "0.1.0.0"; sha256 = "1wykpp325336kk7a1vnnjffankcw0kaw3jcfin53cp8hsx4bwfdp"; buildDepends = [ base mtl StrappedTemplates text Wheb ]; + jailbreak = true; homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Strapped templates for Wheb"; license = stdenv.lib.licenses.bsd3; @@ -115330,6 +115978,7 @@ self: { buildDepends = [ base containers GLUT mtl OpenGL process random X11 ]; + jailbreak = true; homepage = "http://neugierig.org/software/darcs/whim/"; description = "A Haskell window manager"; license = stdenv.lib.licenses.bsd3; @@ -115342,6 +115991,7 @@ self: { version = "0.1.0.3"; sha256 = "0kbyv0q6z2d2plblafqcmwcfiyhdbijqnqg2w7qxr7dklka8245v"; buildDepends = [ base parsec template-haskell ]; + jailbreak = true; description = "Mustache templates with Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -115368,7 +116018,6 @@ self: { sha256 = "199fd710zicx7ijyvipc7p0d3yg18f6nppcln2wz38hl9kfv0iv0"; editedCabalFile = "c11f42da958683ffb7a2e958dcefe2ef1a3e732732010f44facfbb0fffd7571e"; buildDepends = [ base network network-uri split ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/relrod/whois-hs"; description = "WHOIS client library"; license = stdenv.lib.licenses.bsd3; @@ -115421,7 +116070,7 @@ self: { buildDepends = [ base Crypto dataenc mtl network parsec pretty split time urlencoded ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "http://patch-tag.com/repo/windowslive"; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = stdenv.lib.licenses.bsd3; @@ -115563,7 +116212,6 @@ self: { base bytestring containers nats semigroups terminfo text transformers wl-pprint-extras ]; - configureFlags = [ "-fcursed" ]; homepage = "http://github.com/ekmett/wl-pprint-terminfo/"; description = "A color pretty printer with terminfo support"; license = stdenv.lib.licenses.bsd3; @@ -115607,6 +116255,7 @@ self: { lifted-async mwc-random network QuickCheck quickcheck-instances safe system-fileio system-filepath text transformers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/wobsurv"; description = "A simple and highly performant HTTP file server"; license = stdenv.lib.licenses.mit; @@ -115621,6 +116270,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base binary bytestring filepath zlib ]; + jailbreak = true; description = "Web Open Font Format (WOFF) unpacker"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -115634,6 +116284,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base network split ]; + jailbreak = true; homepage = "http://tom.lokhorst.eu/wol"; description = "Send a Wake on LAN Magic Packet"; license = stdenv.lib.licenses.bsd3; @@ -115789,6 +116440,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base feed HTTP network parallel tagsoup ]; + jailbreak = true; description = "Subscribe to a wiki's RSS feed and archive external links"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -115821,7 +116473,7 @@ self: { hxt-filter polyparse tagchup tagsoup transformers utility-ht xml-basic ]; - configureFlags = [ "-f-buildexamples" ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/wraxml/"; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = "GPL"; @@ -115858,7 +116510,6 @@ self: { test-framework-hunit test-framework-quickcheck2 text transformers unix-compat uuid ]; - configureFlags = [ "-f-developer" "-f-httpbin" "-fdoctest" ]; homepage = "http://www.serpentine.com/wreq"; description = "An easy-to-use HTTP client library"; license = stdenv.lib.licenses.bsd3; @@ -115876,6 +116527,7 @@ self: { testDepends = [ assertions base bed-and-breakfast containers filepath lens ]; + jailbreak = true; description = "Colour space transformations and metrics"; license = stdenv.lib.licenses.mit; }) {}; @@ -115893,6 +116545,7 @@ self: { buildDepends = [ base bencode bytestring containers directory safe utf8-string ]; + jailbreak = true; description = "A small tool to list, add and remove webseeds from a torrent file"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -115978,6 +116631,7 @@ self: { buildDepends = [ base vector-space wumpus-basic wumpus-core wumpus-drawing ]; + jailbreak = true; homepage = "http://code.google.com/p/copperbox/"; description = "Microprints - \"greek-text\" pictures"; license = stdenv.lib.licenses.bsd3; @@ -116007,7 +116661,6 @@ self: { version = "0.91.0.0"; sha256 = "133cjc3vfqxyw71a5x99flzg23qa2k28p2zajw6vp0z7qhv8kfjy"; buildDepends = [ base stm wxcore ]; - configureFlags = [ "-fnewbase" "-fsplitbase" ]; homepage = "http://haskell.org/haskellwiki/WxHaskell"; description = "wxHaskell"; license = "unknown"; @@ -116036,7 +116689,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base old-time wx wxcore Yampa ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/WxFruit"; description = "An implementation of Fruit using wxHaskell"; license = stdenv.lib.licenses.bsd3; @@ -116072,7 +116725,6 @@ self: { wxc wxdirect ]; extraLibraries = [ libX11 mesa wxGTK ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://haskell.org/haskellwiki/WxHaskell"; description = "wxHaskell core"; license = "unknown"; @@ -116092,7 +116744,6 @@ self: { buildDepends = [ base containers directory filepath parsec process strict time ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://haskell.org/haskellwiki/WxHaskell"; description = "helper tool for building wxHaskell"; license = stdenv.lib.licenses.bsd3; @@ -116107,6 +116758,7 @@ self: { isLibrary = false; isExecutable = true; buildDepends = [ base wx wxcore ]; + jailbreak = true; homepage = "http://github.com/elbrujohalcon/wxhnotepad"; description = "An example of how to implement a basic notepad with wxHaskell"; license = stdenv.lib.licenses.bsd3; @@ -116161,6 +116813,7 @@ self: { base bytestring ConfigFile containers dgs directory filepath mtl parsec process sgf split ]; + jailbreak = true; homepage = "http://dmwit.com/wyvern"; description = "An autoresponder for Dragon Go Server"; license = stdenv.lib.licenses.bsd3; @@ -116178,6 +116831,7 @@ self: { array base bytestring containers monads-tf text transformers type-level ]; + jailbreak = true; homepage = "http://jwlato.webfactional.com/haskell/x-dsp"; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = stdenv.lib.licenses.gpl3; @@ -116247,7 +116901,6 @@ self: { asn1-encoding asn1-types base bytestring containers crypto-pubkey-types directory filepath mtl pem process x509 ]; - configureFlags = [ "-f-executable" "-f-test" ]; homepage = "http://github.com/vincenthz/hs-certificate"; description = "X.509 collection accessing and storing methods"; license = stdenv.lib.licenses.bsd3; @@ -116376,6 +117029,7 @@ self: { base filepath HUnit language-python test-framework test-framework-hunit xcb-types ]; + jailbreak = true; homepage = "http://github.com/tych0/xcffib"; description = "A cffi-based python binding for X"; license = stdenv.lib.licenses.mit; @@ -116429,6 +117083,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base cairo graphviz gtk mtl polyparse text ]; + jailbreak = true; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -116442,7 +117097,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base bytestring cereal mtl network ]; - configureFlags = [ "-f-executable" ]; description = "Xenstore client access"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -116458,7 +117112,6 @@ self: { buildDepends = [ base glib ]; buildTools = [ gtk2hs-buildtools ]; pkgconfigDepends = [ libxfconf-0 ]; - configureFlags = [ "-f-buildtests" ]; homepage = "http://patch-tag.com/r/obbele/xfconf/home"; description = "FFI bindings to xfconf"; license = stdenv.lib.licenses.gpl3; @@ -116488,7 +117141,7 @@ self: { buildDepends = [ base bytestring containers ghc-prim mtl parsec regex-base ]; - configureFlags = [ "-fbase4" ]; + jailbreak = true; homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; @@ -116581,7 +117234,7 @@ self: { transformers ]; testDepends = [ aeson base bytestring containers HTF text time ]; - configureFlags = [ "-f-minimal-demo" "-f-demos" ]; + jailbreak = true; homepage = "http://github.com/JanAhrens/xing-api-haskell"; description = "Wrapper for the XING API, v1"; license = stdenv.lib.licenses.bsd3; @@ -116687,6 +117340,7 @@ self: { base bytestring conduit containers data-default parsec text time transformers xlsx ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx-templater"; description = "Simple and incomplete Excel file templater"; license = stdenv.lib.licenses.mit; @@ -116715,7 +117369,6 @@ self: { buildDepends = [ base containers data-accessor explicit-exception utility-ht ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/XML-Basic"; description = "Basics for XML/HTML representation and processing"; license = stdenv.lib.licenses.bsd3; @@ -116733,6 +117386,7 @@ self: { base bytestring conduit containers text transformers uri-conduit xml-conduit ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Parse XML catalog files (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -116798,7 +117452,7 @@ self: { base bytestring containers enumerator hspec HUnit text transformers xml-types ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -116817,7 +117471,7 @@ self: { buildDepends = [ base containers enumerator xml-enumerator xml-types ]; - configureFlags = [ "-f-test" ]; + jailbreak = true; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -116907,6 +117561,7 @@ self: { version = "0.5"; sha256 = "17axppy0xzshmvw8y23hxcj2ixm2fqw3hqrjk90qmpkjcv4nk44r"; buildDepends = [ base mtl transformers transformers-compose xml ]; + jailbreak = true; homepage = "http://github.com/aristidb/xml-monad"; description = "Monadic extensions to the xml package"; license = stdenv.lib.licenses.bsd3; @@ -116982,6 +117637,7 @@ self: { peyotls random sasl simple-pipe stm tighttp transformers-base uuid x509 x509-store x509-validation xml-pipe xmpipe ]; + jailbreak = true; homepage = "https://github.com/YoshikuniJujo/xml-push/wiki"; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = stdenv.lib.licenses.bsd3; @@ -117003,6 +117659,7 @@ self: { hxt-curl hxt-expat hxt-tagsoup process regex-posix tagsoup text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/sinelaw/xml-to-json"; description = "Library and command line tool for converting XML files to json"; license = stdenv.lib.licenses.mit; @@ -117066,6 +117723,7 @@ self: { testDepends = [ aeson base bytestring hspec resourcet text transformers ]; + jailbreak = true; homepage = "http://github.com/yihuang/xml2json"; description = "translate xml to json"; license = stdenv.lib.licenses.bsd3; @@ -117084,6 +117742,7 @@ self: { buildDepends = [ array base bio bytestring containers directory xhtml ]; + jailbreak = true; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; }) {}; @@ -117190,12 +117849,7 @@ self: { unix utf8-string X11 X11-xft ]; extraLibraries = [ libXpm libXrandr wirelesstools ]; - configureFlags = [ - "-fall_extensions" "-f-with_threaded" "-f-with_xpm" "-f-with_dbus" - "-f-with_mpris" "-f-with_datezone" "-f-with_alsa" - "-fall_extensions" "-f-with_mpd" "-f-with_iwlib" "-f-with_inotify" - "-fwith_utf8" "-f-with_xft" - ]; + configureFlags = [ "-fall_extensions" ]; homepage = "http://xmobar.org"; description = "A Minimalistic Text Based Status Bar"; license = stdenv.lib.licenses.bsd3; @@ -117217,7 +117871,6 @@ self: { base containers directory extensible-exceptions filepath mtl process unix utf8-string X11 ]; - configureFlags = [ "-f-testing" "-fsmall_base" ]; postInstall = '' shopt -s globstar mkdir -p $out/share/man/man1 @@ -117242,7 +117895,7 @@ self: { base containers directory extensible-exceptions filepath mtl process unix X11 ]; - configureFlags = [ "-f-testing" "-fsmall_base" ]; + jailbreak = true; homepage = "http://xmonad.org"; description = "A tiling window manager"; license = stdenv.lib.licenses.bsd3; @@ -117261,7 +117914,6 @@ self: { base containers directory extensible-exceptions mtl old-locale old-time process random unix utf8-string X11 X11-xft xmonad ]; - configureFlags = [ "-f-testing" "-fuse_xft" "-fsmall_base" ]; homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; license = stdenv.lib.licenses.bsd3; @@ -117281,7 +117933,7 @@ self: { old-time process random unix utf8-string X11 X11-xft xmonad-bluetilebranch ]; - configureFlags = [ "-f-testing" "-fuse_xft" "-fsmall_base" ]; + jailbreak = true; homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; license = stdenv.lib.licenses.bsd3; @@ -117311,7 +117963,7 @@ self: { base containers directory hint mtl old-locale old-time process random unix X11 xmonad xmonad-contrib ]; - configureFlags = [ "-fsmall_base" ]; + jailbreak = true; homepage = "http://xmonad.org/"; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = stdenv.lib.licenses.bsd3; @@ -117331,10 +117983,7 @@ self: { random regex-posix split unix X11 xmonad xmonad-contrib ]; configureFlags = [ - "-f-with_hlist" "-fwith_split" "-fwith_parsec" "-f-testing" - "-fwith_template_haskell" "-fwith_regex_posix" "-f-with_hlist" - "-f-with_mpd" "-f-with_hint" "-fwith_split" "-fwith_parsec" - "-fsmall_base" + "-f-with_hlist" "-fwith_split" "-fwith_parsec" ]; homepage = "http://projects.haskell.org/xmonad-extras"; description = "Third party extensions for xmonad with wacky dependencies"; @@ -117420,6 +118069,7 @@ self: { base blaze-builder bytestring double-conversion strict xournal-types ]; + jailbreak = true; description = "text builder for xournal file format"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -117439,6 +118089,7 @@ self: { base bytestring cairo cmdargs directory filepath HStringTemplate mtl xournal-parser xournal-render xournal-types ]; + jailbreak = true; homepage = "http://ianwookim.org/hxournal"; description = "convert utility for xoj files"; license = stdenv.lib.licenses.bsd3; @@ -117476,7 +118127,7 @@ self: { base bytestring cairo containers fclabels mtl poppler strict TypeCompose xournal-types ]; - configureFlags = [ "-fpoppler" ]; + jailbreak = true; description = "Xournal file renderer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -117509,6 +118160,7 @@ self: { buildDepends = [ array base containers directory process random unix ]; + jailbreak = true; homepage = "http://malde.org/~ketil/"; description = "Cluster EST sequences"; license = "GPL"; @@ -117526,7 +118178,6 @@ self: { testDepends = [ base directory doctest filepath QuickCheck quickcheck-instances ]; - configureFlags = [ "-fsmall_base" ]; homepage = "https://github.com/tonymorris/xsd"; description = "XML Schema data structures"; license = stdenv.lib.licenses.bsd3; @@ -117539,7 +118190,6 @@ self: { version = "0.0.0"; sha256 = "0xljcmc8rsvkpchrdam3lpp4igq1gmym9v3drp15a9k8rfa8irmi"; buildDepends = [ base HUnit QuickCheck uniplate vector ]; - configureFlags = [ "-fsplit-base" ]; description = "cryptanalysis of Blizzard's broken SHA-1 implementation"; license = stdenv.lib.licenses.mit; }) {}; @@ -117572,7 +118222,6 @@ self: { attoparsec base containers css-text hspec HUnit network-uri tagsoup text utf8-string ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://github.com/yesodweb/haskell-xss-sanitize"; description = "sanitize untrusted HTML to prevent XSS attacks"; license = stdenv.lib.licenses.bsd3; @@ -117628,6 +118277,7 @@ self: { editedCabalFile = "1d641797e9e431c6152dc41cbe72551bb2f91cec8265d3a5e3b2b9718764d274"; buildDepends = [ base bytestring crypto-api tagged ]; testDepends = [ base bytestring hspec QuickCheck ]; + jailbreak = true; description = "A Haskell implementation of the xxHash algorithm"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -117664,7 +118314,6 @@ self: { transformers unordered-containers vector wai warp yaml yesod-core yesod-form zlib ]; - configureFlags = [ "-fupload" ]; homepage = "http://github.com/snoyberg/yackage"; description = "Personal Hackage replacement for testing new packages"; license = stdenv.lib.licenses.bsd3; @@ -117681,6 +118330,7 @@ self: { buildDepends = [ attoparsec base cassava conduit lens mtl text vector wreq ]; + jailbreak = true; description = "Streaming aproach to the yahoo finance api"; license = stdenv.lib.licenses.mit; }) {}; @@ -117722,6 +118372,7 @@ self: { buildDepends = [ base bytestring enumerator json-types text transformers yajl ]; + jailbreak = true; homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; @@ -117772,9 +118423,6 @@ self: { hspec-expectations HUnit resourcet text transformers unordered-containers vector ]; - configureFlags = [ - "-f-no-unicode" "-f-system-libyaml" "-f-no-exe" - ]; homepage = "http://github.com/snoyberg/yaml/"; description = "Support for parsing and rendering YAML documents"; license = stdenv.lib.licenses.bsd3; @@ -117795,6 +118443,7 @@ self: { base deepseq failure hashable QuickCheck tasty tasty-quickcheck text unordered-containers yaml ]; + jailbreak = true; description = "Configuration management"; license = stdenv.lib.licenses.mit; }) {}; @@ -117906,7 +118555,6 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base blank-canvas stm text time Yampa ]; - configureFlags = [ "-f-example" ]; description = "blank-canvas frontend for yampa"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -117921,6 +118569,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base GLFW-b newtype OpenGL vector-space Yampa ]; + jailbreak = true; homepage = "https://github.com/deepfire/yampa-glfw"; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = stdenv.lib.licenses.gpl3; @@ -117959,6 +118608,7 @@ self: { version = "0.2"; sha256 = "14lq549jhgnf51pgy1jv31ik8qx71yl7d53w8dpq1f9mlsn1g16i"; buildDepends = [ base ]; + jailbreak = true; description = "yet another prelude - a simplistic refactoring with algebraic classes"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -118016,7 +118666,6 @@ self: { version = "0.1"; sha256 = "0aa0g2r7ck052wqkqqxzvkdqv9d7x3v7rqqd8iajwys9cvqny4m5"; buildDepends = [ base containers csv mtl uniplate yhccore ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Additional utilities to work with Yhc Core"; license = stdenv.lib.licenses.bsd3; @@ -118036,7 +118685,6 @@ self: { base containers directory filepath process strict time unix xdg-basedir ]; - configureFlags = [ "-f-profiling" ]; homepage = "http://dmwit.com/yeganesh"; description = "small dmenu wrapper"; license = stdenv.lib.licenses.bsd3; @@ -118095,6 +118743,7 @@ self: { aeson base containers shakespeare template-haskell text transformers yesod ]; + jailbreak = true; description = "Yesod Angular JS integration"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -118123,7 +118772,6 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -118164,6 +118812,7 @@ self: { base bcrypt bytestring text yesod-auth yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "BCrypt salted and hashed passwords in a database as auth for yesod"; license = stdenv.lib.licenses.mit; @@ -118259,7 +118908,7 @@ self: { authenticate-ldap base bytestring hamlet LDAP text transformers yesod-auth yesod-core yesod-form ]; - configureFlags = [ "-fghc7" ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "LDAP Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; @@ -118277,7 +118926,6 @@ self: { authenticate-oauth base bytestring lifted-base text transformers yesod-auth yesod-core yesod-form ]; - configureFlags = [ "-fghc7" ]; homepage = "http://www.yesodweb.com/"; description = "OAuth Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; @@ -118297,7 +118945,6 @@ self: { lifted-base network-uri text transformers uuid yesod-auth yesod-core yesod-form ]; - configureFlags = [ "-fnetwork-uri" "-fghc7" ]; homepage = "http://github.com/scan/yesod-auth-oauth2"; description = "Library to authenticate with OAuth 2.0 for Yesod web applications."; license = stdenv.lib.licenses.bsd3; @@ -118349,6 +118996,7 @@ self: { http-conduit http-types template-haskell text time transformers wai yesod-auth yesod-core ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/yesod-auth-zendesk"; description = "Zendesk remote authentication support for Yesod apps"; license = stdenv.lib.licenses.bsd3; @@ -118401,6 +119049,7 @@ self: { persistent template-haskell text time wai yesod yesod-auth yesod-form yesod-markdown ]; + jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-comments"; description = "A generic comments interface for a Yesod application"; license = stdenv.lib.licenses.bsd3; @@ -118486,6 +119135,7 @@ self: { template-haskell test-framework test-framework-hunit test-framework-quickcheck2 text transformers ]; + jailbreak = true; homepage = "http://github.com/tlaitinen/yesod-datatables"; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = stdenv.lib.licenses.bsd3; @@ -118519,6 +119169,7 @@ self: { shakespeare-text strict syb text transformers ]; buildTools = [ alex happy ]; + jailbreak = true; homepage = "https://github.com/tlaitinen/yesod-dsl"; description = "DSL for generating Yesod subsite to manage an RDBMS;"; license = stdenv.lib.licenses.bsd3; @@ -118558,7 +119209,7 @@ self: { yesod-core yesod-static ]; extraLibraries = [ sqlite ]; - configureFlags = [ "-fghc7" ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = stdenv.lib.licenses.bsd3; @@ -118620,7 +119271,6 @@ self: { time transformers wai xss-sanitize yesod-core yesod-persistent ]; testDepends = [ base hspec text time ]; - configureFlags = [ "-fnetwork-uri" ]; homepage = "http://www.yesodweb.com/"; description = "Form handling support for Yesod Web Framework"; license = stdenv.lib.licenses.mit; @@ -118672,6 +119322,7 @@ self: { base blaze-html bytestring directory HTTP old-locale pandoc pureMD5 text time yesod yesod-form ]; + jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-goodies"; description = "A collection of various small helpers useful in any yesod application"; license = stdenv.lib.licenses.bsd3; @@ -118696,6 +119347,7 @@ self: { version = "0.3.0"; sha256 = "0i1b4lgwv98pp7251fm3h4cdb1d868fqwm6175rk7zg699g2v61y"; buildDepends = [ base text yesod-core ]; + jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-goodies/yesod-links"; description = "A typeclass which simplifies creating link widgets throughout your site"; license = stdenv.lib.licenses.bsd3; @@ -118727,7 +119379,7 @@ self: { wai-logger warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent yesod-static ]; - configureFlags = [ "-fconduit11" "-flibrary-only" "-f-dev" ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; @@ -118775,7 +119427,6 @@ self: { version = "0.1"; sha256 = "088m7prg774wdh8fp7zljxj65zj5krl4pggl63anv2wk7nlw27py"; buildDepends = [ base template-haskell yesod ]; - configureFlags = [ "-fghc7" ]; description = "Pagination for Yesod sites"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -118810,6 +119461,7 @@ self: { buildDepends = [ base persistent resourcet text transformers yesod ]; + jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-paginator"; description = "A pagination approach for yesod"; license = stdenv.lib.licenses.bsd3; @@ -118902,6 +119554,7 @@ self: { yesod-auth yesod-auth-hashdb yesod-core yesod-form yesod-persistent yesod-routes yesod-static yesod-test ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Meta package for Yesod (deprecated)"; license = stdenv.lib.licenses.mit; @@ -118918,6 +119571,7 @@ self: { buildDepends = [ base shakespeare text transformers yesod yesod-form ]; + jailbreak = true; homepage = "https://github.com/cutsea110/yesod-pnotify"; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = stdenv.lib.licenses.bsd3; @@ -118930,6 +119584,7 @@ self: { version = "0.1.0.2"; sha256 = "0v3xvhk5nxc2y3c21y6h7w6lg5vm1s2vzf9f02qw8gj928vsidzg"; buildDepends = [ base fast-logger text yesod yesod-core ]; + jailbreak = true; homepage = "https://github.com/snoyberg/yesod-pure"; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = stdenv.lib.licenses.mit; @@ -119024,6 +119679,7 @@ self: { base blaze-html directory hamlet pandoc persistent text xss-sanitize yesod-core yesod-form ]; + jailbreak = true; homepage = "http://github.com/pSub/yesod-rst"; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; @@ -119140,7 +119796,6 @@ self: { base bytestring hamlet hspec HUnit shakespeare template-haskell text yesod-core yesod-static yesod-test ]; - configureFlags = [ "-f-example" ]; homepage = "https://bitbucket.org/wuzzeb/yesod-static-generators"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; @@ -119196,6 +119851,7 @@ self: { aeson base bytestring conduit hspec http-types HUnit text transformers wai wai-test yesod-default ]; + jailbreak = true; homepage = "https://github.com/bogiebro/yesod-test-json"; description = "Utility functions for testing JSON web services written in Yesod"; license = stdenv.lib.licenses.bsd3; @@ -119248,6 +119904,7 @@ self: { base blaze-html hamlet monad-logger persistent persistent-sqlite resourcet text yesod yesod-form ]; + jailbreak = true; homepage = "https://github.com/Tener/yesod-vend"; description = "Simple CRUD classes for easy view creation for Yesod"; license = stdenv.lib.licenses.bsd3; @@ -119284,6 +119941,7 @@ self: { resourcet stm template-haskell transformers transformers-base yesod yesod-core ]; + jailbreak = true; homepage = "https://github.com/jamesdabbs/yesod-worker"; description = "Drop-in(ish) background worker system for Yesod apps"; license = stdenv.lib.licenses.gpl3; @@ -119296,7 +119954,6 @@ self: { version = "0.9.1"; sha256 = "18gjzlpxn0hp723ybjgq1zdbpl35iqphs7b8r5x9ddbkm435sw93"; buildDepends = [ base containers mtl pretty uniplate ]; - configureFlags = [ "-fsplitbase" ]; homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Yhc's Internal Core language"; license = stdenv.lib.licenses.bsd3; @@ -119332,10 +119989,7 @@ self: { base directory filepath HUnit lens QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text yi-language yi-rope ]; - configureFlags = [ - "-fpango" "-fvty" "-ftesting" "-f-eventlog" "-f-profiling" "-fvty" - "-fpango" - ]; + configureFlags = [ "-fpango" "-fvty" ]; homepage = "http://haskell.org/haskellwiki/Yi"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; @@ -119355,6 +120009,7 @@ self: { oo-prototypes split text time transformers-base yi yi-language yi-rope ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Yi"; description = "Add-ons to Yi, the Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; @@ -119476,6 +120131,7 @@ self: { version = "0.1"; sha256 = "152ys2x416322c13nxmi25wpilq0ddd6hj36mr25jaacf1qszv6q"; buildDepends = [ base yi ]; + jailbreak = true; homepage = "https://github.com/melrief/yi-spolsky"; description = "Spolsky colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; @@ -119527,7 +120183,6 @@ self: { base containers pretty strict-concurrency vector ]; extraLibraries = [ gmp yices ]; - configureFlags = [ "-fyices-dynamic" ]; homepage = "http://code.haskell.org/~dons/code/yices-painless"; description = "An embedded language for programming the Yices SMT solver"; license = stdenv.lib.licenses.bsd3; @@ -119546,6 +120201,7 @@ self: { buildDepends = [ base directory ftphs haskeline hsConfigure mtl process unix ]; + jailbreak = true; homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml"; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; @@ -119560,6 +120216,7 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base directory ftphs mtl process unix ]; + jailbreak = true; homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml"; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; @@ -119668,6 +120325,7 @@ self: { hxt lens opendatatable parsec SHA text transformers unordered-containers uri-template utf8-string uuid vector zlib ]; + jailbreak = true; homepage = "https://github.com/fabianbergmark/YQL"; description = "A YQL engine to execute Open Data Tables"; license = stdenv.lib.licenses.bsd2; @@ -119809,6 +120467,7 @@ self: { http-types monad-logger mtl pem template-haskell text time tls transformers unordered-containers x509 x509-store x509-validation ]; + jailbreak = true; homepage = "https://github.com/VictorDenisov/zendesk-api"; description = "Zendesk API for Haskell programming language"; license = stdenv.lib.licenses.mit; @@ -119927,6 +120586,7 @@ self: { base Cabal derive directory filepath haskell-src-exts hskeleton monoid-record process syb template-haskell ]; + jailbreak = true; description = "ZeroTH - remove unnecessary TH dependencies"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -119943,7 +120603,6 @@ self: { base bytestring cereal MissingH mtl transformers ]; testDepends = [ base bytestring mtl QuickCheck random ]; - configureFlags = [ "-f-developer" ]; homepage = "https://github.com/djoyner/zigbee-znet25"; description = "XBee ZNet 2.5 (ZigBee) wireless modem communications"; license = stdenv.lib.licenses.bsd3; @@ -119967,7 +120626,6 @@ self: { testDepends = [ base bytestring directory HUnit old-time process time ]; - configureFlags = [ "-f-executable" "-fsplitbase" ]; homepage = "http://github.com/jgm/zip-archive"; description = "Library for creating and modifying zip archives"; license = stdenv.lib.licenses.bsd3; @@ -120097,7 +120755,6 @@ self: { buildDepends = [ base bytestring enumerator transformers zlib-bindings ]; - configureFlags = [ "-f-test" ]; homepage = "http://github.com/maltem/zlib-enum"; description = "Enumerator interface for zlib compression"; license = stdenv.lib.licenses.mit; @@ -120154,6 +120811,7 @@ self: { aeson base binary containers data-ordlist deepseq deepseq-generics directory filepath mtl parallel-io text zmidi-core ]; + jailbreak = true; homepage = "https://bitbucket.org/bash/zmidi-score"; description = "Representing MIDI a simple score"; license = stdenv.lib.licenses.gpl3; @@ -120183,6 +120841,7 @@ self: { version = "0.5"; sha256 = "1n27j8ca79a1ijn7k7dp61kjz62i6zfzlns8n0kwgyvpx413ws8y"; buildDepends = [ base time ]; + jailbreak = true; description = "ZoneInfo library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -120200,6 +120859,7 @@ self: { buildDepends = [ base directory filepath ghc hamlet hint mtl template-haskell text ]; + jailbreak = true; homepage = "http://github.com/iand675/Zoom"; description = "A rake/thor-like task runner written in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -120227,7 +120887,7 @@ self: { base blaze-builder iteratee QuickCheck random test-framework test-framework-quickcheck2 transformers type-level unix ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; description = "A streamable, seekable, zoomable cache file format"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -120244,7 +120904,7 @@ self: { base blaze-builder bytestring containers iteratee ListLike mtl type-level zoom-cache ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; description = "Library for zoom-cache PCM audio codecs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -120264,7 +120924,7 @@ self: { base bytestring containers data-default hsndfile hsndfile-vector mtl ui-command vector zoom-cache zoom-cache-pcm ]; - configureFlags = [ "-fsplitbase" ]; + jailbreak = true; description = "Tools for generating zoom-cache-pcm files"; license = stdenv.lib.licenses.lgpl21; }) {}; @@ -120311,7 +120971,6 @@ self: { array base containers filepath hinotify old-locale process regex-compat time unix ]; - configureFlags = [ "-finotify" ]; description = "Multi-file, colored, filtered log tailer"; license = stdenv.lib.licenses.bsd3; }) {}; From 1fd73de1d424c42efadf0a6a4523d3085c8ba91e Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 15 Jan 2015 09:58:00 +0100 Subject: [PATCH 052/185] Lua4: adds branch information --- pkgs/development/interpreters/lua-4/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/interpreters/lua-4/default.nix b/pkgs/development/interpreters/lua-4/default.nix index 835b71f38bf..2d216389bd7 100644 --- a/pkgs/development/interpreters/lua-4/default.nix +++ b/pkgs/development/interpreters/lua-4/default.nix @@ -25,5 +25,6 @@ stdenv.mkDerivation { ''; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.linux; + branch = "4"; }; } From b87da0fa916fcd6ff019dbd3780e20c9d5e1093c Mon Sep 17 00:00:00 2001 From: vtaku0 Date: Thu, 15 Jan 2015 14:05:46 +0100 Subject: [PATCH 053/185] source-han-sans: update, and refactor expressions Close #5778. @vcunat nitpicks: truetype -> opentype, remove empty buildInputs. --- pkgs/data/fonts/source-han-sans/base.nix | 26 ---------- pkgs/data/fonts/source-han-sans/default.nix | 47 +++++++++++++++++++ pkgs/data/fonts/source-han-sans/japanese.nix | 6 --- pkgs/data/fonts/source-han-sans/korean.nix | 6 --- .../source-han-sans/simplified-chinese.nix | 6 --- .../source-han-sans/traditional-chinese.nix | 6 --- pkgs/top-level/all-packages.nix | 9 ++-- 7 files changed, 52 insertions(+), 54 deletions(-) delete mode 100644 pkgs/data/fonts/source-han-sans/base.nix create mode 100644 pkgs/data/fonts/source-han-sans/default.nix delete mode 100644 pkgs/data/fonts/source-han-sans/japanese.nix delete mode 100644 pkgs/data/fonts/source-han-sans/korean.nix delete mode 100644 pkgs/data/fonts/source-han-sans/simplified-chinese.nix delete mode 100644 pkgs/data/fonts/source-han-sans/traditional-chinese.nix diff --git a/pkgs/data/fonts/source-han-sans/base.nix b/pkgs/data/fonts/source-han-sans/base.nix deleted file mode 100644 index d319f41f2e5..00000000000 --- a/pkgs/data/fonts/source-han-sans/base.nix +++ /dev/null @@ -1,26 +0,0 @@ -{version ? "1.000", prefix, url, sha256, description}: - -{stdenv, fetchurl, unzip}: - -stdenv.mkDerivation rec { - inherit version; - name = "${prefix}-${version}"; - - src = fetchurl { - inherit url sha256; - }; - - buildInputs = [ unzip ]; - - installPhase = '' - mkdir -p $out/share/fonts/truetype - cp $( find . -name '*.otf' ) $out/share/fonts/truetype - ''; - - meta = { - inherit description; - - homepage = http://sourceforge.net/adobe/source-han-sans/; - license = stdenv.lib.licenses.asl20; - }; -} diff --git a/pkgs/data/fonts/source-han-sans/default.nix b/pkgs/data/fonts/source-han-sans/default.nix new file mode 100644 index 00000000000..9e0bf750571 --- /dev/null +++ b/pkgs/data/fonts/source-han-sans/default.nix @@ -0,0 +1,47 @@ +{stdenv, fetchurl}: + +let + makePackage = {language, region, description}: stdenv.mkDerivation rec { + version = "1.001R"; + name = "source-han-sans-${language}-${version}"; + + src = fetchurl { + url = "https://github.com/adobe-fonts/source-han-sans/archive/${version}.tar.gz"; + sha256 = "0cwz3d8jancl0a7vbjxhnh1vgwsjba62lahfjya9yrjkp1ndxlap"; + }; + + installPhase = '' + mkdir -p $out/share/fonts/opentype + cp $( find SubsetOTF/${region} -name '*.otf' ) $out/share/fonts/opentype + ''; + + meta = { + inherit description; + + homepage = https://github.com/adobe-fonts/source-han-sans; + license = stdenv.lib.licenses.asl20; + }; + }; +in +{ + japanese = makePackage { + language = "japanese"; + region = "JP"; + description = "Japanese subset of an open source Pan-CJK typeface"; + }; + korean = makePackage { + language = "korean"; + region = "KR"; + description = "Korean subset of an open source Pan-CJK typeface"; + }; + simplified-chinese = makePackage { + language = "simplified-chinese"; + region = "CN"; + description = "Simplified Chinese subset of an open source Pan-CJK typeface"; + }; + traditional-chinese = makePackage { + language = "traditional-chinese"; + region = "TW"; + description = "Traditional Chinese subset of an open source Pan-CJK typeface"; + }; +} diff --git a/pkgs/data/fonts/source-han-sans/japanese.nix b/pkgs/data/fonts/source-han-sans/japanese.nix deleted file mode 100644 index 4aacdbf62e2..00000000000 --- a/pkgs/data/fonts/source-han-sans/japanese.nix +++ /dev/null @@ -1,6 +0,0 @@ -import ./base.nix { - prefix = "source-han-sans-japanese"; - url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansJP-1.000.zip"; - sha256 = "c5930036660bea22ffceaa9e2df765776494800d330a59be7936ab3c763c4c82"; - description = "Japanese subset of an open source Pan-CJK typeface"; -} \ No newline at end of file diff --git a/pkgs/data/fonts/source-han-sans/korean.nix b/pkgs/data/fonts/source-han-sans/korean.nix deleted file mode 100644 index cf3ecd9e12e..00000000000 --- a/pkgs/data/fonts/source-han-sans/korean.nix +++ /dev/null @@ -1,6 +0,0 @@ -import ./base.nix { - prefix = "source-han-sans-korean"; - url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansKR-1.000.zip"; - sha256 = "8eed4ad092fcf640e44f73ba510e0ed1c1cabf79776f68d02820734bbba21cf8"; - description = "Korean subset of an open source Pan-CJK typeface"; -} \ No newline at end of file diff --git a/pkgs/data/fonts/source-han-sans/simplified-chinese.nix b/pkgs/data/fonts/source-han-sans/simplified-chinese.nix deleted file mode 100644 index 8e920455e45..00000000000 --- a/pkgs/data/fonts/source-han-sans/simplified-chinese.nix +++ /dev/null @@ -1,6 +0,0 @@ -import ./base.nix { - prefix = "source-han-sans-simplified-chinese"; - url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansCN-1.000.zip"; - sha256 = "88117aa8f8b4ab65d6f7a919a5e1b06d6c00f75b1abecccf120246536123754d"; - description = "Simplified Chinese subset of an open source Pan-CJK typeface"; -} \ No newline at end of file diff --git a/pkgs/data/fonts/source-han-sans/traditional-chinese.nix b/pkgs/data/fonts/source-han-sans/traditional-chinese.nix deleted file mode 100644 index b25db8a2515..00000000000 --- a/pkgs/data/fonts/source-han-sans/traditional-chinese.nix +++ /dev/null @@ -1,6 +0,0 @@ -import ./base.nix { - prefix = "source-han-sans-traditional-chinese"; - url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansTWHK-1.000.zip"; - sha256 = "2371a726757a51322243b1ed7a9fde562621b0813b5e6d6443e06847ad7bbd20"; - description = "Traditional Chinese subset of an open source Pan-CJK typeface"; -} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3804668fc99..32b1d77a7e8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9183,10 +9183,11 @@ let source-serif-pro = callPackage ../data/fonts/source-serif-pro { }; - source-han-sans-japanese = callPackage ../data/fonts/source-han-sans/japanese.nix {}; - source-han-sans-korean = callPackage ../data/fonts/source-han-sans/korean.nix {}; - source-han-sans-simplified-chinese = callPackage ../data/fonts/source-han-sans/simplified-chinese.nix {}; - source-han-sans-traditional-chinese = callPackage ../data/fonts/source-han-sans/traditional-chinese.nix {}; + sourceHanSansPackages = callPackage ../data/fonts/source-han-sans { }; + source-han-sans-japanese = sourceHanSansPackages.japanese; + source-han-sans-korean = sourceHanSansPackages.korean; + source-han-sans-simplified-chinese = sourceHanSansPackages.simplified-chinese; + source-han-sans-traditional-chinese = sourceHanSansPackages.traditional-chinese; tango-icon-theme = callPackage ../data/icons/tango-icon-theme { }; From 24ce7ff3eabd012443a1c2d435be6b73e771a6b9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Jan 2015 14:38:50 +0100 Subject: [PATCH 054/185] test-instrumentation.nix: Prevent calling a pager --- nixos/modules/testing/test-instrumentation.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix index 4b4284d8531..f37bbd0246d 100644 --- a/nixos/modules/testing/test-instrumentation.nix +++ b/nixos/modules/testing/test-instrumentation.nix @@ -38,6 +38,11 @@ let kernel = config.boot.kernelPackages.kernel; in systemd.services."serial-getty@ttyS0".enable = false; systemd.services."serial-getty@hvc0".enable = false; + # Don't use a pager when executing backdoor actions. Because we + # use a tty, commands like systemctl or nix-store get confused + # into thinking they're running interactively. + environment.variables.PAGER = ""; + boot.initrd.postDeviceCommands = '' # Using acpi_pm as a clock source causes the guest clock to From 1b1e015e6eff37de85624a6bcd1deb6f7855f47a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Jan 2015 14:51:55 +0100 Subject: [PATCH 055/185] Update Debian to 7.8 --- pkgs/build-support/vm/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 10bb59ccae0..ba916c12cfc 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -1604,22 +1604,22 @@ rec { debian70x86_64 = debian7x86_64; debian7i386 = { - name = "debian-7.7-wheezy-i386"; - fullName = "Debian 7.7 Wheezy (i386)"; + name = "debian-7.8-wheezy-i386"; + fullName = "Debian 7.8 Wheezy (i386)"; packagesList = fetchurl { url = mirror://debian/dists/wheezy/main/binary-i386/Packages.bz2; - sha256 = "f2fd890597b6f0d82c5d66ccc8b12a963937a0576a377dd0ccbe47de4c1b09c8"; + sha256 = "d86c28cb4f1aa178e678c253944c674a60991a367349e58a90d9a3e939e4e4bc"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; }; debian7x86_64 = { - name = "debian-7.7-wheezy-amd64"; - fullName = "Debian 7.7 Wheezy (amd64)"; + name = "debian-7.8-wheezy-amd64"; + fullName = "Debian 7.8 Wheezy (amd64)"; packagesList = fetchurl { url = mirror://debian/dists/wheezy/main/binary-amd64/Packages.bz2; - sha256 = "8ce14e88febc58310a1c13350f016ce583f068d10031ed4f0cb50985707786d8"; + sha256 = "c8257d74c9411e2f0b9891a21f5dbf5fb088b46d1df043907a4d390b32da2931"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; From 0305f3b797865a88c860e43e6a1c9591b0edd69a Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 14:11:32 +0000 Subject: [PATCH 056/185] hackage-packages.nix: re-generate from Hackage 2015-01-15 14:11:26+00:00 --- .../haskell-modules/hackage-packages.nix | 204 ++++++++++++------ 1 file changed, 138 insertions(+), 66 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 628133d9f62..e1bc898261e 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1630,18 +1630,19 @@ self: { }) {}; "CCA" = callPackage - ({ mkDerivation, array, base, containers, ghc-prim, haskell-src - , syb, template-haskell + ({ mkDerivation, array, base, containers, ghc-prim, happy + , haskell-src, syb, template-haskell }: mkDerivation { pname = "CCA"; - version = "0.1.5"; - sha256 = "04wiyx9z73b3m6j2mck21hngw30jvic8zg9rqpp95kjqr1bl914s"; + version = "0.1.5.1"; + sha256 = "11q33gpaiyvmd6amlh48k4i3wrj6axrnvyrvsrg6xhnlvvbibvwj"; isLibrary = true; isExecutable = true; buildDepends = [ array base containers ghc-prim haskell-src syb template-haskell ]; + buildTools = [ happy ]; homepage = "not available"; description = "preprocessor and library for Causal Commutative Arrows (CCA)"; license = stdenv.lib.licenses.bsd3; @@ -7179,6 +7180,7 @@ self: { pname = "HaskellNet"; version = "0.4.1"; sha256 = "1zm7h76vzn3amgz3c862a4531dvmw0f4rvdw3l2gafrlnwpmvay9"; + editedCabalFile = "b935aab9d2a5b0d2c66c5d4db07cf81597fbdc10da42af04f690ccfe15bc0feb"; buildDepends = [ array base base64-string bytestring cryptohash mime-mail mtl network old-time pretty text @@ -13562,8 +13564,8 @@ self: { }: mkDerivation { pname = "UISF"; - version = "0.3.0.0"; - sha256 = "1sd6jwbih1kk209crnqvc39k044ix5gd12kg3d4bfj619325bb1n"; + version = "0.3.0.1"; + sha256 = "0qfhcc0ii7nncfsyxvafwbrx8j6jjdc0jrj56g8jm8vmzsa082kp"; buildDepends = [ arrows base containers deepseq GLFW OpenGL stm transformers ]; @@ -18432,8 +18434,8 @@ self: { }: mkDerivation { pname = "arbtt"; - version = "0.8.1.4"; - sha256 = "15ydb425nvqfzajx09q713wy5xa7awbzfjlsidk17vf7qbhfjn7z"; + version = "0.9"; + sha256 = "1076fy65b0qzjind3zm170ws8dq76f34n4b0gjn98v4a0nsk60xw"; isLibrary = false; isExecutable = true; buildDepends = [ @@ -18447,7 +18449,6 @@ self: { tasty-hunit time transformers unix utf8-string ]; extraLibraries = [ libXScrnSaver ]; - jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -21858,6 +21859,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "binary-store" = callPackage + ({ mkDerivation, base, binary, binary-list, binary-transform + , bytestring, bzlib, deepseq, QuickCheck, reinterpret-cast, tasty + , tasty-quickcheck + }: + mkDerivation { + pname = "binary-store"; + version = "0.1.0.1"; + sha256 = "1wjhc18zj6p5gy15y1b7gz0vlqdbwhmfyv82l55ggmzjv1qyv7rl"; + buildDepends = [ + base binary binary-list binary-transform bytestring bzlib deepseq + reinterpret-cast + ]; + testDepends = [ + base binary-list QuickCheck tasty tasty-quickcheck + ]; + jailbreak = true; + description = "Format to store data using the binary transform"; + license = stdenv.lib.licenses.bsd3; + broken = true; + }) { binary-transform = null;}; + "binary-streams" = callPackage ({ mkDerivation, base, binary, bytestring, Cabal , cabal-test-quickcheck, io-streams, QuickCheck @@ -23073,13 +23096,12 @@ self: { }: mkDerivation { pname = "bitstream"; - version = "0.2.0.3"; - sha256 = "0vskdlaczkv4szrnhhllfvmhvil58ra1qwjzhjkchgmvhx4b6jzq"; + version = "0.2.0.4"; + sha256 = "1j00r6jv9yp0h476gz7yalrlnxhkrdrl1w73d3zl98kyf207q2sy"; buildDepends = [ base base-unicode-symbols bytestring vector ]; testDepends = [ base base-unicode-symbols bytestring QuickCheck vector ]; - jailbreak = true; homepage = "https://github.com/phonohawk/bitstream"; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = stdenv.lib.licenses.publicDomain; @@ -23992,13 +24014,13 @@ self: { }) {}; "boxes" = callPackage - ({ mkDerivation, base, split }: + ({ mkDerivation, base, QuickCheck, split }: mkDerivation { pname = "boxes"; - version = "0.1.3"; - sha256 = "1sia3j0x7m68j6j9n7bi1l1yg56ivpkxd95l19xl5vpkg03qizkq"; - editedCabalFile = "3d70cb4fcd2725246b104cff33d5d79fac5da97b688ab4b440e75f8970bf0484"; + version = "0.1.4"; + sha256 = "1n7xiplzd3s1a39nizwjcgsh3wi2348mp21c3fk19v98ialfjgjf"; buildDepends = [ base split ]; + testDepends = [ base QuickCheck split ]; description = "2D text pretty-printing library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25119,8 +25141,8 @@ self: { }: mkDerivation { pname = "cabal-debian"; - version = "4.19.1"; - sha256 = "0qfqw240kvbmddw0d540s2x0gbpxszidas1kprrsmjqb5ysba77r"; + version = "4.20.1"; + sha256 = "11wl87df4l0djgxpdq7mw8cndjka62fhdks1qg7fhljh26zb659l"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -30668,15 +30690,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "containers_0_5_6_2" = callPackage + "containers_0_5_6_3" = callPackage ({ mkDerivation, array, base, ChasingBottoms, deepseq, ghc-prim , HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2 }: mkDerivation { pname = "containers"; - version = "0.5.6.2"; - sha256 = "1r9dipm2bw1dvdjyb2s1j9qmqy8xzbldgiz7a885fz0p1ygy9bdi"; + version = "0.5.6.3"; + sha256 = "1kcd55nl0vzi99i8sr8fmc5j25fv7m0a9hd3nihnq1pd64pfciqn"; buildDepends = [ array base deepseq ghc-prim ]; testDepends = [ array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck @@ -40227,6 +40249,7 @@ self: { pname = "entropy"; version = "0.3.4.1"; sha256 = "10myxs2a7838sywnlfggpsd7lmvzphl10zdh1vbbi18n3x79gyk0"; + editedCabalFile = "a7770a86c27d5d48a82b519e9eed75d276ffc2ca942275d0b901299109b590bc"; buildDepends = [ base bytestring unix ]; homepage = "https://github.com/TomMD/entropy"; description = "A platform independent entropy source"; @@ -46519,8 +46542,8 @@ self: { ({ mkDerivation, base, ghc, syb }: mkDerivation { pname = "ghc-syb-utils"; - version = "0.2.2"; - sha256 = "03r4x3a4hjivxladlw23jk8s2pgfh85lqf196ks1ngyg6ih1g6lk"; + version = "0.2.3"; + sha256 = "0rxwdivpcppwzbqglbrz8rm9f4g1gmba9ij7p7aj3di9x37kzxky"; buildDepends = [ base ghc syb ]; homepage = "http://github.com/nominolo/ghc-syb"; description = "Scrap Your Boilerplate utilities for the GHC API"; @@ -55806,6 +55829,7 @@ self: { pname = "heist"; version = "0.14.0.1"; sha256 = "1nhksdn95v35ymml3kgm70axjl4vkjfvj1wvlcm1a1frlnbk993w"; + editedCabalFile = "6cc46649ab05899f5c784e81e2dcbda7b9c2f1da43cdefa7dc3462ae59c71eae"; buildDepends = [ aeson attoparsec base blaze-builder blaze-html bytestring containers directory directory-tree dlist errors filepath hashable @@ -65240,13 +65264,14 @@ self: { , boehmgc, bytestring, cheapskate, containers, deepseq, directory , filepath, fingertree, gmp, happy, haskeline, lens, libffi, mtl , network, optparse-applicative, parsers, pretty, process, split - , text, time, transformers, trifecta, unix, unordered-containers - , utf8-string, vector, vector-binary-instances, xml, zlib + , text, time, transformers, trifecta, uniplate, unix + , unordered-containers, utf8-string, vector + , vector-binary-instances, xml, zlib }: mkDerivation { pname = "idris"; - version = "0.9.15.1"; - sha256 = "0r31jcqs9kgknm66v7bbcgj9md7z49sgvn0nhk1dwg8jj2rmfll8"; + version = "0.9.16"; + sha256 = "0mnjq05v145jyj2m2v2a33ibpyf788x63agcnlb33y21684mhvcm"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -65254,7 +65279,7 @@ self: { base64-bytestring binary blaze-html blaze-markup bytestring cheapskate containers deepseq directory filepath fingertree haskeline lens libffi mtl network optparse-applicative parsers - pretty process split text time transformers trifecta unix + pretty process split text time transformers trifecta uniplate unix unordered-containers utf8-string vector vector-binary-instances xml zlib ]; @@ -67213,12 +67238,12 @@ self: { }) {}; "iso3166-country-codes" = callPackage - ({ mkDerivation, base, http-conduit }: + ({ mkDerivation, base }: mkDerivation { pname = "iso3166-country-codes"; - version = "0.20140203.6"; - sha256 = "1pmlrqfav9d7pij5kri9q18bhamdj3phl1jrfd3dxbm8ambp57bd"; - buildDepends = [ base http-conduit ]; + version = "0.20140203.7"; + sha256 = "1cfmrkrx5wdcr8rrwakhmv0a5bxipxc3l7p4z5nxzl5nrjrli79s"; + buildDepends = [ base ]; description = "A datatype for ISO 3166 country codes"; license = "LGPL"; }) {}; @@ -71251,8 +71276,8 @@ self: { }: mkDerivation { pname = "learning-hmm"; - version = "0.3.0.1"; - sha256 = "1cwiv96d655bz591gw7hgciwlh801k661llfbzp5ilf5rirzy0g1"; + version = "0.3.1.0"; + sha256 = "12sfx2dmlv290ycy29nxjrxsl55q0qhyrcfn0z2nwmx0gvprpgyh"; buildDepends = [ base containers deepseq hmatrix random-fu random-source vector ]; @@ -72186,24 +72211,23 @@ self: { }) { libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage - ({ mkDerivation, base, bytestring, hashable, hsyslog, libsystemd - , pipes, pipes-safe, text, transformers, uniplate, unix-bytestring - , unordered-containers, uuid, vector + ({ mkDerivation, base, bytestring, hashable, hsyslog, pipes + , pipes-safe, systemd, text, transformers, uniplate + , unix-bytestring, unordered-containers, uuid, vector }: mkDerivation { pname = "libsystemd-journal"; - version = "1.3.0"; - sha256 = "0cl5sjkk8a5hxhavjwdpbwx5pcylh3izm56z9sjndciczyrw0hjd"; + version = "1.3.1"; + sha256 = "1i66w6dhycvi3d0vnws91mc0k9v46qr0zpc35yliv1paipm1s51a"; buildDepends = [ base bytestring hashable hsyslog pipes pipes-safe text transformers uniplate unix-bytestring unordered-containers uuid vector ]; - pkgconfigDepends = [ libsystemd ]; - jailbreak = true; + pkgconfigDepends = [ systemd ]; homepage = "http://github.com/ocharles/libsystemd-journal"; description = "Haskell bindings to libsystemd-journal"; license = stdenv.lib.licenses.bsd3; - }) { libsystemd = null;}; + }) { inherit (pkgs) systemd;}; "libtagc" = callPackage ({ mkDerivation, base, bytestring, glib, tag_c, taglib_c }: @@ -81510,6 +81534,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "newtype-deriving" = callPackage + ({ mkDerivation, base, base-prelude, monad-control + , template-haskell, transformers, transformers-base + }: + mkDerivation { + pname = "newtype-deriving"; + version = "0.1.1"; + sha256 = "16rfzkmay9gpy75l56i6ra6vjramvq8dwpq0adsh7xqpx101cd21"; + buildDepends = [ + base base-prelude monad-control template-haskell transformers + transformers-base + ]; + homepage = "https://github.com/nikita-volkov/newtype-deriving"; + description = "Instance derivers for newtype wrappers"; + license = stdenv.lib.licenses.mit; + }) {}; + "newtype-generics" = callPackage ({ mkDerivation, base, hspec, HUnit }: mkDerivation { @@ -90874,16 +90915,16 @@ self: { }) {}; "random-fu" = callPackage - ({ mkDerivation, base, erf, logfloat, math-functions, monad-loops + ({ mkDerivation, base, erf, log-domain, math-functions, monad-loops , mtl, random-shuffle, random-source, rvar, syb, template-haskell , transformers, vector }: mkDerivation { pname = "random-fu"; - version = "0.2.6.1"; - sha256 = "04fi92szpjyg0ffgxfayz00vpiqi67hzyahhin12wvw3pxbyyp9g"; + version = "0.2.6.2"; + sha256 = "1j7zr7h860vjwlh9d9sj319xs44ly2vyzn3s72c5qc39r0yv00ng"; buildDepends = [ - base erf logfloat math-functions monad-loops mtl random-shuffle + base erf log-domain math-functions monad-loops mtl random-shuffle random-source rvar syb template-haskell transformers vector ]; homepage = "https://github.com/mokus0/random-fu"; @@ -93803,6 +93844,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reverse-geocoding" = callPackage + ({ mkDerivation, aeson, base, iso3166-country-codes, lens + , lens-aeson, text, wreq + }: + mkDerivation { + pname = "reverse-geocoding"; + version = "0.1.0.1"; + sha256 = "12sp3ilyw4cqqqvlfn90fq1y573vccms0sgwsnnnsmljrj66jppp"; + buildDepends = [ + aeson base iso3166-country-codes lens lens-aeson text wreq + ]; + homepage = "https://github.com/jcristovao/reverse-geocoding"; + description = "Simple reverse geocoding using OpenStreeMap"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reversi" = callPackage ({ mkDerivation, array, base, process }: mkDerivation { @@ -98829,8 +98886,8 @@ self: { ({ mkDerivation, base, process }: mkDerivation { pname = "simple-smt"; - version = "0.5.0"; - sha256 = "00ag8kfc7lf0lkmbrblxmz81vwd05ifnfh5wkd4s0432b9vljjmb"; + version = "0.5.3"; + sha256 = "0m3ghgh2ip22808cyx1babfkpj6v0ii6lmnwgrk8adaj5aif9dfg"; buildDepends = [ base process ]; description = "A simple way to interact with an SMT solver process"; license = stdenv.lib.licenses.bsd3; @@ -100444,6 +100501,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "snaplet-purescript" = callPackage + ({ mkDerivation, base, configurator, mtl, raw-strings-qq, shelly + , snap, snap-core, text + }: + mkDerivation { + pname = "snaplet-purescript"; + version = "0.1.0.0"; + sha256 = "04p1k9rrqn1y25fxdz15lgg43y2q5nd9q5r73qv27v3gn1qsr9y0"; + buildDepends = [ + base configurator mtl raw-strings-qq shelly snap snap-core text + ]; + jailbreak = true; + description = "Automatic (re)compilation of purescript projects"; + license = stdenv.lib.licenses.mit; + }) {}; + "snaplet-recaptcha" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring , configurator, heist, http-conduit, lens @@ -103680,13 +103753,12 @@ self: { }: mkDerivation { pname = "stripe"; - version = "0.8.1"; - sha256 = "0vmgj9n7q8ik31z7zzfjfv1qj8f8vrqn9cvk8kjp3k4shj25p7sy"; + version = "0.8.3"; + sha256 = "1lqz116lvj2444sf2j58dg1nkjwaxm9abrizp1zqkmixbl7ykaqh"; buildDepends = [ aeson base bytestring http-conduit http-types mtl text time unordered-containers utf8-string ]; - jailbreak = true; homepage = "https://github.com/michaelschade/hs-stripe"; description = "A Haskell implementation of the Stripe API"; license = stdenv.lib.licenses.bsd3; @@ -105826,7 +105898,7 @@ self: { mkDerivation { pname = "tasty-ant-xml"; version = "1.0.1"; - sha256 = "1wb9lm9rbk46g9cm2lpcrzh59zpcy270p824agg61bj1xb9jymsc"; + sha256 = "nil"; buildDepends = [ base containers generic-deriving ghc-prim mtl stm tagged tasty transformers xml @@ -107480,8 +107552,8 @@ self: { }: mkDerivation { pname = "th-desugar"; - version = "1.4.2"; - sha256 = "16l0khjx2wppnm9spp6mg659m95hxjkzfv3pjw5ays3z6clhx8b9"; + version = "1.4.2.1"; + sha256 = "1ys7j1hvvsl3pb8rrp336jw3q2cf0zfx12v8n4mz0wbg0xm7pwjr"; buildDepends = [ base containers mtl syb template-haskell ]; testDepends = [ base containers hspec HUnit mtl syb template-haskell @@ -109359,8 +109431,8 @@ self: { }: mkDerivation { pname = "transformers-abort"; - version = "0.5"; - sha256 = "1l1aid4y77rnjgca41iaflimkd7h3028kgg2yw6pszv11g12cavc"; + version = "0.5.0.1"; + sha256 = "0s0vvjii3h7vw8kg3xf1ig6fkxdw7z69czwdyg6nvsrcc9kbs9gm"; buildDepends = [ base data-default-class monad-control pointed semigroupoids transformers transformers-base @@ -109711,8 +109783,8 @@ self: { ({ mkDerivation, base, containers, template-haskell, time }: mkDerivation { pname = "true-name"; - version = "0.0.0.0"; - sha256 = "1c3lfsc9yg88k08pn57nvddi2aqqpsgx5ksa2x4h1brksiybx1ah"; + version = "0.0.0.1"; + sha256 = "1qp70i08hf7w90zyc4kz9hnyx8qaf925sy8x01r1z3dbxd473dgm"; buildDepends = [ base template-haskell ]; testDepends = [ base containers template-haskell time ]; homepage = "https://github.com/liyang/true-name"; @@ -112845,8 +112917,8 @@ self: { }: mkDerivation { pname = "uuagc"; - version = "0.9.52"; - sha256 = "04qa3ahaj544xsjba7zw411nmcs92qp9v2a3fn5cvns3xnh1l8b6"; + version = "0.9.52.1"; + sha256 = "1191a1jr1s76wjdrfzafy1ibf7a7xpg54dvwhwz4kr1jrc9jn2cq"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -114299,8 +114371,8 @@ self: { }: mkDerivation { pname = "wai"; - version = "3.0.2.1"; - sha256 = "0aia14y1vy6yppfhwalmbcpnv1ypk8a08jbj05mk3w96hsaxnc19"; + version = "3.0.2.2"; + sha256 = "1whfpycwcj2xx81llvzgrmi5fxkjfqjipfdkld17jbd6klgfkyzc"; buildDepends = [ base blaze-builder bytestring http-types network text vault ]; @@ -114351,8 +114423,8 @@ self: { }: mkDerivation { pname = "wai-app-static"; - version = "3.0.0.5"; - sha256 = "1v3zy79s5y4rdp9m6mg8mynsajjdf9zjlx5q9lnfk0d8pq3k8bwl"; + version = "3.0.0.6"; + sha256 = "0ilwlawffvib1p98q5jcc5m2i93n7iwmszwlbkb3ihlh1wz5q2b8"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -115168,8 +115240,8 @@ self: { }: mkDerivation { pname = "warp-tls"; - version = "3.0.1.2"; - sha256 = "1xcfvk5b4hgcppmwh21fba26slsiywqfvmzhn0cgq2kvqdxn2s72"; + version = "3.0.1.3"; + sha256 = "0x0y1g79il7l3vx3888p6vjf7jpqwpc46xb54pl3cxw3j9jjd4gc"; buildDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp From 1d4098dd0371534839d67bdc49e98d9fee6c6828 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 14:15:13 +0000 Subject: [PATCH 057/185] Haskell: correct sha256 for tasty-ant-xml For some reason hackage2nix always outputs `nil`. CC @peti --- pkgs/development/haskell-modules/hackage-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index e1bc898261e..740821b9855 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -105898,7 +105898,7 @@ self: { mkDerivation { pname = "tasty-ant-xml"; version = "1.0.1"; - sha256 = "nil"; + sha256 = "1wb9lm9rbk46g9cm2lpcrzh59zpcy270p824agg61bj1xb9jymsc"; buildDepends = [ base containers generic-deriving ghc-prim mtl stm tagged tasty transformers xml From 2b63483bd5e3321c4c2fcbb637d001d9bf5021a8 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 14:26:06 +0000 Subject: [PATCH 058/185] haskellngPackages.fb: Update patch --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3243f2b1b06..1f5b35f6af5 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -152,8 +152,8 @@ self: super: { fb = doJailbreak (overrideCabal super.fb (drv: { patches = [ (pkgs.fetchpatch { - url = https://github.com/prowdsponsor/fb/pull/33.patch; - sha256 = "0xfbfyg86lrimwhfd2s41xy5axcsnw0rqvic8ak72rq2sssyljpg"; + url = https://github.com/prowdsponsor/fb/pull/31.patch; + sha256 = "0ip8mhpbbvlp4pz7d27d6cg39gm6ypfsf4rdmfrmdh3pkig0axls"; }) ]; })); From ef296fa40775e0f4b2fa48d5c6082c9cc000c4c7 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 14:50:55 +0000 Subject: [PATCH 059/185] haskell-ng.snaplet-stripe: Remove doJailbreak Now done automatically by hackage2nix --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1f5b35f6af5..a225c5cb60b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -145,9 +145,6 @@ self: super: { # https://github.com/michaelschade/hs-stripe/pull/37 stripe = doJailbreak super.stripe; - # https://github.com/LukeHoersten/snaplet-stripe/pull/4 - snaplet-stripe = doJailbreak super.snaplet-stripe; - # https://github.com/prowdsponsor/fb/pull/33 fb = doJailbreak (overrideCabal super.fb (drv: { patches = [ From e259b1ed94feead2716a7078f6c8a676332fe15f Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 14:51:44 +0000 Subject: [PATCH 060/185] haskellngPackages.stripe: Remove doJailbreak 0.8.3 does not need to be jailbroken. --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index a225c5cb60b..756ea5aa786 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -142,9 +142,6 @@ self: super: { # https://github.com/dzhus/snaplet-redis/pull/11 snaplet-redis = doJailbreak super.snaplet-redis; - # https://github.com/michaelschade/hs-stripe/pull/37 - stripe = doJailbreak super.stripe; - # https://github.com/prowdsponsor/fb/pull/33 fb = doJailbreak (overrideCabal super.fb (drv: { patches = [ From 08d9755acb29197d279b88552759f286eaf8ccab Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 14:53:25 +0000 Subject: [PATCH 061/185] haskellngPackages.snaplet-redis: Remove doJailbreak Now handled by hackage2nix --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 756ea5aa786..80a68a9c8c2 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -139,9 +139,6 @@ self: super: { # https://github.com/goldfirere/th-desugar/issues/21 th-desugar = dontCheck super.th-desugar; - # https://github.com/dzhus/snaplet-redis/pull/11 - snaplet-redis = doJailbreak super.snaplet-redis; - # https://github.com/prowdsponsor/fb/pull/33 fb = doJailbreak (overrideCabal super.fb (drv: { patches = [ From d5f63e9626da19df6fb12d6ef7b4b6329b2ff0a3 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 14:54:15 +0000 Subject: [PATCH 062/185] haskellngPackages.th-desugar: Remove doJailbreak Latest version builds without needing to jailbreak. --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 80a68a9c8c2..6cff2e9d3c5 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -136,9 +136,6 @@ self: super: { # depends on broken hbro package. hbro-contrib = markBroken super.hbro-contrib; - # https://github.com/goldfirere/th-desugar/issues/21 - th-desugar = dontCheck super.th-desugar; - # https://github.com/prowdsponsor/fb/pull/33 fb = doJailbreak (overrideCabal super.fb (drv: { patches = [ From daf75aae5717c4c38428290219d8ef54fb7cb3be Mon Sep 17 00:00:00 2001 From: Markus Kohlhase Date: Thu, 15 Jan 2015 15:57:04 +0000 Subject: [PATCH 063/185] nixpkgs: new: openbr v0.5 --- pkgs/development/libraries/openbr/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/development/libraries/openbr/default.nix diff --git a/pkgs/development/libraries/openbr/default.nix b/pkgs/development/libraries/openbr/default.nix new file mode 100644 index 00000000000..292db910318 --- /dev/null +++ b/pkgs/development/libraries/openbr/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchgit, cmake, opencv, qt5 }: + +stdenv.mkDerivation rec { + + version = "0.5"; + name = "openbr-${version}"; + + src = fetchgit { + url = "https://github.com/biometrics/openbr.git"; + rev = "cc364a89a86698cd8d3052f42a3cb520c929b325"; + sha256 = "16b3mmsf9r1yqqaw89fx0c3bgfg86dz4phry89wqy2hw05szgda3"; + }; + + buildInputs = [ opencv qt5 ]; + + nativeBuildInputs = [ cmake ]; + + enableParallelBuilding = true; + + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + ]; + + meta = { + description = "Open Source Biometric Recognition"; + homepage = http://openbiometrics.org/; + license = stdenv.lib.licenses.asl20; + maintainers = with stdenv.lib.maintainers; [flosse]; + platforms = with stdenv.lib.platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f961c21ec1f..4d674fea375 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6652,6 +6652,8 @@ let openbabel = callPackage ../development/libraries/openbabel { }; + openbr = callPackage ../development/libraries/openbr { }; + opencascade = callPackage ../development/libraries/opencascade { }; opencascade_6_5 = callPackage ../development/libraries/opencascade/6.5.nix { From 12795b9735e2642311ecc81682dc002188bfa3d3 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 15 Jan 2015 12:21:17 +0100 Subject: [PATCH 064/185] Add myself as maintainer --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index aa98a279509..6c4bae269c8 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -107,6 +107,7 @@ manveru = "Michael Fellinger "; marcweber = "Marc Weber "; matejc = "Matej Cotman "; + matthiasbeyer = "Matthias Beyer "; meditans = "Carlo Nucera "; meisternu = "Matt Miemiec "; michelk = "Michel Kuhlmann "; From 9261b976ee9241dcc5c3b4c5e2dddb17627a4ba2 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 14 Jan 2015 21:24:38 +0100 Subject: [PATCH 065/185] Add cortex in applications/misc --- pkgs/applications/misc/cortex/default.nix | 31 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/applications/misc/cortex/default.nix diff --git a/pkgs/applications/misc/cortex/default.nix b/pkgs/applications/misc/cortex/default.nix new file mode 100644 index 00000000000..79d19f45a25 --- /dev/null +++ b/pkgs/applications/misc/cortex/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchgit, python3 }: + +stdenv.mkDerivation { + name = "cortex"; + + src = fetchgit { + url = "https://github.com/gglucas/cortex"; + rev = "e749de6c21aae02386f006fd0401d22b9dcca424"; + sha256 = "d5d59c5257107344122c701eb370f3740f9957b6b898ac798d797a4f152f614c"; + }; + + buildInputs = [ stdenv python3 ]; + + prePatch = '' + substituteInPlace cortex --replace "/usr/bin/env python3" "${python3}/bin/python3" + ''; + + installPhase = '' + mkdir -p $out/bin + cp cortex $out/bin/ + chmod +x $out/bin/cortex + ''; + + meta = with stdenv.lib; { + homepage = "http://cortex.glacicle.org"; + description = "An ncurses reddit browser and monitor"; + license = licenses.mit; + maintainers = with maintainers; [ matthiasbeyer ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 80ec3ecff77..30511635811 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9448,6 +9448,8 @@ let inherit (gnome) libgnomeui GConf; }; + cortex = callPackage ../applications/misc/cortex { }; + csound = callPackage ../applications/audio/csound { }; cinepaint = callPackage ../applications/graphics/cinepaint { From 0f15ee1a45dd028afd3a96d9c620bbd083141cf5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 14 Jan 2015 08:16:42 +0100 Subject: [PATCH 066/185] Python: pygments: update 1.6 -> 2.0.1; add licence; maintain --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bca4a56c650..1da52a6c0a7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7678,16 +7678,19 @@ let }; pygments = buildPythonPackage rec { - name = "Pygments-1.6"; + version = "2.0.1"; + name = "Pygments-${version}"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz"; - md5 = "a18feedf6ffd0b0cc8c8b0fbdb2027b1"; + sha256 = "1js5vq0xvsiykzpj5snxhdz3li9fmk8vc549slg9hcnj80frw0sy"; }; - meta = { + meta = with stdenv.lib; { homepage = http://pygments.org/; description = "A generic syntax highlighter"; + license = with licenses; [ bsd2 ]; + maintainers = with maintainers; [ nckx ]; }; }; From 3ca275d7ba92900fa793d4c9bf017e38394fcfec Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Jan 2015 17:51:43 +0100 Subject: [PATCH 067/185] NixOS containers: Create /root with 700 permission Systemd-nspawn creates /root with 755 permission if it doesn't exist, which is bad. So we have to create it ourselves before calling systemd-nspawn. --- nixos/modules/virtualisation/containers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix index 3b7f3e248d5..075ec0ea227 100644 --- a/nixos/modules/virtualisation/containers.nix +++ b/nixos/modules/virtualisation/containers.nix @@ -194,7 +194,7 @@ in script = '' mkdir -p -m 0755 "$root/etc" "$root/var/lib" - mkdir -p -m 0700 "$root/var/lib/private" + mkdir -p -m 0700 "$root/var/lib/private" "$root/root" if ! [ -e "$root/etc/os-release" ]; then touch "$root/etc/os-release" fi From b9c4569b6b4c7fc3eb96b55cbf4043f2ba35a901 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Jan 2015 18:28:47 +0100 Subject: [PATCH 068/185] nixos-install: Create /root with 700 permission --- nixos/modules/installer/tools/nixos-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/installer/tools/nixos-install.sh b/nixos/modules/installer/tools/nixos-install.sh index 9dfc322b9f7..bfb42d40b06 100644 --- a/nixos/modules/installer/tools/nixos-install.sh +++ b/nixos/modules/installer/tools/nixos-install.sh @@ -77,6 +77,7 @@ mkdir -m 0755 -p $mountPoint/dev $mountPoint/proc $mountPoint/sys $mountPoint/et mkdir -m 01777 -p $mountPoint/tmp mkdir -m 0755 -p $mountPoint/tmp/root mkdir -m 0755 -p $mountPoint/var/setuid-wrappers +mkdir -m 0700 -p $mountPoint/root mount --rbind /dev $mountPoint/dev mount --rbind /proc $mountPoint/proc mount --rbind /sys $mountPoint/sys From efa8fc2b0a5e94fd22e26c31c82b643d2352e92a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Jan 2015 18:36:38 +0100 Subject: [PATCH 069/185] Paranoia --- nixos/modules/system/boot/stage-2-init.sh | 1 + nixos/modules/virtualisation/ec2-data.nix | 2 +- nixos/modules/virtualisation/google-compute-image.nix | 2 +- nixos/tests/installer.nix | 3 +++ 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh index 3762bda94a5..356a440b17a 100644 --- a/nixos/modules/system/boot/stage-2-init.sh +++ b/nixos/modules/system/boot/stage-2-init.sh @@ -91,6 +91,7 @@ mkdir -m 01777 -p /tmp mkdir -m 0755 -p /var /var/log /var/lib /var/db mkdir -m 0755 -p /nix/var mkdir -m 0700 -p /root +chmod 0700 /root mkdir -m 0755 -p /bin # for the /bin/sh symlink mkdir -m 0755 -p /home mkdir -m 0755 -p /etc/nixos diff --git a/nixos/modules/virtualisation/ec2-data.nix b/nixos/modules/virtualisation/ec2-data.nix index 93a83a3e42a..15114b1e76a 100644 --- a/nixos/modules/virtualisation/ec2-data.nix +++ b/nixos/modules/virtualisation/ec2-data.nix @@ -44,7 +44,7 @@ with lib; # into the image (a Nova feature). if ! [ -e /root/.ssh/authorized_keys ]; then echo "obtaining SSH key..." - mkdir -p /root/.ssh + mkdir -m 0700 -p /root/.ssh $wget http://169.254.169.254/1.0/meta-data/public-keys/0/openssh-key > /root/key.pub if [ $? -eq 0 -a -e /root/key.pub ]; then if ! grep -q -f /root/key.pub /root/.ssh/authorized_keys; then diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix index 41c7dd62f3e..4d493b3896f 100644 --- a/nixos/modules/virtualisation/google-compute-image.nix +++ b/nixos/modules/virtualisation/google-compute-image.nix @@ -139,7 +139,7 @@ in # Don't download the SSH key if it has already been downloaded if ! [ -e /root/.ssh/authorized_keys ]; then echo "obtaining SSH key..." - mkdir -p /root/.ssh + mkdir -m 0700 -p /root/.ssh ${wget} -O /root/authorized-keys-metadata http://metadata/0.1/meta-data/authorized-keys if [ $? -eq 0 -a -e /root/authorized-keys-metadata ]; then cat /root/authorized-keys-metadata | cut -d: -f2- > /root/key.pub diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 641ff924e14..af9e6365a9f 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -190,6 +190,9 @@ let $machine->succeed("test -e /boot/grub"); + # Check whether /root has correct permissions. + $machine->succeed("stat -c '%a' /root") =~ /700/ or die; + # Did the swap device get activated? # uncomment once https://bugs.freedesktop.org/show_bug.cgi?id=86930 is resolved #$machine->waitForUnit("swap.target"); From 6be4eb7a43fdea484f05ac16a34f3bfb9e72894a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 15 Jan 2015 16:39:19 +0100 Subject: [PATCH 070/185] Add package: stag --- pkgs/applications/misc/stag/default.nix | 26 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/applications/misc/stag/default.nix diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix new file mode 100644 index 00000000000..aad857b2573 --- /dev/null +++ b/pkgs/applications/misc/stag/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchgit, curses }: + +stdenv.mkDerivation { + name = "stag-1.0"; + + src = fetchgit { + url = https://github.com/seenaburns/stag.git; + rev = "90e2964959ea8242349250640d24cee3d1966ad6"; + sha256 = "88628dfa07a0772c7eca0cc66ef2d8f3e20297deec021c776a82fe1323bafb0f"; + }; + + buildInputs = [ stdenv curses ]; + + installPhase = '' + make install PREFIX=$out + ''; + + meta = { + homepage = "https://github.com/seenaburns/stag"; + description = "Terminal streaming bar graph passed through stdin.; + license = stdenv.lib.licenses.bsdOriginal; + + # FIXME: waiting on PR #5773 for maintainer entry + #maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 895977fc4fa..91ad934eac0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10957,6 +10957,10 @@ let conf = config.st.conf or null; }; + stag = callPackage ../applications/misc/stag { + curses = ncurses; + }; + stella = callPackage ../misc/emulators/stella { }; linuxstopmotion = callPackage ../applications/video/linuxstopmotion { }; From ee06c5994425472fdd7c6560cad505684b35510b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 15 Jan 2015 17:14:31 +0100 Subject: [PATCH 071/185] Fixup: Missing terminating quote --- pkgs/applications/misc/stag/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix index aad857b2573..a89b0ce96a0 100644 --- a/pkgs/applications/misc/stag/default.nix +++ b/pkgs/applications/misc/stag/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = "https://github.com/seenaburns/stag"; - description = "Terminal streaming bar graph passed through stdin.; + description = "Terminal streaming bar graph passed through stdin"; license = stdenv.lib.licenses.bsdOriginal; # FIXME: waiting on PR #5773 for maintainer entry From 261f596335f371fbdc35e168578fff93f4f2d031 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 15 Jan 2015 18:38:51 +0100 Subject: [PATCH 072/185] Fixup: set maintainer --- pkgs/applications/misc/stag/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix index a89b0ce96a0..8856e5be52f 100644 --- a/pkgs/applications/misc/stag/default.nix +++ b/pkgs/applications/misc/stag/default.nix @@ -19,8 +19,6 @@ stdenv.mkDerivation { homepage = "https://github.com/seenaburns/stag"; description = "Terminal streaming bar graph passed through stdin"; license = stdenv.lib.licenses.bsdOriginal; - - # FIXME: waiting on PR #5773 for maintainer entry - #maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; + maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; }; } From f93ce4faf1d7660458dc73e50c4e5a1ae7d32e9b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 15 Jan 2015 17:32:58 +0100 Subject: [PATCH 073/185] haskell-configuration-common: remove redundant jailbreaks --- .../haskell-modules/configuration-common.nix | 30 +++---------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6cff2e9d3c5..fdebcef16fe 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -6,7 +6,7 @@ self: super: { # Some packages need a non-core version of Cabal. Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6; - Cabal_1_20_0_3 = doJailbreak (dontCheck super.Cabal_1_20_0_3); + Cabal_1_20_0_3 = dontCheck super.Cabal_1_20_0_3; Cabal_1_22_0_0 = dontCheck super.Cabal_1_22_0_0; cabal-install = dontCheck (super.cabal-install.override { Cabal = self.Cabal_1_22_0_0; }); @@ -31,10 +31,6 @@ self: super: { elm-make = super.elm-make.override { optparse-applicative = self.optparse-applicative_0_10_0; }; elm-package = super.elm-package.override { optparse-applicative = self.optparse-applicative_0_10_0; }; - # elm-compiler jail-break can be removed after next elm-compiler - # release: bumped language-ecmascript's limit in git already. - elm-compiler = doJailbreak super.elm-compiler; - # https://github.com/acid-state/safecopy/issues/17 safecopy = dontCheck super.safecopy; @@ -62,27 +58,12 @@ self: super: { # https://github.com/haskell/time/issues/23 time_1_5_0_1 = dontCheck super.time_1_5_0_1; - # Won't accept recent random: https://bitbucket.org/dafis/arithmoi/issue/14/outdated-dependency-on-random. - arithmoi = doJailbreak super.arithmoi; - # Doesn't accept modern versions of hashtable. - Agda = dontHaddock (doJailbreak super.Agda); + Agda = dontHaddock super.Agda; # Cannot compile its own test suite: https://github.com/haskell/network-uri/issues/10. network-uri = dontCheck super.network-uri; - # 0.7.0.2 doesn't accept recent versions of HaXml. - encoding = doJailbreak super.encoding; - - # Doesn't accept recent versions of vector-space. - active = doJailbreak super.active; - diagrams-core = doJailbreak super.diagrams-core; # https://github.com/diagrams/diagrams-core/issues/78 - diagrams-contrib = doJailbreak super.diagrams-contrib; - diagrams-lib = doJailbreak super.diagrams-lib; - diagrams-svg = doJailbreak super.diagrams-svg; - force-layout = doJailbreak super.force-layout; - vector-space-points = doJailbreak super.vector-space-points; - # The Haddock phase fails for one reason or another. attoparsec-conduit = dontHaddock super.attoparsec-conduit; blaze-builder-conduit = dontHaddock super.blaze-builder-conduit; @@ -118,9 +99,6 @@ self: super: { # https://github.com/techtangents/ablist/issues/1 ABList = dontCheck super.ABList; - # https://github.com/gcross/AbortT-transformers/issues/1 - AbortT-transformers = doJailbreak super.AbortT-transformers; - # Depends on broken NewBinary package. ASN1 = markBroken super.ASN1; @@ -137,14 +115,14 @@ self: super: { hbro-contrib = markBroken super.hbro-contrib; # https://github.com/prowdsponsor/fb/pull/33 - fb = doJailbreak (overrideCabal super.fb (drv: { + fb = overrideCabal super.fb (drv: { patches = [ (pkgs.fetchpatch { url = https://github.com/prowdsponsor/fb/pull/31.patch; sha256 = "0ip8mhpbbvlp4pz7d27d6cg39gm6ypfsf4rdmfrmdh3pkig0axls"; }) ]; - })); + }); # https://github.com/haskell/vector/issues/47 vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector; From b2a6fd605906f47922e71c3c0c8b51f01e26a70f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Jan 2015 22:00:42 +0300 Subject: [PATCH 074/185] yesod-pagination: add Haskell package --- .../haskell/yesod-pagination/default.nix | 24 +++++++++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/haskell/yesod-pagination/default.nix diff --git a/pkgs/development/libraries/haskell/yesod-pagination/default.nix b/pkgs/development/libraries/haskell/yesod-pagination/default.nix new file mode 100644 index 00000000000..38b89445cb7 --- /dev/null +++ b/pkgs/development/libraries/haskell/yesod-pagination/default.nix @@ -0,0 +1,24 @@ +# This file was auto-generated by cabal2nix. Please do NOT edit manually! + +{ cabal, esqueleto, hspec, monadLogger, persistent +, persistentSqlite, resourcePool, resourcet, shakespeare +, utf8String, waiTest, yesod, yesodTest +}: + +cabal.mkDerivation (self: { + pname = "yesod-pagination"; + version = "2.0.0"; + sha256 = "0d42b8y7zpl624d7wa2caarni9g10hg14xsbamlkykki3bl197m1"; + buildDepends = [ esqueleto yesod ]; + testDepends = [ + hspec monadLogger persistent persistentSqlite resourcePool + resourcet shakespeare utf8String waiTest yesod yesodTest + ]; + doCheck = false; + meta = { + homepage = "https://github.com/joelteon/yesod-pagination"; + description = "Pagination in Yesod"; + 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 c42be49dc41..71a2ab092e4 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -2997,6 +2997,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in yesodNewsfeed = callPackage ../development/libraries/haskell/yesod-newsfeed {}; + yesodPagination = callPackage ../development/libraries/haskell/yesod-pagination {}; + yesodPersistent = callPackage ../development/libraries/haskell/yesod-persistent {}; yesodRoutes = callPackage ../development/libraries/haskell/yesod-routes {}; From 2f32d8f848320db6834fdec16975f0830ac12d39 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 15 Jan 2015 21:03:32 +0100 Subject: [PATCH 075/185] Add netsniff-ng 0.5.9-rc4-40-g5107740: Linux networking toolkit --- pkgs/tools/networking/netsniff-ng/default.nix | 43 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/tools/networking/netsniff-ng/default.nix diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix new file mode 100644 index 00000000000..0fa4e2db229 --- /dev/null +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -0,0 +1,43 @@ +{ stdenv, fetchFromGitHub, bison, flex, geoip, libnet, libnetfilter_conntrack, libnl +, libpcap, liburcu, ncurses, perl, pkgconfig, which, zlib }: + +stdenv.mkDerivation rec { + version = "0.5.9-rc4-40-g5107740"; + name = "netsniff-ng-${version}"; + + src = fetchFromGitHub rec { # Upstream recommends and supports git + repo = "netsniff-ng"; + owner = repo; + rev = "5107740603d10feed6104afd75042970cb392843"; + sha256 = "1z3b7pa5rhz37dhfb1riy1j9lg917bs4z7clqbxm1hzi1x2ln988"; + }; + + # ./configure is not autoGNU but some home-brewn magic + preConfigure = "patchShebangs configure"; + postConfigure = "substituteInPlace Makefile --replace ' tput ' ' true '"; + + # FIXME: missing nacl/libcli and a *working* libnetfilter_conntrack + # The following tools will be missing: curvetun flowtop mausezahn + buildInputs = [ bison flex geoip libnet libnl libnetfilter_conntrack + libpcap liburcu ncurses perl pkgconfig which zlib ]; + + enableParallelBuilding = true; + + # Tries to install to /etc, but they're more like /share files anyway + makeFlags = "PREFIX=$(out) ETCDIR=$(out)/etc"; + + meta = with stdenv.lib; { + description = "Swiss army knife for daily Linux network plumbing"; + longDescription = '' + netsniff-ng is a free Linux networking toolkit. Its gain of performance + is reached by zero-copy mechanisms, so that on packet reception and + transmission the kernel does not need to copy packets from kernel space + to user space and vice versa. The toolkit can be used for network + development and analysis, debugging, auditing or network reconnaissance. + ''; + homepage = http://netsniff-ng.org/; + license = with licenses; gpl2; + platforms = with platforms; linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 895977fc4fa..f32a5a7ae87 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1633,6 +1633,8 @@ let netperf = callPackage ../applications/networking/netperf { }; + netsniff-ng = callPackage ../tools/networking/netsniff-ng { }; + ninka = callPackage ../development/tools/misc/ninka { }; nodejs = callPackage ../development/web/nodejs { }; From ed1ca3928dedf664bb33a34e9ec86aff07e76de1 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Thu, 15 Jan 2015 13:36:01 -0800 Subject: [PATCH 076/185] don't use cpphs by default on darwin --- pkgs/development/haskell-modules/generic-builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix index 7290bb947e1..c0c3be07df3 100644 --- a/pkgs/development/haskell-modules/generic-builder.nix +++ b/pkgs/development/haskell-modules/generic-builder.nix @@ -40,7 +40,7 @@ , checkPhase ? "", preCheck ? "", postCheck ? "" , preFixup ? "", postFixup ? "" , coreSetup ? false # Use only core packages to build Setup.hs. -, useCpphs ? stdenv.isDarwin +, useCpphs ? false }: assert pkgconfigDepends != [] -> pkgconfig != null; From ddc0d431154487490ce6018eef969d0578afae85 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 15 Jan 2015 22:20:42 +0100 Subject: [PATCH 077/185] Add package: ctodo --- pkgs/applications/misc/ctodo/default.nix | 27 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 +++++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/applications/misc/ctodo/default.nix diff --git a/pkgs/applications/misc/ctodo/default.nix b/pkgs/applications/misc/ctodo/default.nix new file mode 100644 index 00000000000..fbb1701dd22 --- /dev/null +++ b/pkgs/applications/misc/ctodo/default.nix @@ -0,0 +1,27 @@ +{ stdenv, cmake, fetchgit, ncurses }: + +let + version = "1.1"; +in +stdenv.mkDerivation { + name = "ctodo-${version}"; + + src = fetchgit { + url = "https://github.com/Acolarh/ctodo.git"; + rev = "de478f5028a1b167bfdb6dd4160d83d9ef7db839"; + sha256 = "3a43a6237e8fe5b37ca7d5abc88c20158f2cff1f8b98762c404e6f24d4b7993e"; + }; + + buildInputs = [ stdenv cmake ncurses ]; + + configurePhase = '' + cmake -DCMAKE_INSTALL_PREFIX=$out . + ''; + + meta = { + homepage = "http://ctodo.apakoh.dk/"; + description = "A simple ncurses-based task list manager."; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 895977fc4fa..bdb45620996 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4540,6 +4540,11 @@ let inherit pkgs ctags writeScriptBin; }; + ctodo = callPackage ../applications/misc/ctodo { + cmake = cmake; + ncurses = ncurses; + }; + cmake = callPackage ../development/tools/build-managers/cmake { }; cmake-3_0 = callPackage ../development/tools/build-managers/cmake/3.0.nix { }; From cbd1b0ec1f5e6252a225e18636afd62b2be7a9a9 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Thu, 15 Jan 2015 16:07:42 -0600 Subject: [PATCH 078/185] skalibs: update to 2.2.0.0 --- pkgs/development/libraries/skalibs/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/skalibs/default.nix b/pkgs/development/libraries/skalibs/default.nix index aaa7b3a3d26..67c1c74e6cf 100644 --- a/pkgs/development/libraries/skalibs/default.nix +++ b/pkgs/development/libraries/skalibs/default.nix @@ -1,20 +1,23 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchgit }: let - version = "2.0.0.0"; + version = "2.2.0.0"; in stdenv.mkDerivation rec { name = "skalibs-${version}"; - src = fetchurl { - url = "http://skarnet.org/software/skalibs/${name}.tar.gz"; - sha256 = "0cz30wqg8fnkwjlacs4s3sjs3l34sa91xgci95fmb187zhiq693n"; + src = fetchgit { + url = "git://git.skarnet.org/skalibs"; + rev = "refs/tags/v${version}"; + sha256 = "1ww45ygrws7h3p3p7y3blc5kzvvy5fmzb158ngfbdamf0pgc5vkn"; }; dontDisableStatic = true; + enableParallelBuilding = true; + configureFlags = [ "--enable-force-devr" # assume /dev/random works "--libdir=\${prefix}/lib" From c2f822489c399b5beddc4d9fe7240ad2b84f1404 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Thu, 15 Jan 2015 16:08:33 -0600 Subject: [PATCH 079/185] execline: update to 2.0.1.1 --- pkgs/tools/misc/execline/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/execline/default.nix b/pkgs/tools/misc/execline/default.nix index 96126233458..320115b4f2d 100644 --- a/pkgs/tools/misc/execline/default.nix +++ b/pkgs/tools/misc/execline/default.nix @@ -1,20 +1,23 @@ -{ stdenv, fetchurl, skalibs }: +{ stdenv, fetchgit, skalibs }: let - version = "2.0.0.0"; + version = "2.0.1.1"; in stdenv.mkDerivation rec { name = "execline-${version}"; - src = fetchurl { - url = "http://skarnet.org/software/execline/${name}.tar.gz"; - sha256 = "1g5v6icxsf7p2ccj9iq85iikkm12xph65ri86ydakihv6al3jw71"; + src = fetchgit { + url = "git://git.skarnet.org/execline"; + rev = "refs/tags/v${version}"; + sha256 = "06fn4fb8hp68pffgfc55l5raph3bk9v0gngbgxfyzkmwbb1gxhll"; }; dontDisableStatic = true; + enableParallelBuilding = true; + configureFlags = [ "--libdir=\${prefix}/lib" "--includedir=\${prefix}/include" From 50c746f983866559090068c039a0e74ed9c4c4af Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Thu, 15 Jan 2015 16:10:07 -0600 Subject: [PATCH 080/185] s6: update to 2.0.1.0 --- pkgs/servers/s6/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/s6/default.nix b/pkgs/servers/s6/default.nix index 32d219bf4aa..1452f82573e 100644 --- a/pkgs/servers/s6/default.nix +++ b/pkgs/servers/s6/default.nix @@ -1,20 +1,23 @@ -{ stdenv, execline, fetchurl, skalibs }: +{ stdenv, execline, fetchgit, skalibs }: let - version = "2.0.0.0"; + version = "2.0.1.0"; in stdenv.mkDerivation rec { name = "s6-${version}"; - src = fetchurl { - url = "http://www.skarnet.org/software/s6/${name}.tar.gz"; - sha256 = "14x4l3xp152c9v34zs7nzxzacizfpp0k0lzwh40rxm0w5wz4x0ls"; + src = fetchgit { + url = "git://git.skarnet.org/s6"; + rev = "refs/tags/v${version}"; + sha256 = "1x7za0b1a2i6xn06grpb5j361s9bl4524bp5mz3zcdg8s9nil50d"; }; dontDisableStatic = true; + enableParallelBuilding = true; + configureFlags = [ "--with-sysdeps=${skalibs}/lib/skalibs/sysdeps" "--with-include=${skalibs}/include" From ffed4e93bef0090c4df980f78887d64b998cb2bd Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Thu, 15 Jan 2015 16:11:20 -0600 Subject: [PATCH 081/185] s6-dns: update to 2.0.0.2 --- pkgs/tools/networking/s6-dns/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/s6-dns/default.nix b/pkgs/tools/networking/s6-dns/default.nix index 4dae1a1c8c3..2339ac5ff05 100644 --- a/pkgs/tools/networking/s6-dns/default.nix +++ b/pkgs/tools/networking/s6-dns/default.nix @@ -1,20 +1,23 @@ -{ stdenv, fetchurl, skalibs }: +{ stdenv, fetchgit, skalibs }: let - version = "2.0.0.0"; + version = "2.0.0.2"; in stdenv.mkDerivation rec { name = "s6-dns-${version}"; - src = fetchurl { - url = "http://www.skarnet.org/software/s6-dns/${name}.tar.gz"; - sha256 = "07k6rzgsgcxr0bq209as79sjn2nrcjj9mlmk9vvy1hvsag0xnkcq"; + src = fetchgit { + url = "git://git.skarnet.org/s6-dns"; + rev = "refs/tags/v${version}"; + sha256 = "0y76gvgvg2y3hhr3pk2nkki1idjj6sxxcnvd29yd79v0419p2dl3"; }; dontDisableStatic = true; + enableParallelBuilding = true; + configureFlags = [ "--includedir=\${prefix}/include" "--libdir=\${prefix}/lib" From 1459600c36bc4e85e5a43bc1f9b25b8c92717e0a Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Thu, 15 Jan 2015 16:11:58 -0600 Subject: [PATCH 082/185] s6-networking: update to 2.0.1.0 --- pkgs/tools/networking/s6-networking/default.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/s6-networking/default.nix b/pkgs/tools/networking/s6-networking/default.nix index 09d9e722245..e8857e35e67 100644 --- a/pkgs/tools/networking/s6-networking/default.nix +++ b/pkgs/tools/networking/s6-networking/default.nix @@ -1,30 +1,36 @@ -{ stdenv, execline, fetchurl, s6Dns, skalibs }: +{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }: let - version = "2.0.0.0"; + version = "2.0.1.0"; in stdenv.mkDerivation rec { name = "s6-networking-${version}"; - src = fetchurl { - url = "http://www.skarnet.org/software/s6-networking/${name}.tar.gz"; - sha256 = "0k2i0g5lsvh1gz90ixwdip1pngj9vd45d4fpmdg075vd8zhh7j37"; + src = fetchgit { + url = "git://git.skarnet.org/s6-networking"; + rev = "refs/tags/v${version}"; + sha256 = "1q094x8x99cy0kkq74kfw1rd9kmp6ynpz9ahx0lviz05n9paq7ya"; }; dontDisableStatic = true; + enableParallelBuilding = true; + configureFlags = [ "--with-sysdeps=${skalibs}/lib/skalibs/sysdeps" "--with-include=${skalibs}/include" "--with-include=${execline}/include" + "--with-include=${s6}/include" "--with-include=${s6Dns}/include" "--with-lib=${skalibs}/lib" "--with-lib=${execline}/lib" + "--with-lib=${s6}/lib" "--with-lib=${s6Dns}/lib" "--with-dynlib=${skalibs}/lib" "--with-dynlib=${execline}/lib" + "--with-dynlib=${s6}/lib" "--with-dynlib=${s6Dns}/lib" ]; From 415b32311f1f35e1cca63735ed093d2b5a7ae1a9 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Thu, 15 Jan 2015 22:40:21 +0000 Subject: [PATCH 083/185] hackage-packages.nix: re-generate from Hackage 2015-01-15T22:40:10+00:00 --- .../haskell-modules/configuration-common.nix | 10 -------- .../haskell-modules/hackage-packages.nix | 25 +++++++++++-------- 2 files changed, 15 insertions(+), 20 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index fdebcef16fe..c32778e4f43 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -114,16 +114,6 @@ self: super: { # depends on broken hbro package. hbro-contrib = markBroken super.hbro-contrib; - # https://github.com/prowdsponsor/fb/pull/33 - fb = overrideCabal super.fb (drv: { - patches = [ - (pkgs.fetchpatch { - url = https://github.com/prowdsponsor/fb/pull/31.patch; - sha256 = "0ip8mhpbbvlp4pz7d27d6cg39gm6ypfsf4rdmfrmdh3pkig0axls"; - }) - ]; - }); - # https://github.com/haskell/vector/issues/47 vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 740821b9855..3900cc76cd9 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -8826,6 +8826,7 @@ self: { pname = "List"; version = "0.5.1"; sha256 = "1hgkal8jh035bs0z6z8i899dc0888fhdx8940y27aaxxbmlzfy1p"; + editedCabalFile = "0fce39feed0d5ae7ea041b886d5440e288b705212b1869beec6419b9c0ca9982"; buildDepends = [ base transformers ]; homepage = "http://github.com/yairchu/generator/tree"; description = "List monad transformer and class"; @@ -11535,6 +11536,7 @@ self: { pname = "RSA"; version = "2.1.0"; sha256 = "0bhnnz7vp1942ac2vg0y6vsag9bm0pslnm4ix6lmw28hy6d1jk2a"; + editedCabalFile = "a6367228c6ecf3abc4a43225058ed9e86dc291849e943ce1f1ef5527c1ecba07"; buildDepends = [ base binary bytestring crypto-api crypto-pubkey-types pureMD5 SHA ]; @@ -18947,6 +18949,7 @@ self: { pname = "asn1-data"; version = "0.7.1"; sha256 = "10s7mxygw6w8a8mx090msvbl8pji8m68lsxxyr5bp7p887naia7r"; + editedCabalFile = "6c8f01076a88b9ea0f2ce9b5fa2b09dc658332bd4dedfbc8d6e7fae25ea5ed1f"; isLibrary = true; isExecutable = true; buildDepends = [ base bytestring cereal mtl text ]; @@ -29123,6 +29126,7 @@ self: { hackage-db machines machines-directory MissingH monad-loops process tar text transformers yaml zlib ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/codex"; description = "A ctags file generator for cabal project dependencies"; license = stdenv.lib.licenses.asl20; @@ -32368,6 +32372,7 @@ self: { pname = "crypto-numbers"; version = "0.2.7"; sha256 = "19l9y5jzvqrqfam13xin9m9ca0s5ql86yv0cjn6dzkydx4byn2j2"; + editedCabalFile = "2b493386b7605b70a67f751d6496e9feff8ef319a5294b122a3ff3895a8453ca"; buildDepends = [ base bytestring crypto-random ghc-prim integer-gmp vector ]; @@ -42232,8 +42237,8 @@ self: { }: mkDerivation { pname = "fb"; - version = "1.0.7"; - sha256 = "0ghyddxf4aqidqvbm93pjgaban0whfj4y1w11b7nxy89srhyjhh8"; + version = "1.0.8"; + sha256 = "1cv722kkp6lbxajv3ka4088x2491yy41cfypqqkq753mm59x6s9m"; buildDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bytestring cereal conduit conduit-extra crypto-api cryptohash @@ -50548,8 +50553,8 @@ self: { }: mkDerivation { pname = "hackage-db"; - version = "1.11"; - sha256 = "14jjy3i5pjdcw2cx3n5ipg72zahvy9vh87vlcgnz44slw8av6dcq"; + version = "1.22"; + sha256 = "0rhh7w4929zkwzv10ika952yiw4dkffqd8f79f1bl76lz1la6cjd"; buildDepends = [ base bytestring Cabal containers directory filepath tar utf8-string ]; @@ -62246,8 +62251,8 @@ self: { }: mkDerivation { pname = "hspec-server"; - version = "0.3.2"; - sha256 = "1q77inw8xrnpl14rwvpv0q1ci6axblcx45wi5b72hnchk7ay5a6x"; + version = "0.4.0"; + sha256 = "0spbg4nsmqr16pcl20kwgflw359lavpqg1gbngb4q3vb5mnzkfcw"; buildDepends = [ base containers hspec hspec-core hspec-expectations HUnit process regex-posix temporary transformers @@ -69653,8 +69658,8 @@ self: { ({ mkDerivation, base, dlist, transformers }: mkDerivation { pname = "kure"; - version = "2.16.4"; - sha256 = "07qd3qhdwsi4hxlijnhqsziprsl3zmhj9271ha6iy79zcapwvpax"; + version = "2.16.6"; + sha256 = "14r28h3pywv87ksnw65jid90v2d3s4lzxm0m7i6wvww5080z804a"; buildDepends = [ base dlist transformers ]; homepage = "http://www.ittc.ku.edu/csdl/fpg/software/kure.html"; description = "Combinators for Strategic Programming"; @@ -89177,8 +89182,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "1.2.1"; - sha256 = "0kpvlm4qj7i2zx427rymk20lfxy3ljhc6y9qwhqxsbxg0aka25nj"; + version = "1.3.2"; + sha256 = "02cfs90kfpk09njhx45bfms90350my7j4wcf1yyzfszlkpfn3mmc"; isLibrary = true; isExecutable = true; buildDepends = [ From 1f28bfa2849239c1cdc643c1df80c20f3908f474 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Thu, 15 Jan 2015 17:13:02 +0100 Subject: [PATCH 084/185] grsecurity: Update stable and test patches stable: 3.0-3.14.28-201501120819 -> 3.0-3.14.28-201501142323 test: 3.0-3.18.2-201501120821 -> 3.0-3.18.2-201501142325 --- pkgs/os-specific/linux/kernel/patches.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index f712d57c8f0..c0a94ed2e76 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -66,16 +66,16 @@ rec { grsecurity_stable = grsecPatch { kversion = "3.14.28"; - revision = "201501120819"; + revision = "201501142323"; branch = "stable"; - sha256 = "0ipgaifbbzn75kmkrrvq3rfijdddanivq1lidrc3gc4aclblnzs8"; + sha256 = "0wvksk3fbs4cd7lxmbgw8iq5rm2rggc2rx526nina71vjwr42j2m"; }; grsecurity_unstable = grsecPatch { kversion = "3.18.2"; - revision = "201501120821"; + revision = "201501142325"; branch = "test"; - sha256 = "146vy632wvjlnnvbh3kc7pssz71x0zdgwglpk1i68pm8rnq4awig"; + sha256 = "1szr3y876rllyw3dbw450cc3gz67ysfdxmdggaig31z470w9pikh"; }; grsec_fix_path = From 65522d05d4bcd701af0d1f2cc882269dc379ce06 Mon Sep 17 00:00:00 2001 From: Daniel Peebles Date: Thu, 15 Jan 2015 22:47:47 -0500 Subject: [PATCH 085/185] Turn nixUnstable back on --- pkgs/tools/package-management/nix/unstable.nix | 6 +++--- pkgs/top-level/all-packages.nix | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/package-management/nix/unstable.nix b/pkgs/tools/package-management/nix/unstable.nix index 91c35b59964..251ff5b220c 100644 --- a/pkgs/tools/package-management/nix/unstable.nix +++ b/pkgs/tools/package-management/nix/unstable.nix @@ -5,11 +5,11 @@ }: stdenv.mkDerivation rec { - name = "nix-1.8pre3919_f43a8ed"; + name = "nix-1.9pre4020_f6716e9"; src = fetchurl { - url = http://hydra.nixos.org/build/17676230/download/4/nix-1.8pre3919_f43a8ed.tar.xz; - sha256 = "6837adca17a1571fb82f7db0f21230577ff5d3d9b2a5ae1e465862033c6fded4"; + url = "http://hydra.nixos.org/build/18780017/download/4/${name}.tar.xz"; + sha256 = "0jki14yxwv1f33fqkd1bi8bpxafkzjv8yixiwnw8nkhx074sipsn"; }; nativeBuildInputs = [ perl pkgconfig ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 895977fc4fa..c6588aea9c0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12838,13 +12838,10 @@ let stateDir = config.nix.stateDir or "/nix/var"; }; - /* nixUnstable = callPackage ../tools/package-management/nix/unstable.nix { storeDir = config.nix.storeDir or "/nix/store"; stateDir = config.nix.stateDir or "/nix/var"; }; - */ - nixUnstable = nixStable; nixops = callPackage ../tools/package-management/nixops { }; From db85ee9e7772c3b56ed327588b34308ddf54743d Mon Sep 17 00:00:00 2001 From: Cray Elliott Date: Thu, 15 Jan 2015 21:04:00 -0800 Subject: [PATCH 086/185] Add haskellngPackages.cabal2nix missing dependencies added QuickCheck, deepseq-generics and hspec --- pkgs/development/haskell-modules/configuration-common.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c32778e4f43..7fd4ec1b333 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -131,9 +131,10 @@ self: super: { isLibrary = false; isExecutable = true; buildDepends = with self; [ - aeson base bytestring Cabal containers deepseq directory filepath - hackage-db monad-par monad-par-extras mtl pretty process - regex-posix SHA split transformers utf8-string + aeson base bytestring Cabal containers deepseq deepseq-generics + directory filepath hackage-db hspec monad-par monad-par-extras + mtl pretty process regex-posix SHA split transformers + utf8-string QuickCheck ]; testDepends = with self; [ base doctest ]; homepage = "http://github.com/NixOS/cabal2nix"; From ce8651ba1eef716d14a7867317712ec5eade231a Mon Sep 17 00:00:00 2001 From: Renzo Carbonara Date: Fri, 16 Jan 2015 02:59:39 -0300 Subject: [PATCH 087/185] Add package xbrightness xbrightness allows controlling by software the screen gamma and brigthness settings for individual color channels. --- pkgs/tools/X11/xbrightness/builder.sh | 16 +++++++++++++++ pkgs/tools/X11/xbrightness/default.nix | 27 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 45 insertions(+) create mode 100644 pkgs/tools/X11/xbrightness/builder.sh create mode 100644 pkgs/tools/X11/xbrightness/default.nix diff --git a/pkgs/tools/X11/xbrightness/builder.sh b/pkgs/tools/X11/xbrightness/builder.sh new file mode 100644 index 00000000000..f40ea002991 --- /dev/null +++ b/pkgs/tools/X11/xbrightness/builder.sh @@ -0,0 +1,16 @@ +source $stdenv/setup + +configurePhase() { + xmkmf +} + +buildPhase() { + make $makeFlags +} + +installPhase() { + make install BINDIR=$out/bin + make install.man MANPATH=$out/share/man +} + +genericBuild diff --git a/pkgs/tools/X11/xbrightness/default.nix b/pkgs/tools/X11/xbrightness/default.nix new file mode 100644 index 00000000000..9701a759656 --- /dev/null +++ b/pkgs/tools/X11/xbrightness/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, x11, xlibs }: + +stdenv.mkDerivation { + + name = "xbrightness-0.3-mika-akk"; + builder = ./builder.sh; + src = fetchurl { + url = http://shallowsky.com/software/xbrightness/xbrightness-0.3-mika-akk.tar.gz; + sha256 = "2564dbd393544657cdabe4cbf535d9cfb9abe8edddb1b8cdb1ed4d12f358626e"; + }; + + buildInputs = [ + xlibs.imake + xlibs.libX11 + xlibs.libXaw + xlibs.libXext + xlibs.libXmu + xlibs.libXpm + xlibs.libXxf86vm + ]; + + meta = { + description = "X11 brigthness and gamma software control"; + homepage = http://shallowsky.com/software; + license = stdenv.lib.licenses.mit; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c6588aea9c0..f5a43e456a3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2808,6 +2808,8 @@ let xarchiver = callPackage ../tools/archivers/xarchiver { }; + xbrightness = callPackage ../tools/X11/xbrightness { }; + xcruiser = callPackage ../applications/misc/xcruiser { }; unarj = callPackage ../tools/archivers/unarj { }; From 4361a7a597441ada24399896beb94dbe563f465f Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 16 Jan 2015 08:51:22 +0100 Subject: [PATCH 088/185] couchdb: fix build --- pkgs/servers/http/couchdb/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/servers/http/couchdb/default.nix b/pkgs/servers/http/couchdb/default.nix index 0e714617544..54412d2ab40 100644 --- a/pkgs/servers/http/couchdb/default.nix +++ b/pkgs/servers/http/couchdb/default.nix @@ -13,6 +13,18 @@ stdenv.mkDerivation rec { buildInputs = [ erlang icu openssl spidermonkey curl help2man sphinx which file pkgconfig ]; + /* This patch removes the `-Werror` flag as there are warnings due to + * _BSD_SOURCE being deprecated in glibc >= 2.20 + */ + patchPhase = '' + patch src/couchdb/priv/Makefile.in < couchjs_CFLAGS = -g -Wall -D_BSD_SOURCE \$(CURL_CFLAGS) \$(JS_CFLAGS) + EOF + ''; + postInstall = '' sed -i -e "s|\`getopt|\`${getopt}/bin/getopt|" $out/bin/couchdb ''; From 1e0d2a96b393a32d6a1997e3274238a255f59e5c Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 16 Jan 2015 12:18:14 +0300 Subject: [PATCH 089/185] Bump allowed Firefox version for SlimerJS again, and with some reserve... --- pkgs/development/tools/slimerjs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/slimerjs/default.nix b/pkgs/development/tools/slimerjs/default.nix index fd3f48b8b82..67a70b42bc4 100644 --- a/pkgs/development/tools/slimerjs/default.nix +++ b/pkgs/development/tools/slimerjs/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { echo 'export SLIMERJSLAUNCHER=${firefox}/bin/firefox' >> "$out/bin/slimerjs" echo "'$out/lib/slimerjs/slimerjs' \"\$@\"" >> "$out/bin/slimerjs" chmod a+x "$out/bin/slimerjs" - sed -e 's@MaxVersion=32[.]@MaxVersion=33.@' -i "$out/lib/slimerjs/application.ini" + sed -e 's@MaxVersion=3[0-9][.]@MaxVersion=40.@' -i "$out/lib/slimerjs/application.ini" ''; meta = { inherit (s) version; From 2bdfa515c977ed60cc1dcf2c27945f6c4df35ffc Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Fri, 16 Jan 2015 10:30:08 +0100 Subject: [PATCH 090/185] Update backintime to 1.1.0 This release removed the Gnome UI to only keep the Qt4 one. --- .../networking/sync/backintime/common.nix | 16 +++----- .../networking/sync/backintime/gnome.nix | 37 ------------------- .../networking/sync/backintime/qt4.nix | 25 +++++++++++++ pkgs/top-level/all-packages.nix | 4 +- 4 files changed, 33 insertions(+), 49 deletions(-) delete mode 100644 pkgs/applications/networking/sync/backintime/gnome.nix create mode 100644 pkgs/applications/networking/sync/backintime/qt4.nix diff --git a/pkgs/applications/networking/sync/backintime/common.nix b/pkgs/applications/networking/sync/backintime/common.nix index fa722747e5f..e77fc5a522a 100644 --- a/pkgs/applications/networking/sync/backintime/common.nix +++ b/pkgs/applications/networking/sync/backintime/common.nix @@ -1,20 +1,16 @@ -{stdenv, fetchurl, makeWrapper, gettext, python2, python2Packages }: +{stdenv, fetchurl, makeWrapper, gettext, python3, python3Packages, rsync, cron, openssh, sshfsFuse, encfs }: stdenv.mkDerivation rec { - version = "1.0.36"; + version = "1.1.0"; name = "backintime-common-${version}"; src = fetchurl { - url = "https://launchpad.net/backintime/1.0/${version}/+download/backintime-${version}.tar.gz"; - md5 = "28630bc7bd5f663ba8fcfb9ca6a742d8"; + url = "https://launchpad.net/backintime/1.1/${version}/+download/backintime-${version}.tar.gz"; + md5 = "21e15538c38d0c440c1281457319c7f1"; }; - # because upstream tarball has no top-level directory. - # https://bugs.launchpad.net/backintime/+bug/1359076 - sourceRoot = "."; - - buildInputs = [ makeWrapper gettext python2 python2Packages.dbus ]; + buildInputs = [ makeWrapper gettext python3 python3Packages.dbus python3Packages.keyring openssh cron rsync sshfsFuse encfs ]; installFlags = [ "DEST=$(out)" ]; @@ -43,4 +39,4 @@ stdenv.mkDerivation rec { done by taking snapshots of a specified set of directories. ''; }; -} \ No newline at end of file +} diff --git a/pkgs/applications/networking/sync/backintime/gnome.nix b/pkgs/applications/networking/sync/backintime/gnome.nix deleted file mode 100644 index 56d0f6c5481..00000000000 --- a/pkgs/applications/networking/sync/backintime/gnome.nix +++ /dev/null @@ -1,37 +0,0 @@ -{stdenv, fetchurl, makeWrapper, gettext, python2, python2Packages, gnome2, pkgconfig, pygobject, glib, libtool, backintime-common }: - -stdenv.mkDerivation rec { - inherit (backintime-common) version src sourceRoot installFlags meta; - - name = "backintime-gnome-${version}"; - - buildInputs = [ makeWrapper gettext python2 python2Packages.dbus backintime-common python2Packages.pygtk python2Packages.notify gnome2.gnome_python ]; - - preConfigure = "cd gnome"; - configureFlags = [ "--no-check" ]; - - preFixup = - '' - # Make sure all Python files refer to $prefix/share/backintime - # instead of config.get_app_path() which returns the path of the - # 'common' module, not the path of the 'gnome' module. - filelist=$(mktemp) - find "$out/share/backintime/gnome" -name "*.py" -print0 > $filelist - while IFS="" read -r -d "" file <&9; do - substituteInPlace "$file" \ - --replace "glade_file = os.path.join(config.get_app_path()," \ - "glade_file = os.path.join('$prefix/share/backintime'," \ - --replace "glade_file = os.path.join(self.config.get_app_path()," \ - "glade_file = os.path.join('$prefix/share/backintime'," - done 9< "$filelist" - rm "$filelist" - - substituteInPlace "$out/bin/backintime-gnome" \ - --replace "=\"/usr/share" "=\"$prefix/share" - - wrapProgram "$out/bin/backintime-gnome" \ - --prefix PYTHONPATH : "${gnome2.gnome_python}/lib/python2.7/site-packages/gtk-2.0:${backintime-common}/share/backintime/common:$PYTHONPATH" \ - --prefix PATH : "${backintime-common}/bin:$PATH" - ''; - -} diff --git a/pkgs/applications/networking/sync/backintime/qt4.nix b/pkgs/applications/networking/sync/backintime/qt4.nix new file mode 100644 index 00000000000..67d521d272a --- /dev/null +++ b/pkgs/applications/networking/sync/backintime/qt4.nix @@ -0,0 +1,25 @@ +{stdenv, fetchurl, makeWrapper, gettext, pkgconfig, libtool, backintime-common, python3, python3Packages }: + +stdenv.mkDerivation rec { + inherit (backintime-common) version src installFlags meta; + + name = "backintime-gnome-${version}"; + + buildInputs = [ makeWrapper gettext python3 python3Packages.pyqt4 backintime-common python3 ]; + + preConfigure = "cd qt4"; + configureFlags = [ ]; + + dontAddPrefix = true; + + preFixup = + '' + substituteInPlace "$out/bin/backintime-qt4" \ + --replace "=\"/usr/share" "=\"$prefix/share" + + wrapProgram "$out/bin/backintime-qt4" \ + --prefix PYTHONPATH : "${backintime-common}/share/backintime/common:$PYTHONPATH" \ + --prefix PATH : "${backintime-common}/bin:$PATH" + ''; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 66dba26f70c..3e6bcb2a982 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9279,9 +9279,9 @@ let backintime-common = callPackage ../applications/networking/sync/backintime/common.nix { }; - backintime-gnome = callPackage ../applications/networking/sync/backintime/gnome.nix { }; + backintime-qt4 = callPackage ../applications/networking/sync/backintime/qt4.nix { }; - backintime = backintime-gnome; + backintime = backintime-qt4; bar = callPackage ../applications/window-managers/bar { }; From 76583470c5e7ee1c6951475e3aaff1266c38f717 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 16 Jan 2015 11:32:12 +0100 Subject: [PATCH 091/185] Fixup: Remove x=x lines in all-packages.nix --- pkgs/top-level/all-packages.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bdb45620996..f2b345c084f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4540,10 +4540,7 @@ let inherit pkgs ctags writeScriptBin; }; - ctodo = callPackage ../applications/misc/ctodo { - cmake = cmake; - ncurses = ncurses; - }; + ctodo = callPackage ../applications/misc/ctodo { }; cmake = callPackage ../development/tools/build-managers/cmake { }; From a7024cb4b48560980e657f64242ae60c626e60e5 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Thu, 11 Dec 2014 13:27:29 +0100 Subject: [PATCH 092/185] Create a nixos module for cups-browsed --- nixos/modules/services/printing/cupsd.nix | 32 ++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index bb3bf2519d4..679aa81a13d 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -4,7 +4,7 @@ with lib; let - inherit (pkgs) cups; + inherit (pkgs) cups cups_filters; cfg = config.services.printing; @@ -123,6 +123,19 @@ in ''; }; + browsedConf = mkOption { + type = types.lines; + default = ""; + example = + '' + BrowsePoll cups.example.com + ''; + description = '' + The contents of the configuration. file of the CUPS Browsed daemon + (cups-browsed.conf) + ''; + }; + drivers = mkOption { type = types.listOf types.path; example = literalExample "[ pkgs.splix ]"; @@ -161,6 +174,7 @@ in environment.etc."cups/client.conf".text = cfg.clientConf; environment.etc."cups/cups-files.conf".text = cfg.cupsFilesConf; environment.etc."cups/cupsd.conf".text = cfg.cupsdConf; + environment.etc."cups/cups-browsed.conf".text = cfg.browsedConf; services.dbus.packages = [ cups ]; @@ -195,6 +209,22 @@ in ]; }; + systemd.services.cups-browsed = + { description = "Make remote CUPS printers available locally"; + + wantedBy = [ "multi-user.target" ]; + wants = [ "cups.service" "avahi-daemon.service" ]; + after = [ "cups.service" "avahi-daemon.service" ]; + + path = [ cups ]; + + serviceConfig.ExecStart = "${cups_filters}/bin/cups-browsed"; + + restartTriggers = + [ config.environment.etc."cups/cups-browsed.conf".source + ]; + }; + services.printing.drivers = [ cups pkgs.ghostscript pkgs.cups_filters additionalBackends pkgs.perl pkgs.coreutils pkgs.gnused pkgs.bc pkgs.gawk pkgs.gnugrep From ef92f1094a33a290bd95cb08fcd1b7efad1bdaa1 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 16 Jan 2015 14:25:17 +0100 Subject: [PATCH 093/185] Python27.zope_testrunner: disable test Tests fails due to `python-subunit` not found --- 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 1da52a6c0a7..85e308bc9dc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11604,7 +11604,7 @@ let propagatedBuildInputs = with self; [ zope_interface zope_exceptions zope_testing six ] ++ optional (!python.is_py3k or false) subunit; - doCheck = true; + doCheck = !isPy27; meta = { description = "A flexible test runner with layer support"; From f3f06fc1ccf9e8df07349483ea60f5266eba23c9 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 16 Jan 2015 17:17:35 +0100 Subject: [PATCH 094/185] Fixup: Use archive instead of git clone --- pkgs/applications/misc/ctodo/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/ctodo/default.nix b/pkgs/applications/misc/ctodo/default.nix index fbb1701dd22..a6cac37e8ee 100644 --- a/pkgs/applications/misc/ctodo/default.nix +++ b/pkgs/applications/misc/ctodo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, cmake, fetchgit, ncurses }: +{ stdenv, cmake, fetchurl, ncurses }: let version = "1.1"; @@ -6,10 +6,9 @@ in stdenv.mkDerivation { name = "ctodo-${version}"; - src = fetchgit { - url = "https://github.com/Acolarh/ctodo.git"; - rev = "de478f5028a1b167bfdb6dd4160d83d9ef7db839"; - sha256 = "3a43a6237e8fe5b37ca7d5abc88c20158f2cff1f8b98762c404e6f24d4b7993e"; + src = fetchurl { + url = "https://github.com/Acolarh/ctodo/archive/v1.1.tar.gz"; + sha256 = "1sv5p1b08pp73qshakz4qy4pjglxz2pvx2cjfx52i3532hd3xcaf"; }; buildInputs = [ stdenv cmake ncurses ]; From 91e4ef34887063a4457ad1ad8bf643231be404d3 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 16 Jan 2015 17:18:06 +0100 Subject: [PATCH 095/185] Fixup: Add platform --- pkgs/applications/misc/ctodo/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/ctodo/default.nix b/pkgs/applications/misc/ctodo/default.nix index a6cac37e8ee..3978a369d06 100644 --- a/pkgs/applications/misc/ctodo/default.nix +++ b/pkgs/applications/misc/ctodo/default.nix @@ -22,5 +22,6 @@ stdenv.mkDerivation { description = "A simple ncurses-based task list manager."; license = stdenv.lib.licenses.mit; maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; + platforms = stdenv.lib.platforms.linux; }; } From d47bec44e688bc3aff9094ab13e5956f3d7588a8 Mon Sep 17 00:00:00 2001 From: vi Date: Fri, 16 Jan 2015 18:00:49 +0000 Subject: [PATCH 096/185] ZNC: added "privmsg" module. --- pkgs/applications/networking/znc/modules.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index 478900bae4c..9836d1fbb3b 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -53,4 +53,21 @@ in rec { }; }; + privmsg = zncDerivation rec { + name = "znc-privmsg-c9f98690be"; + module_name = "privmsg"; + + src = fetchgit { + url = meta.repositories.git; + rev = "c9f98690beb4e3a7681468d5421ff11dc8e1ee8b"; + sha256 = "dfeb28878b12b98141ab204191288cb4c3f7df153a01391ebf6ed6a32007247f"; + }; + + meta = { + description = "ZNC privmsg module"; + homepage = https://github.com/kylef/znc-contrib; + repositories.git = https://github.com/kylef/znc-contrib.git; + }; + }; + } From 39746cb02d4657d896f7ec9b420082baaf9d720e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Jan 2015 10:08:16 +0100 Subject: [PATCH 097/185] haskell-ChasingBottems: fix build with GHC 7.6.x --- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index 78ee237fd8d..d1c919a03dc 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -46,4 +46,7 @@ self: super: { # Needs Cabal >= 1.18.x. jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + # Haddock chokes on the prologue from the cabal file. + ChasingBottoms = dontHaddock super.ChasingBottoms; + } From 08c3f2bc05827ff3f7366b588e7d10da2b9ca8e7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Jan 2015 23:23:23 +0100 Subject: [PATCH 098/185] pkgs/top-level/release.nix: build all versions of GHC on their supported platforms --- pkgs/top-level/release.nix | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 0a9030f8e50..47026336403 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -270,29 +270,7 @@ let gnome_vfs = linux; }; - haskellPackages_ghc6104 = { - ghc = ghcSupported; - }; - - haskellPackages_ghc6123 = { - ghc = ghcSupported; - }; - - haskellPackages_ghc704 = { - ghc = ghcSupported; - }; - - haskellPackages_ghc722 = { - ghc = ghcSupported; - }; - - haskellPackages_ghc742 = { - ghc = ghcSupported; - }; - - haskellPackages_ghc763 = { - ghc = ghcSupported; - }; + haskell-ng.compiler = packagesWithMetaPlatform pkgs.haskell-ng.compiler; strategoPackages = { sdf = linux; From 11e3503f1039f6c28a03d512aaa68979af4a6bce Mon Sep 17 00:00:00 2001 From: Renzo Carbonara Date: Fri, 16 Jan 2015 20:23:44 -0300 Subject: [PATCH 099/185] Improve packaging of xbrightness --- pkgs/tools/X11/xbrightness/builder.sh | 16 ---------------- pkgs/tools/X11/xbrightness/default.nix | 8 +++++++- 2 files changed, 7 insertions(+), 17 deletions(-) delete mode 100644 pkgs/tools/X11/xbrightness/builder.sh diff --git a/pkgs/tools/X11/xbrightness/builder.sh b/pkgs/tools/X11/xbrightness/builder.sh deleted file mode 100644 index f40ea002991..00000000000 --- a/pkgs/tools/X11/xbrightness/builder.sh +++ /dev/null @@ -1,16 +0,0 @@ -source $stdenv/setup - -configurePhase() { - xmkmf -} - -buildPhase() { - make $makeFlags -} - -installPhase() { - make install BINDIR=$out/bin - make install.man MANPATH=$out/share/man -} - -genericBuild diff --git a/pkgs/tools/X11/xbrightness/default.nix b/pkgs/tools/X11/xbrightness/default.nix index 9701a759656..9b7094cb1c7 100644 --- a/pkgs/tools/X11/xbrightness/default.nix +++ b/pkgs/tools/X11/xbrightness/default.nix @@ -3,7 +3,6 @@ stdenv.mkDerivation { name = "xbrightness-0.3-mika-akk"; - builder = ./builder.sh; src = fetchurl { url = http://shallowsky.com/software/xbrightness/xbrightness-0.3-mika-akk.tar.gz; sha256 = "2564dbd393544657cdabe4cbf535d9cfb9abe8edddb1b8cdb1ed4d12f358626e"; @@ -19,6 +18,13 @@ stdenv.mkDerivation { xlibs.libXxf86vm ]; + configurePhase = "xmkmf"; + + installPhase = '' + make install BINDIR=$out/bin + make install.man MANPATH=$out/share/man + ''; + meta = { description = "X11 brigthness and gamma software control"; homepage = http://shallowsky.com/software; From a8507494479c664e994bfd52bbe5c2daf8865efa Mon Sep 17 00:00:00 2001 From: Renzo Carbonara Date: Fri, 16 Jan 2015 20:37:22 -0300 Subject: [PATCH 100/185] xbrightness: remove unnecessary x11 parameter --- pkgs/tools/X11/xbrightness/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/X11/xbrightness/default.nix b/pkgs/tools/X11/xbrightness/default.nix index 9b7094cb1c7..cb10718a11b 100644 --- a/pkgs/tools/X11/xbrightness/default.nix +++ b/pkgs/tools/X11/xbrightness/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, x11, xlibs }: +{ stdenv, fetchurl, xlibs }: stdenv.mkDerivation { From 44c342441482a5b195c799db923a97969789bd4a Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sat, 17 Jan 2015 00:46:38 +0100 Subject: [PATCH 101/185] Add package for the 'open-dyslexic' font. --- pkgs/data/fonts/open-dyslexic/default.nix | 30 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/data/fonts/open-dyslexic/default.nix diff --git a/pkgs/data/fonts/open-dyslexic/default.nix b/pkgs/data/fonts/open-dyslexic/default.nix new file mode 100644 index 00000000000..5d9bb584360 --- /dev/null +++ b/pkgs/data/fonts/open-dyslexic/default.nix @@ -0,0 +1,30 @@ +{stdenv, fetchgit}: + +stdenv.mkDerivation rec { + name = "open-dyslexic-${version}"; + version = "2014-11-11"; + + src = fetchgit { + url = "https://github.com/antijingoist/open-dyslexic.git"; + rev = "f4b5ba89018b44d633608907e15f93fb3fabbabc"; + sha256 = "04pa7c2cary6pqxsmxqrg7wi19szg7xh8panmvqvmc7jas0mzg6q"; + }; + + phases = ["unpackPhase" "installPhase"]; + + installPhase = '' + mkdir -p $out/share/fonts/opentype + cp -v 'otf/'*.otf $out/share/fonts/opentype + + mkdir -p $out/share/doc/open-dyslexic + cp -v README.md $out/share/doc/open-dyslexic + ''; + + meta = with stdenv.lib; { + homepage = http://opendyslexic.org/; + description = "Font created to increase readability for readers with dyslexia"; + license = "Bitstream Vera License (http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts)"; + platforms = platforms.all; + maintainers = [maintainers.rycee]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0faa1916051..1b2bbe6456b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9145,6 +9145,8 @@ let oldstandard = callPackage ../data/fonts/oldstandard { }; + open-dyslexic = callPackage ../data/fonts/open-dyslexic { }; + opensans-ttf = callPackage ../data/fonts/opensans-ttf { }; poly = callPackage ../data/fonts/poly { }; From 2594999cede5b0ceb2991d74c42a5dde2514dfbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 17 Jan 2015 01:25:10 +0100 Subject: [PATCH 102/185] ihaskell: fix path to installedconf in wrapper --- pkgs/development/tools/haskell/ihaskell/wrapper.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/haskell/ihaskell/wrapper.nix b/pkgs/development/tools/haskell/ihaskell/wrapper.nix index 3637400b46d..281a3177bae 100644 --- a/pkgs/development/tools/haskell/ihaskell/wrapper.nix +++ b/pkgs/development/tools/haskell/ihaskell/wrapper.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { - inherit (ihaskell) name; + inherit (ihaskell) name pname version; buildInputs = [ makeWrapper ]; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { --set PROFILE_DIR "\$HOME/.ipython/profile_haskell" \ --set PROFILE_TAR "$(find ${ihaskell} -iname "profile.tar")" \ --set PROFILE_INIT "\$([ ! -d \$PROFILE_DIR ] && mkdir -p \$PROFILE_DIR && tar xvf \$PROFILE_TAR -C \$PROFILE_DIR)" \ - --prefix GHC_PACKAGE_PATH : "\$(${ghc.GHCGetPackages} ${ghc.version}|sed -e 's, -package-db ,:,g'|cut -b 2-):${ihaskell}/lib/ghc-${ghc.version}/package.conf.d/${name}.installedconf" \ + --prefix GHC_PACKAGE_PATH : "\$(${ghc.GHCGetPackages} ${ghc.version}|sed -e 's, -package-db ,:,g'|cut -b 2-):${ihaskell}/lib/ghc-${ghc.version}/package.conf.d/${pname}-${version}.installedconf" \ --set GHC_PACKAGE_PATH "\$GHC_PACKAGE_PATH:" # always end with : to include base packages ''; From c611f5837ce08335ffe6274541cd3dd134b97ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 17 Jan 2015 14:14:35 +0100 Subject: [PATCH 103/185] fix gevent/eventlet on python 2.7.9, fixes #5782 --- .../python-modules/gevent_sslwrap.patch | 28 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 15 ++++------ 2 files changed, 34 insertions(+), 9 deletions(-) create mode 100644 pkgs/development/python-modules/gevent_sslwrap.patch diff --git a/pkgs/development/python-modules/gevent_sslwrap.patch b/pkgs/development/python-modules/gevent_sslwrap.patch new file mode 100644 index 00000000000..6f104a638f0 --- /dev/null +++ b/pkgs/development/python-modules/gevent_sslwrap.patch @@ -0,0 +1,28 @@ +Index: b/gevent/ssl.py +=================================================================== +--- a/gevent/ssl.py ++++ b/gevent/ssl.py +@@ -81,15 +81,14 @@ class SSLSocket(socket): + self._sslobj = None + else: + # yes, create the SSL object +- if ciphers is None: +- self._sslobj = _ssl.sslwrap(self._sock, server_side, +- keyfile, certfile, +- cert_reqs, ssl_version, ca_certs) +- else: +- self._sslobj = _ssl.sslwrap(self._sock, server_side, +- keyfile, certfile, +- cert_reqs, ssl_version, ca_certs, +- ciphers) ++ ctx = SSLContext(ssl_version) ++ if keyfile or certfile: ++ ctx.load_cert_chain(certfile, keyfile) ++ if ca_certs: ++ ctx.load_verify_locations(ca_certs) ++ if ciphers: ++ ctx.set_ciphers(ciphers) ++ self._sslobj = ctx._wrap_socket(self._sock, server_side=server_side) + if do_handshake_on_connect: + self.do_handshake() + self.keyfile = keyfile diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 85e308bc9dc..78288dbb5da 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3973,23 +3973,18 @@ let }; }; - eventlet = buildPythonPackage rec { - name = "eventlet-0.15.1"; + name = "eventlet-0.16.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/e/eventlet/${name}.tar.gz"; - md5 = "7155780824bb6344651a573838416f21"; + md5 = "58f6e5cd1bcd8ab78e32a2594aa0abad"; }; - buildInputs = with self; [ nose httplib2 ]; + buildInputs = with self; [ nose httplib2 pyopenssl ]; propagatedBuildInputs = optionals (!isPyPy) [ self.greenlet ]; - PYTHON_EGG_CACHE = "`pwd`/.egg-cache"; - - doCheck = false; # !!! fix; tests access the network - meta = { homepage = http://pypi.python.org/pypi/eventlet/; description = "A concurrent networking library for Python"; @@ -4326,7 +4321,7 @@ let sha256 = "16cddyk5is0gjfn0ia5n2l4lhdzvbjzlx6sfpy7ddjd3d3fq7ckl"; }; - propagatedBuildInputs = with self; [ twisted self.pyopenssl ]; + propagatedBuildInputs = [ self.twisted self.pyopenssl ]; meta = { homepage = http://foolscap.lothar.com/; @@ -4484,6 +4479,8 @@ let url = "https://pypi.python.org/packages/source/g/gevent/${name}.tar.gz"; sha256 = "0hyzfb0gcx9pm5c2igan8y57hqy2wixrwvdjwsaivxsqs0ay49s6"; }; + + patches = [ ../development/python-modules/gevent_sslwrap.patch ]; buildInputs = with self; [ pkgs.libev ]; propagatedBuildInputs = optionals (!isPyPy) [ self.greenlet ]; From 9a33fbb52de9ec92e808dfb695a00d5959afe6d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 17 Jan 2015 14:19:29 +0100 Subject: [PATCH 104/185] python: don't propagate installed packages into userenv, refs #4949 Propagation is not needed anymore, as we have more powerful apis today than this dirty hack. See nix-shell tool and python.buildEnv function in nixpkgs manual. --- pkgs/development/python-modules/generic/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index 260128a2dda..f0e057e2dd6 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -143,14 +143,6 @@ if disabled then throw "${name} not supported for interpreter ${python.executabl postFixup = attrs.postFixup or '' wrapPythonPrograms - # If a user installs a Python package, they probably also wants its - # dependencies in the user environment profile (only way to find the - # dependencies is to have them in the PYTHONPATH variable). - # Allows you to do: $ PYTHONPATH=~/.nix-profile/lib/python2.7/site-packages python - if test -e $out/nix-support/propagated-build-inputs; then - ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages - fi - # TODO: document createBuildInputsPth build-inputs "$buildInputStrings" for inputsfile in propagated-build-inputs propagated-native-build-inputs; do From c8d0d91db1bb9afcef82d5b29b5346167880da55 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 21 Dec 2014 11:02:35 +0100 Subject: [PATCH 105/185] Add optional backends to matplotlib. --- .../python-modules/matplotlib/default.nix | 49 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 25 ++-------- 2 files changed, 52 insertions(+), 22 deletions(-) create mode 100644 pkgs/development/python-modules/matplotlib/default.nix diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix new file mode 100644 index 00000000000..f08301c7081 --- /dev/null +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchurl, python, buildPythonPackage +, which, dateutil, nose, numpy, pyparsing, tornado +, freetype, libpng, pkgconfig, mock, pytz +, enableGhostscript ? false, ghostscript ? null +, enableCairo ? false, pycairo ? null +, enableGtk2 ? false, pygtk ? null +, enableGtk3 ? false, pygobject3 ? null, gtk3 ? null +, enableQt4 ? false, pyqt4 ? null +, enableQt5 ? false, pyqt5 ? null +, enableWxWidgets ? false, wxPython ? null }: + +assert enableGhostscript -> ghostscript != null; +assert enableCairo -> pycairo != null; +assert enableGtk2 -> pygtk != null; +assert enableGtk3 -> pygobject3 != null && gtk3 != null; +assert enableQt4 -> pyqt4 != null; +assert enableQt5 -> pyqt5 != null; +assert enableWxWidgets -> wxPython != null; + +buildPythonPackage rec { + name = "matplotlib-1.4.2"; + + src = fetchurl { + url = "mirror://sourceforge/matplotlib/${name}.tar.gz"; + sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp"; + }; + + buildInputs = [ python which stdenv ] + ++ stdenv.lib.optional enableGhostscript ghostscript + ++ stdenv.lib.optional enableGtk3 gtk3; + + propagatedBuildInputs = + [ dateutil nose numpy pyparsing tornado freetype + libpng pkgconfig mock pytz + ] + ++ stdenv.lib.optional enableCairo pycairo + ++ stdenv.lib.optional enableGtk2 pygtk + ++ stdenv.lib.optional enableGtk3 pygobject3 + ++ stdenv.lib.optional enableQt4 pyqt4 + ++ stdenv.lib.optional enableQt5 pyqt5 + ++ stdenv.lib.optional enableWxWidgets wxPython; + + meta = with stdenv.lib; { + description = "python plotting library, making publication quality plots"; + homepage = "http://matplotlib.sourceforge.net/"; + maintainers = with maintainers; [ lovek323 ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 78288dbb5da..d53d4ebfada 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5500,28 +5500,9 @@ let }; - matplotlib = buildPythonPackage rec { - name = "matplotlib-1.4.2"; - - src = pkgs.fetchurl { - url = "mirror://sourceforge/matplotlib/${name}.tar.gz"; - sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp"; - }; - - buildInputs = with self; [ python pkgs.which pkgs.ghostscript ] ++ - (if stdenv.isDarwin then [ pkgs.clangStdenv ] else [ pkgs.stdenv ]); - - propagatedBuildInputs = with self; - [ dateutil nose numpy pyparsing tornado pkgs.freetype pkgs.libpng pkgs.pkgconfig - mock pytz - ]; - - meta = with stdenv.lib; { - description = "python plotting library, making publication quality plots"; - homepage = "http://matplotlib.sourceforge.net/"; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; - }; + matplotlib = callPackage ../development/python-modules/matplotlib/default.nix { + stdenv = if stdenv.isDarwin then pkgs.clangStdenv else pkgs.stdenv; + enableGhostscript = true; }; From 0c27d37495d973c32d61b77729a9aa4d21787563 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Mon, 22 Dec 2014 21:38:05 +0100 Subject: [PATCH 106/185] Remove some matplotlib optional backends. The removed ones are not certain to work at the moment. --- .../python-modules/matplotlib/default.nix | 21 +++---------------- 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index f08301c7081..dd6456b6783 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -2,20 +2,11 @@ , which, dateutil, nose, numpy, pyparsing, tornado , freetype, libpng, pkgconfig, mock, pytz , enableGhostscript ? false, ghostscript ? null -, enableCairo ? false, pycairo ? null , enableGtk2 ? false, pygtk ? null -, enableGtk3 ? false, pygobject3 ? null, gtk3 ? null -, enableQt4 ? false, pyqt4 ? null -, enableQt5 ? false, pyqt5 ? null -, enableWxWidgets ? false, wxPython ? null }: +}: assert enableGhostscript -> ghostscript != null; -assert enableCairo -> pycairo != null; assert enableGtk2 -> pygtk != null; -assert enableGtk3 -> pygobject3 != null && gtk3 != null; -assert enableQt4 -> pyqt4 != null; -assert enableQt5 -> pyqt5 != null; -assert enableWxWidgets -> wxPython != null; buildPythonPackage rec { name = "matplotlib-1.4.2"; @@ -26,19 +17,13 @@ buildPythonPackage rec { }; buildInputs = [ python which stdenv ] - ++ stdenv.lib.optional enableGhostscript ghostscript - ++ stdenv.lib.optional enableGtk3 gtk3; + ++ stdenv.lib.optional enableGhostscript ghostscript; propagatedBuildInputs = [ dateutil nose numpy pyparsing tornado freetype libpng pkgconfig mock pytz ] - ++ stdenv.lib.optional enableCairo pycairo - ++ stdenv.lib.optional enableGtk2 pygtk - ++ stdenv.lib.optional enableGtk3 pygobject3 - ++ stdenv.lib.optional enableQt4 pyqt4 - ++ stdenv.lib.optional enableQt5 pyqt5 - ++ stdenv.lib.optional enableWxWidgets wxPython; + ++ stdenv.lib.optional enableGtk2 pygtk; meta = with stdenv.lib; { description = "python plotting library, making publication quality plots"; From 0f82c6bdb290407121694eac1e39e531fde947e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 17 Jan 2015 15:11:24 +0100 Subject: [PATCH 107/185] matplotlib: add optional gtk3 backend, fixes #4500 --- .../python-modules/matplotlib/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index dd6456b6783..5dcd1dda948 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -1,8 +1,9 @@ -{ stdenv, fetchurl, python, buildPythonPackage +{ stdenv, fetchurl, python, buildPythonPackage, pycairo , which, dateutil, nose, numpy, pyparsing, tornado -, freetype, libpng, pkgconfig, mock, pytz -, enableGhostscript ? false, ghostscript ? null -, enableGtk2 ? false, pygtk ? null +, freetype, libpng, pkgconfig, mock, pytz, pygobject3 +, enableGhostscript ? false, ghostscript ? null, gtk3 +, enableGtk2 ? false, pygtk ? null, gobjectIntrospection +, enableGtk3 ? true, cairo }: assert enableGhostscript -> ghostscript != null; @@ -15,15 +16,18 @@ buildPythonPackage rec { url = "mirror://sourceforge/matplotlib/${name}.tar.gz"; sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp"; }; + + XDG_RUNTIME_DIR = "/tmp"; buildInputs = [ python which stdenv ] ++ stdenv.lib.optional enableGhostscript ghostscript; propagatedBuildInputs = - [ dateutil nose numpy pyparsing tornado freetype - libpng pkgconfig mock pytz + [ dateutil nose numpy pyparsing tornado freetype + libpng pkgconfig mock pytz ] - ++ stdenv.lib.optional enableGtk2 pygtk; + ++ stdenv.lib.optional enableGtk2 pygtk + ++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ]; meta = with stdenv.lib; { description = "python plotting library, making publication quality plots"; From a4e33930501cbd862aaa67389ca4e611fe3a8c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 17 Jan 2015 15:24:47 +0100 Subject: [PATCH 108/185] matplotlib: be consistent --- pkgs/development/python-modules/matplotlib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index 5dcd1dda948..d22c8cf3231 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -3,7 +3,7 @@ , freetype, libpng, pkgconfig, mock, pytz, pygobject3 , enableGhostscript ? false, ghostscript ? null, gtk3 , enableGtk2 ? false, pygtk ? null, gobjectIntrospection -, enableGtk3 ? true, cairo +, enableGtk3 ? false, cairo }: assert enableGhostscript -> ghostscript != null; From 3c3ede970e253a7141148989ad3b9da21dafec9b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 17 Jan 2015 15:31:41 +0100 Subject: [PATCH 109/185] netsniff-ng: don't work around tput now that we have ncurses --- pkgs/tools/networking/netsniff-ng/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 0fa4e2db229..1f10e3c94d4 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -14,7 +14,6 @@ stdenv.mkDerivation rec { # ./configure is not autoGNU but some home-brewn magic preConfigure = "patchShebangs configure"; - postConfigure = "substituteInPlace Makefile --replace ' tput ' ' true '"; # FIXME: missing nacl/libcli and a *working* libnetfilter_conntrack # The following tools will be missing: curvetun flowtop mausezahn From 4d6c69d9bf5520364695bcc1c9f4009427a2c9bf Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 17 Jan 2015 15:48:54 +0100 Subject: [PATCH 110/185] Add libcli 1.9.7: emulate a Cisco-telnet-style command line --- pkgs/development/libraries/libcli/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/libraries/libcli/default.nix diff --git a/pkgs/development/libraries/libcli/default.nix b/pkgs/development/libraries/libcli/default.nix new file mode 100644 index 00000000000..d85b0d0dff9 --- /dev/null +++ b/pkgs/development/libraries/libcli/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + version = "1.9.7"; + name = "libcli-${version}"; + + src = fetchurl { + url = "https://github.com/dparrish/libcli/archive/v${version}.tar.gz"; + sha256 = "0v4867jbach5zd1nq0sspq5q95vvbpnljzm2yf64k8a4w2vadpbx"; + }; + + enableParallelBuilding = true; + + makeFlags = "PREFIX=$(out)"; + + meta = with stdenv.lib; { + description = "Emulate a Cisco-style telnet command-line interface"; + homepage = http://sites.dparrish.com/libcli; + license = with licenses; lgpl21Plus; + platforms = with platforms; linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 24462e6cb10..cbd81733ee4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5831,6 +5831,8 @@ let libchop = callPackage ../development/libraries/libchop { }; + libcli = callPackage ../development/libraries/libcli { }; + libcm = callPackage ../development/libraries/libcm { }; inherit (gnome3) libcroco; From 5d143fae585a2198ac5fec9322f22b5ddff8ae25 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 17 Jan 2015 15:50:55 +0100 Subject: [PATCH 111/185] netsniff-ng: enable "mausezahn" tool --- pkgs/tools/networking/netsniff-ng/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 1f10e3c94d4..b7d9cada259 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchFromGitHub, bison, flex, geoip, libnet, libnetfilter_conntrack, libnl -, libpcap, liburcu, ncurses, perl, pkgconfig, which, zlib }: +{ stdenv, fetchFromGitHub, bison, flex, geoip, libcli, libnet +, libnetfilter_conntrack, libnl, libpcap, liburcu, ncurses, perl, pkgconfig +, which, zlib }: stdenv.mkDerivation rec { version = "0.5.9-rc4-40-g5107740"; @@ -17,7 +18,7 @@ stdenv.mkDerivation rec { # FIXME: missing nacl/libcli and a *working* libnetfilter_conntrack # The following tools will be missing: curvetun flowtop mausezahn - buildInputs = [ bison flex geoip libnet libnl libnetfilter_conntrack + buildInputs = [ bison flex geoip libcli libnet libnl libnetfilter_conntrack libpcap liburcu ncurses perl pkgconfig which zlib ]; enableParallelBuilding = true; From 46a938ad3aa1d8bf992d1b99352bc67929f1ddc1 Mon Sep 17 00:00:00 2001 From: Aristid Breitkreuz Date: Sat, 17 Jan 2015 16:31:03 +0000 Subject: [PATCH 112/185] linux 3.18.3 --- pkgs/os-specific/linux/kernel/linux-3.18.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix index b3e46a8ef8b..dc56325666a 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, ... } @ args: import ./generic.nix (args // rec { - version = "3.18.2"; + version = "3.18.3"; # Remember to update grsecurity! extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1gqs5c3s2qm5slhmqwdrrnkjn0w4mwaj71q79x8qxhyxvnagm40h"; + sha256 = "0ma2x68975xsi9kb15p0615nx9sm5ppb309kfdz7fgx9pg84q0hf"; }; features.iwlwifi = true; From 6b957783a5ebce405cd7934c63254537b26bb5db Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 17 Jan 2015 18:38:56 +0100 Subject: [PATCH 113/185] libnetfilter_conntrack: propagate buildInput libnfnetlink --- pkgs/development/libraries/libnetfilter_conntrack/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libnetfilter_conntrack/default.nix b/pkgs/development/libraries/libnetfilter_conntrack/default.nix index da32903c94e..f6908cd514c 100644 --- a/pkgs/development/libraries/libnetfilter_conntrack/default.nix +++ b/pkgs/development/libraries/libnetfilter_conntrack/default.nix @@ -8,7 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0zcwjav1qgr7ikmvfmy7g3nc7s1kj4j4939d18mpyha9mwy4mv6r"; }; - buildInputs = [ pkgconfig libnfnetlink libmnl ]; + buildInputs = [ pkgconfig libmnl ]; + propagatedBuildInputs = [ libnfnetlink ]; meta = { description = "Userspace library providing an API to the in-kernel connection tracking state table"; @@ -22,5 +23,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; + maintainers = stdenv.lib.maintainers.nckx; }; } From b37e3f6233ca1c02d64154ecf3c3ce6533d4449e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 17 Jan 2015 16:17:55 +0100 Subject: [PATCH 114/185] netsniff-ng: flowtop is now included --- pkgs/tools/networking/netsniff-ng/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index b7d9cada259..0c63a32ae16 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -16,8 +16,7 @@ stdenv.mkDerivation rec { # ./configure is not autoGNU but some home-brewn magic preConfigure = "patchShebangs configure"; - # FIXME: missing nacl/libcli and a *working* libnetfilter_conntrack - # The following tools will be missing: curvetun flowtop mausezahn + # FIXME: add missing nacl to build curvetun buildInputs = [ bison flex geoip libcli libnet libnl libnetfilter_conntrack libpcap liburcu ncurses perl pkgconfig which zlib ]; From 96812d6adc093106bf975555a1a6c092be63f2ca Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 17 Jan 2015 16:46:23 +0100 Subject: [PATCH 115/185] netsniff-ng: use libsodium to build curvetun --- pkgs/tools/networking/netsniff-ng/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 0c63a32ae16..e9a0157b123 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, bison, flex, geoip, libcli, libnet -, libnetfilter_conntrack, libnl, libpcap, liburcu, ncurses, perl, pkgconfig -, which, zlib }: +, libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl +, pkgconfig, which, zlib }: stdenv.mkDerivation rec { version = "0.5.9-rc4-40-g5107740"; @@ -13,12 +13,14 @@ stdenv.mkDerivation rec { sha256 = "1z3b7pa5rhz37dhfb1riy1j9lg917bs4z7clqbxm1hzi1x2ln988"; }; - # ./configure is not autoGNU but some home-brewn magic - preConfigure = "patchShebangs configure"; - - # FIXME: add missing nacl to build curvetun buildInputs = [ bison flex geoip libcli libnet libnl libnetfilter_conntrack - libpcap liburcu ncurses perl pkgconfig which zlib ]; + libpcap libsodium liburcu ncurses perl pkgconfig which zlib ]; + + # ./configure is not autoGNU but some home-brewn magic + configurePhase = '' + patchShebangs configure + NACL_INC_DIR=${libsodium}/include/sodium NACL_LIB=sodium ./configure + ''; enableParallelBuilding = true; From d1fc5370e93f202c2de5a53ab5620cb29880a103 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Jan 2015 19:31:34 +0100 Subject: [PATCH 116/185] ghc: pass explicit 'ncurses' path to ./configure instead of finding through the environment Fixes https://github.com/NixOS/nixpkgs/issues/5616. For real this time! --- pkgs/development/compilers/ghc/6.12.1.nix | 2 ++ pkgs/development/compilers/ghc/6.12.2.nix | 2 ++ pkgs/development/compilers/ghc/6.12.3.nix | 2 ++ pkgs/development/compilers/ghc/7.0.1.nix | 2 ++ pkgs/development/compilers/ghc/7.0.2.nix | 2 ++ pkgs/development/compilers/ghc/7.0.3.nix | 2 ++ pkgs/development/compilers/ghc/7.0.4.nix | 2 ++ pkgs/development/compilers/ghc/7.2.1.nix | 2 ++ pkgs/development/compilers/ghc/7.2.2.nix | 2 ++ pkgs/development/compilers/ghc/7.4.1.nix | 2 ++ pkgs/development/compilers/ghc/7.4.2-binary.nix | 5 +++-- pkgs/development/compilers/ghc/7.4.2.nix | 2 ++ pkgs/development/compilers/ghc/7.6.1.nix | 2 ++ pkgs/development/compilers/ghc/7.6.2.nix | 2 ++ pkgs/development/compilers/ghc/7.6.3.nix | 3 ++- pkgs/development/compilers/ghc/7.8.4.nix | 2 ++ pkgs/development/compilers/ghc/head.nix | 16 ++++++++++++++-- .../haskell-modules/configuration-ghc-7.6.x.nix | 4 ++-- .../haskell-modules/configuration-ghc-7.8.x.nix | 5 +++-- 19 files changed, 52 insertions(+), 9 deletions(-) diff --git a/pkgs/development/compilers/ghc/6.12.1.nix b/pkgs/development/compilers/ghc/6.12.1.nix index 66b277dc376..b92484973f0 100644 --- a/pkgs/development/compilers/ghc/6.12.1.nix +++ b/pkgs/development/compilers/ghc/6.12.1.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/6.12.2.nix b/pkgs/development/compilers/ghc/6.12.2.nix index a7252a7931d..8cf505488cb 100644 --- a/pkgs/development/compilers/ghc/6.12.2.nix +++ b/pkgs/development/compilers/ghc/6.12.2.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/6.12.3.nix b/pkgs/development/compilers/ghc/6.12.3.nix index a1cc16e1f9e..05eff1b5d90 100644 --- a/pkgs/development/compilers/ghc/6.12.3.nix +++ b/pkgs/development/compilers/ghc/6.12.3.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.0.1.nix b/pkgs/development/compilers/ghc/7.0.1.nix index 3f992bb16ff..b61375c6657 100644 --- a/pkgs/development/compilers/ghc/7.0.1.nix +++ b/pkgs/development/compilers/ghc/7.0.1.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.0.2.nix b/pkgs/development/compilers/ghc/7.0.2.nix index 3fb982e2a71..6c72527d36b 100644 --- a/pkgs/development/compilers/ghc/7.0.2.nix +++ b/pkgs/development/compilers/ghc/7.0.2.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.0.3.nix b/pkgs/development/compilers/ghc/7.0.3.nix index b2040751370..580b1d22983 100644 --- a/pkgs/development/compilers/ghc/7.0.3.nix +++ b/pkgs/development/compilers/ghc/7.0.3.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.0.4.nix b/pkgs/development/compilers/ghc/7.0.4.nix index bcce5ec03ae..fe7ec94c00d 100644 --- a/pkgs/development/compilers/ghc/7.0.4.nix +++ b/pkgs/development/compilers/ghc/7.0.4.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.2.1.nix b/pkgs/development/compilers/ghc/7.2.1.nix index 5a3af0f6492..4417a0e6a7e 100644 --- a/pkgs/development/compilers/ghc/7.2.1.nix +++ b/pkgs/development/compilers/ghc/7.2.1.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.2.2.nix b/pkgs/development/compilers/ghc/7.2.2.nix index 51d94af4051..fbf37f62837 100644 --- a/pkgs/development/compilers/ghc/7.2.2.nix +++ b/pkgs/development/compilers/ghc/7.2.2.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.4.1.nix b/pkgs/development/compilers/ghc/7.4.1.nix index f666299c5b0..933e81b4495 100644 --- a/pkgs/development/compilers/ghc/7.4.1.nix +++ b/pkgs/development/compilers/ghc/7.4.1.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix index 8dc585e7cda..9fd1f038e7c 100644 --- a/pkgs/development/compilers/ghc/7.4.2-binary.nix +++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix @@ -62,8 +62,9 @@ stdenv.mkDerivation rec { '' else ""); configurePhase = '' - ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include \ - ${if stdenv.isDarwin then "--with-gcc=${./gcc-clang-wrapper.sh}" else "--with-clang"} + ./configure --prefix=$out \ + --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include \ + ${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"} ''; # Stripping combined with patchelf breaks the executables (they die diff --git a/pkgs/development/compilers/ghc/7.4.2.nix b/pkgs/development/compilers/ghc/7.4.2.nix index 2f577f12bc4..d5a3fb49c9b 100644 --- a/pkgs/development/compilers/ghc/7.4.2.nix +++ b/pkgs/development/compilers/ghc/7.4.2.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.6.1.nix b/pkgs/development/compilers/ghc/7.6.1.nix index 8f1a6951966..ae22f747d76 100644 --- a/pkgs/development/compilers/ghc/7.6.1.nix +++ b/pkgs/development/compilers/ghc/7.6.1.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.6.2.nix b/pkgs/development/compilers/ghc/7.6.2.nix index d2ea2ebce05..732c3cc66a5 100644 --- a/pkgs/development/compilers/ghc/7.6.2.nix +++ b/pkgs/development/compilers/ghc/7.6.2.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.6.3.nix b/pkgs/development/compilers/ghc/7.6.3.nix index 9866ea38e86..7db52d1eeec 100644 --- a/pkgs/development/compilers/ghc/7.6.3.nix +++ b/pkgs/development/compilers/ghc/7.6.3.nix @@ -22,7 +22,8 @@ in stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" '' + stdenv.lib.optionalString stdenv.isLinux '' # Set ghcFlags for building ghc itself SRC_HC_OPTS += ${ghcFlags} diff --git a/pkgs/development/compilers/ghc/7.8.4.nix b/pkgs/development/compilers/ghc/7.8.4.nix index ccc3f4c875b..1634524fc03 100644 --- a/pkgs/development/compilers/ghc/7.8.4.nix +++ b/pkgs/development/compilers/ghc/7.8.4.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation rec { buildMK = '' libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" DYNAMIC_BY_DEFAULT = NO ''; diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index c79cdfbe342..0f91e8591d1 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -1,5 +1,17 @@ { stdenv, fetchurl, ghc, perl, gmp, ncurses, happy, alex }: +let + + buildMK = '' + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + DYNAMIC_BY_DEFAULT = NO + ''; + +in + stdenv.mkDerivation rec { version = "7.10.0.20141222"; name = "ghc-${version}"; @@ -9,10 +21,10 @@ stdenv.mkDerivation rec { sha256 = "0nncvvwksqqz1d991jbag3b4174i275nn0psadriq5hi3px11dkl"; }; - buildInputs = [ ghc perl ncurses happy alex ]; + buildInputs = [ ghc perl ]; preConfigure = '' - echo >mk/build.mk "DYNAMIC_BY_DEFAULT = NO" + echo >mk/build.mk "${buildMK}" sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}" diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index d1c919a03dc..820a44c6b4f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -16,7 +16,7 @@ self: super: { directory = null; filepath = null; ghc-prim = null; - haskeline = self.haskeline_0_7_1_3; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616. + haskeline = null; haskell2010 = null; haskell98 = null; hoopl = null; @@ -28,7 +28,7 @@ self: super: { process = null; rts = null; template-haskell = null; - terminfo = self.terminfo_0_4_0_0; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616. + terminfo = null; time = null; unix = null; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index 63e49196580..28910857126 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -16,7 +16,7 @@ self: super: { directory = null; filepath = null; ghc-prim = null; - haskeline = self.haskeline_0_7_1_3; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616. + haskeline = null; haskell2010 = null; haskell98 = null; hoopl = null; @@ -28,7 +28,7 @@ self: super: { process = null; rts = null; template-haskell = null; - terminfo = self.terminfo_0_4_0_0; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616. + terminfo = null; time = null; transformers = null; unix = null; @@ -42,6 +42,7 @@ self: super: { mkDerivation = drv: super.mkDerivation (drv // { doCheck = false; }); transformers = super.transformers_0_4_2_0; transformers-compat = disableCabalFlag super.transformers-compat "three"; + haskeline = self.haskeline_0_7_1_3; mtl = super.mtl_2_2_1; })) (drv: { jailbreak = true; # idris is scared of lens 4.7 From e6ecb1fb83a9fda089c6fa23617185145d54b80f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Jan 2015 21:48:59 +0100 Subject: [PATCH 117/185] haskell-ng: enable package sets for GHC 6.12.3, 7.0.4, 7.2.2, and 7.4.2 --- .../configuration-ghc-6.12.x.nix | 60 +++++++++++++++++++ .../configuration-ghc-7.0.x.nix | 54 +++++++++++++++++ .../configuration-ghc-7.2.x.nix | 54 +++++++++++++++++ .../configuration-ghc-7.4.x.nix | 51 ++++++++++++++++ .../haskell-modules/generic-builder.nix | 7 ++- pkgs/top-level/haskell-ng.nix | 20 +++++-- 6 files changed, 240 insertions(+), 6 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix create mode 100644 pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix create mode 100644 pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix create mode 100644 pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix new file mode 100644 index 00000000000..59280505fb6 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -0,0 +1,60 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # Disable GHC 6.12.x core libraries. + array = null; + base = null; + bin-package-db = null; + bytestring = null; + Cabal = null; + containers = null; + directory = null; + dph-base = null; + dph-par = null; + dph-prim-interface = null; + dph-prim-par = null; + dph-prim-seq = null; + dph-seq = null; + extensible-exceptions = null; + ffi = null; + filepath = null; + ghc-binary = null; + ghc-prim = null; + haskell98 = null; + hpc = null; + integer-gmp = null; + old-locale = null; + old-time = null; + pretty = null; + process = null; + random = null; + rts = null; + syb = null; + template-haskell = null; + time = null; + unix = null; + + # binary is not a core library for this compiler. + binary = self.binary_0_7_2_3; + + # deepseq is not a core library for this compiler. + deepseq = self.deepseq_1_4_0_0; + + # transformers is not a core library for this compiler. + transformers = self.transformers_0_4_2_0; + mtl = self.mtl_2_2_1; + transformers-compat = disableCabalFlag super.transformers-compat "three"; + + # https://github.com/tibbe/hashable/issues/85 + hashable = dontCheck super.hashable; + + # Needs Cabal >= 1.18.x. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + + # Haddock chokes on the prologue from the cabal file. + ChasingBottoms = dontHaddock super.ChasingBottoms; + +} diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix new file mode 100644 index 00000000000..bd8b09d040d --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -0,0 +1,54 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # Disable GHC 7.0.x core libraries. + array = null; + base = null; + bin-package-db = null; + bytestring = null; + Cabal = null; + containers = null; + directory = null; + extensible-exceptions = null; + ffi = null; + filepath = null; + ghc-binary = null; + ghc-prim = null; + haskell2010 = null; + haskell98 = null; + hpc = null; + integer-gmp = null; + old-locale = null; + old-time = null; + pretty = null; + process = null; + random = null; + rts = null; + template-haskell = null; + time = null; + unix = null; + + # binary is not a core library for this compiler. + binary = self.binary_0_7_2_3; + + # deepseq is not a core library for this compiler. + deepseq = self.deepseq_1_4_0_0; + + # transformers is not a core library for this compiler. + transformers = self.transformers_0_4_2_0; + mtl = self.mtl_2_2_1; + transformers-compat = disableCabalFlag super.transformers-compat "three"; + + # https://github.com/tibbe/hashable/issues/85 + hashable = dontCheck super.hashable; + + # Needs Cabal >= 1.18.x. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + + # Haddock chokes on the prologue from the cabal file. + ChasingBottoms = dontHaddock super.ChasingBottoms; + +} diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix new file mode 100644 index 00000000000..d35285dea40 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -0,0 +1,54 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # Disable GHC 7.2.x core libraries. + array = null; + base = null; + binary = null; + bin-package-db = null; + bytestring = null; + Cabal = null; + containers = null; + directory = null; + extensible-exceptions = null; + ffi = null; + filepath = null; + ghc-prim = null; + haskell2010 = null; + haskell98 = null; + hoopl = null; + hpc = null; + integer-gmp = null; + old-locale = null; + old-time = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + unix = null; + + # deepseq is not a core library for this compiler. + deepseq = self.deepseq_1_4_0_0; + + # transformers is not a core library for this compiler. + transformers = self.transformers_0_4_2_0; + mtl = self.mtl_2_2_1; + transformers-compat = disableCabalFlag super.transformers-compat "three"; + + # https://github.com/haskell/cabal/issues/2322 + Cabal_1_22_0_0 = super.Cabal_1_22_0_0.override { binary = self.binary_0_7_2_3; }; + + # https://github.com/tibbe/hashable/issues/85 + hashable = dontCheck super.hashable; + + # Needs Cabal >= 1.18.x. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + + # Haddock chokes on the prologue from the cabal file. + ChasingBottoms = dontHaddock super.ChasingBottoms; + +} diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix new file mode 100644 index 00000000000..aa54f736dab --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -0,0 +1,51 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # Disable GHC 7.4.x core libraries. + array = null; + base = null; + binary = null; + bin-package-db = null; + bytestring = null; + Cabal = null; + containers = null; + deepseq = null; + directory = null; + extensible-exceptions = null; + filepath = null; + ghc-prim = null; + haskell2010 = null; + haskell98 = null; + hoopl = null; + hpc = null; + integer-gmp = null; + old-locale = null; + old-time = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + unix = null; + + # transformers is not a core library for this compiler. + transformers = self.transformers_0_4_2_0; + mtl = self.mtl_2_2_1; + transformers-compat = disableCabalFlag super.transformers-compat "three"; + + # https://github.com/haskell/cabal/issues/2322 + Cabal_1_22_0_0 = super.Cabal_1_22_0_0.override { binary = self.binary_0_7_2_3; }; + + # https://github.com/tibbe/hashable/issues/85 + hashable = dontCheck super.hashable; + + # Needs Cabal >= 1.18.x. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + + # Haddock chokes on the prologue from the cabal file. + ChasingBottoms = dontHaddock super.ChasingBottoms; + +} diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix index c0c3be07df3..0f98ded5eb1 100644 --- a/pkgs/development/haskell-modules/generic-builder.nix +++ b/pkgs/development/haskell-modules/generic-builder.nix @@ -55,6 +55,9 @@ let main = defaultMain ''; + ghc76xOrLater = stdenv.lib.versionOlder "7.6" ghc.version; + packageDbFlag = if ghc76xOrLater then "package-db" else "package-conf"; + defaultConfigureFlags = [ (enableFeature enableSplitObjs "split-objs") (enableFeature enableLibraryProfiling "library-profiling") @@ -146,7 +149,7 @@ stdenv.mkDerivation ({ fi done done - ghc-pkg --package-db="$packageConfDir" recache + ghc-pkg --${packageDbFlag}="$packageConfDir" recache configureFlags+=" --package-db=$packageConfDir" ${optionalString (editedCabalFile != null) '' @@ -162,7 +165,7 @@ stdenv.mkDerivation ({ for i in Setup.hs Setup.lhs ${defaultSetupHs}; do test -f $i && break done - ghc ${optionalString (! coreSetup) "-package-db=$packageConfDir "}$setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i + ghc ${optionalString (! coreSetup) "-${packageDbFlag}=$packageConfDir "}$setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i echo configureFlags: $configureFlags unset GHC_PACKAGE_PATH # Cabal complains if this variable is set during configure. diff --git a/pkgs/top-level/haskell-ng.nix b/pkgs/top-level/haskell-ng.nix index ca9982c65dd..17fe57df5e7 100644 --- a/pkgs/top-level/haskell-ng.nix +++ b/pkgs/top-level/haskell-ng.nix @@ -26,10 +26,22 @@ rec { packages = { ghc6104 = callPackage ../development/haskell-modules { ghc = compiler.ghc6104; }; - ghc6123 = callPackage ../development/haskell-modules { ghc = compiler.ghc6123; }; - ghc704 = callPackage ../development/haskell-modules { ghc = compiler.ghc704; }; - ghc722 = callPackage ../development/haskell-modules { ghc = compiler.ghc722; }; - ghc742 = callPackage ../development/haskell-modules { ghc = compiler.ghc742; }; + ghc6123 = callPackage ../development/haskell-modules { + ghc = compiler.ghc6123; + packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-6.12.x.nix { }; + }; + ghc704 = callPackage ../development/haskell-modules { + ghc = compiler.ghc704; + packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.0.x.nix { }; + }; + ghc722 = callPackage ../development/haskell-modules { + ghc = compiler.ghc722; + packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.2.x.nix { }; + }; + ghc742 = callPackage ../development/haskell-modules { + ghc = compiler.ghc742; + packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.4.x.nix { }; + }; ghc763 = callPackage ../development/haskell-modules { ghc = compiler.ghc763; packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.6.x.nix { }; From 54bbfd544087dcaf422899191db2a0ce4425b67f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Jan 2015 20:54:35 +0100 Subject: [PATCH 118/185] haskell-generic-builder: re-factor for improved modularity --- .../haskell-modules/generic-builder.nix | 128 +++++++++++------- .../haskell-modules/with-packages-wrapper.nix | 2 +- 2 files changed, 78 insertions(+), 52 deletions(-) diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix index 0f98ded5eb1..a4368838fe4 100644 --- a/pkgs/development/haskell-modules/generic-builder.nix +++ b/pkgs/development/haskell-modules/generic-builder.nix @@ -7,6 +7,7 @@ , sha256 ? null , src ? fetchurl { url = "mirror://hackage/${pname}-${version}.tar.gz"; inherit sha256; } , buildDepends ? [] +, buildTarget ? "" , buildTools ? [] , configureFlags ? [] , description ? "" @@ -50,6 +51,11 @@ let inherit (stdenv.lib) optional optionals optionalString versionOlder concatStringsSep enableFeature optionalAttrs; + newCabalFile = fetchurl { + url = "http://hackage.haskell.org/package/${pname}-${version}/${pname}.cabal"; + sha256 = editedCabalFile; + }; + defaultSetupHs = builtins.toFile "Setup.hs" '' import Distribution.Simple main = defaultMain @@ -58,7 +64,18 @@ let ghc76xOrLater = stdenv.lib.versionOlder "7.6" ghc.version; packageDbFlag = if ghc76xOrLater then "package-db" else "package-conf"; + hasActiveLibrary = isLibrary && (enableStaticLibraries || enableSharedLibraries || enableLibraryProfiling); + + enableParallelBuilding = versionOlder "7.8" ghc.version && !hasActiveLibrary; + defaultConfigureFlags = [ + "--verbose" "--prefix=$out" "--libdir=\\$prefix/lib/\\$compiler" "--libsubdir=\\$pkgid" + "--with-gcc=$CC" # Clang won't work without that extra information. + "--package-db=$packageConfDir" + (optionalString (enableSharedExecutables && stdenv.isLinux) "--ghc-option=-optl=-Wl,-rpath=$out/lib/${ghc.name}/${pname}-${version}") + (optionalString (enableSharedExecutables && stdenv.isDarwin) "--ghc-option=-optl=-Wl,-headerpad_max_install_names") + (optionalString enableParallelBuilding "--ghc-option=-j$NIX_BUILD_CORES") + (optionalString (useCpphs) "--with-cpphs=${cpphs}/bin/cpphs --ghc-options=-cpp --ghc-options=-pgmP${cpphs}/bin/cpphs --ghc-options=-optP--cpp") (enableFeature enableSplitObjs "split-objs") (enableFeature enableLibraryProfiling "library-profiling") (enableFeature enableSharedLibraries "shared") @@ -67,21 +84,21 @@ let (optionalString (versionOlder "7" ghc.version) (enableFeature doCheck "tests")) ]; - hasActiveLibrary = isLibrary && (enableStaticLibraries || enableSharedLibraries); + setupCompileFlags = [ + (optionalString (!coreSetup) "-${packageDbFlag}=$packageConfDir") + (optionalString (versionOlder "7.8" ghc.version) "-j$NIX_BUILD_CORES") + ]; - newCabalFile = fetchurl { - url = "http://hackage.haskell.org/package/${pname}-${version}/${pname}.cabal"; - sha256 = editedCabalFile; - }; - - isHaskellPkg = x: (x ? pname) && (x ? version); + isHaskellPkg = x: (x ? pname) && (x ? version) && (x ? env); isSystemPkg = x: !isHaskellPkg x; - allBuildInputs = stdenv.lib.filter (x: x != null) ( - buildDepends ++ extraLibraries ++ buildTools ++ + propagatedBuildInputs = buildDepends; + otherBuildInputs = extraLibraries ++ + buildTools ++ optionals (pkgconfigDepends != []) ([pkgconfig] ++ pkgconfigDepends) ++ - optionals doCheck testDepends - ); + optionals doCheck testDepends; + allBuildInputs = propagatedBuildInputs ++ otherBuildInputs; + haskellBuildInputs = stdenv.lib.filter isHaskellPkg allBuildInputs; systemBuildInputs = stdenv.lib.filter isSystemPkg allBuildInputs; @@ -91,46 +108,31 @@ in stdenv.mkDerivation ({ name = "${optionalString hasActiveLibrary "haskell-"}${pname}-${version}"; + prePhases = ["setupCompilerEnvironmentPhase"]; + preConfigurePhases = ["jailbreakPhase" "compileBuildDriverPhase"]; + preInstallPhases = ["haddockPhase"]; + inherit src; - nativeBuildInputs = extraLibraries ++ buildTools ++ - optionals (pkgconfigDepends != []) ([pkgconfig] ++ pkgconfigDepends) ++ - optionals doCheck testDepends ++ - optionals (!hasActiveLibrary) buildDepends; - propagatedNativeBuildInputs = optionals hasActiveLibrary buildDepends; + nativeBuildInputs = otherBuildInputs ++ optionals (!hasActiveLibrary) propagatedBuildInputs; + propagatedNativeBuildInputs = optionals hasActiveLibrary propagatedBuildInputs; - # GHC needs the locale configured during the Haddock phase. - LANG = "en_US.UTF-8"; + LANG = "en_US.UTF-8"; # GHC needs the locale configured during the Haddock phase. LOCALE_ARCHIVE = optionalString stdenv.isLinux "${glibcLocales}/lib/locale/locale-archive"; - configurePhase = '' - runHook preConfigure + setupCompilerEnvironmentPhase = '' + runHook preSetupCompilerEnvironment echo "Building with ${ghc}." export PATH="${ghc}/bin:$PATH" ${optionalString (hasActiveLibrary && hyperlinkSource) "export PATH=${hscolour}/bin:$PATH"} - configureFlags="--verbose --prefix=$out --libdir=\$prefix/lib/\$compiler --libsubdir=\$pkgid $configureFlags" - configureFlags+=' ${concatStringsSep " " defaultConfigureFlags}' - ${optionalString (enableSharedExecutables && stdenv.isLinux) '' - configureFlags+=" --ghc-option=-optl=-Wl,-rpath=$out/lib/${ghc.name}/${pname}-${version}" - ''} - ${optionalString (enableSharedExecutables && stdenv.isDarwin) '' - configureFlags+=" --ghc-option=-optl=-Wl,-headerpad_max_install_names" - ''} - ${optionalString (versionOlder "7.8" ghc.version && !isLibrary) '' - configureFlags+=" --ghc-option=-j$NIX_BUILD_CORES" - setupCompileFlags="-j$NIX_BUILD_CORES" - ''}${optionalString stdenv.isDarwin '' - configureFlags+=" --with-gcc=$CC" # Cabal won't find clang without help. - ''}${optionalString useCpphs '' - configureFlags+=" --with-cpphs=${cpphs}/bin/cpphs" - configureFlags+=" --ghc-options=-cpp --ghc-options=-pgmP${cpphs}/bin/cpphs --ghc-options=-optP--cpp" - ''} - packageConfDir="$TMP/package.conf.d" mkdir -p $packageConfDir + setupCompileFlags="${concatStringsSep " " setupCompileFlags}" + configureFlags="${concatStringsSep " " defaultConfigureFlags} $configureFlags" + local inputClosure="" for i in $propagatedNativeBuildInputs $nativeBuildInputs; do findInputs $i inputClosure propagated-native-build-inputs @@ -150,25 +152,43 @@ stdenv.mkDerivation ({ done done ghc-pkg --${packageDbFlag}="$packageConfDir" recache - configureFlags+=" --package-db=$packageConfDir" + + runHook postSetupCompilerEnvironment + ''; + + jailbreakPhase = '' + runHook preJailbreak ${optionalString (editedCabalFile != null) '' echo "Replacing Cabal file with edited version ${newCabalFile}." cp ${newCabalFile} ${pname}.cabal - ''} - - ${optionalString jailbreak '' + ''}${optionalString jailbreak '' echo "Running jailbreak-cabal to lift version restrictions on build inputs." ${jailbreak-cabal}/bin/jailbreak-cabal ${pname}.cabal ''} + runHook postJailbreak + ''; + + compileBuildDriverPhase = '' + runHook preCompileBuildDriver + for i in Setup.hs Setup.lhs ${defaultSetupHs}; do test -f $i && break done - ghc ${optionalString (! coreSetup) "-${packageDbFlag}=$packageConfDir "}$setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i + + echo setupCompileFlags: $setupCompileFlags + ghc $setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i + + runHook postCompileBuildDriver + ''; + + configurePhase = '' + runHook preConfigure + + unset GHC_PACKAGE_PATH # Cabal complains if this variable is set during configure. echo configureFlags: $configureFlags - unset GHC_PACKAGE_PATH # Cabal complains if this variable is set during configure. ./Setup configure $configureFlags 2>&1 | ${coreutils}/bin/tee "$NIX_BUILD_TOP/cabal-configure.log" if ${gnugrep}/bin/egrep -q '^Warning:.*depends on multiple versions' "$NIX_BUILD_TOP/cabal-configure.log"; then echo >&2 "*** abort because of serious configure-time warning from Cabal" @@ -182,12 +202,7 @@ stdenv.mkDerivation ({ buildPhase = '' runHook preBuild - ./Setup build - ${optionalString (!noHaddock && hasActiveLibrary) '' - ./Setup haddock --html \ - ${optionalString doHoogle "--hoogle"} \ - ${optionalString (hasActiveLibrary && hyperlinkSource) "--hyperlink-source"} - ''} + ./Setup build ${buildTarget} runHook postBuild ''; @@ -197,6 +212,16 @@ stdenv.mkDerivation ({ runHook postCheck ''; + haddockPhase = '' + runHook preHaddock + ${optionalString (!noHaddock && hasActiveLibrary) '' + ./Setup haddock --html \ + ${optionalString doHoogle "--hoogle"} \ + ${optionalString (hasActiveLibrary && hyperlinkSource) "--hyperlink-source"} + ''} + runHook postHaddock + ''; + installPhase = '' runHook preInstall @@ -242,10 +267,11 @@ stdenv.mkDerivation ({ }; - meta = { inherit homepage license platforms hydraPlatforms; } + meta = { inherit homepage license platforms; } // optionalAttrs broken { inherit broken; } // optionalAttrs (description != "") { inherit description; } // optionalAttrs (maintainers != []) { inherit maintainers; } + // optionalAttrs (hydraPlatforms != platforms) { inherit hydraPlatforms; } ; } diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix index 4648050dd73..2824296c08f 100644 --- a/pkgs/development/haskell-modules/with-packages-wrapper.nix +++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix @@ -30,7 +30,7 @@ let libDir = "$out/lib/ghc-${ghc.version}"; docDir = "$out/share/doc/ghc/html"; packageCfgDir = "${libDir}/package.conf.d"; - isHaskellPkg = x: (x ? pname) && (x ? version); + isHaskellPkg = x: (x ? pname) && (x ? version) && (x ? env); paths = stdenv.lib.filter isHaskellPkg (stdenv.lib.closePropagation packages); in if paths == [] then ghc else From 20560e667aabe660db7bbfa13e6841dc2fdca1e2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Jan 2015 22:51:21 +0100 Subject: [PATCH 119/185] Remove obsolete, broken, and unnecessary versions of GHC. These versions have been removed: - 6.4.2-binary.nix - 6.4.2.nix - 6.6.1.nix - 6.8.2.nix - 6.8.3.nix - 6.10.1-binary.nix - 6.10.1.nix - 6.10.2.nix - 6.10.3.nix - 6.11.nix - 6.12.1-binary.nix - 6.12.1.nix - 6.12.2.nix - 7.0.1.nix - 7.0.2.nix - 7.0.3.nix - 7.2.1.nix - 7.4.1.nix - 7.6.1.nix - 7.6.2.nix - 7.8.3-binary.nix As a rule of thumb, we keep the latest version in every major release. If someone feels up to the task of fixing versions 6.4.x, 6.6.x, and 6.8.x, then please don't hesitate to revive those builds. Fixes https://github.com/NixOS/nixpkgs/issues/5630. --- .../compilers/ghc/6.10.1-binary.nix | 103 ----------------- pkgs/development/compilers/ghc/6.10.1.nix | 59 ---------- pkgs/development/compilers/ghc/6.10.2.nix | 58 ---------- pkgs/development/compilers/ghc/6.10.3.nix | 59 ---------- pkgs/development/compilers/ghc/6.11.nix | 32 ------ .../compilers/ghc/6.12.1-binary.nix | 104 ------------------ pkgs/development/compilers/ghc/6.12.1.nix | 83 -------------- pkgs/development/compilers/ghc/6.12.2.nix | 83 -------------- .../compilers/ghc/6.4.2-binary.nix | 67 ----------- pkgs/development/compilers/ghc/6.4.2.nix | 28 ----- pkgs/development/compilers/ghc/6.6.1.nix | 46 -------- pkgs/development/compilers/ghc/6.8.2.nix | 35 ------ pkgs/development/compilers/ghc/6.8.3.nix | 37 ------- pkgs/development/compilers/ghc/7.0.1.nix | 83 -------------- pkgs/development/compilers/ghc/7.0.2.nix | 45 -------- pkgs/development/compilers/ghc/7.0.3.nix | 45 -------- pkgs/development/compilers/ghc/7.2.1.nix | 45 -------- pkgs/development/compilers/ghc/7.4.1.nix | 45 -------- pkgs/development/compilers/ghc/7.6.1.nix | 46 -------- pkgs/development/compilers/ghc/7.6.2.nix | 47 -------- .../compilers/ghc/7.8.3-binary.nix | 78 ------------- pkgs/top-level/haskell-defaults.nix | 71 ++---------- pkgs/top-level/haskell-ng.nix | 1 - 23 files changed, 10 insertions(+), 1290 deletions(-) delete mode 100644 pkgs/development/compilers/ghc/6.10.1-binary.nix delete mode 100644 pkgs/development/compilers/ghc/6.10.1.nix delete mode 100644 pkgs/development/compilers/ghc/6.10.2.nix delete mode 100644 pkgs/development/compilers/ghc/6.10.3.nix delete mode 100644 pkgs/development/compilers/ghc/6.11.nix delete mode 100644 pkgs/development/compilers/ghc/6.12.1-binary.nix delete mode 100644 pkgs/development/compilers/ghc/6.12.1.nix delete mode 100644 pkgs/development/compilers/ghc/6.12.2.nix delete mode 100644 pkgs/development/compilers/ghc/6.4.2-binary.nix delete mode 100644 pkgs/development/compilers/ghc/6.4.2.nix delete mode 100644 pkgs/development/compilers/ghc/6.6.1.nix delete mode 100644 pkgs/development/compilers/ghc/6.8.2.nix delete mode 100644 pkgs/development/compilers/ghc/6.8.3.nix delete mode 100644 pkgs/development/compilers/ghc/7.0.1.nix delete mode 100644 pkgs/development/compilers/ghc/7.0.2.nix delete mode 100644 pkgs/development/compilers/ghc/7.0.3.nix delete mode 100644 pkgs/development/compilers/ghc/7.2.1.nix delete mode 100644 pkgs/development/compilers/ghc/7.4.1.nix delete mode 100644 pkgs/development/compilers/ghc/7.6.1.nix delete mode 100644 pkgs/development/compilers/ghc/7.6.2.nix delete mode 100644 pkgs/development/compilers/ghc/7.8.3-binary.nix diff --git a/pkgs/development/compilers/ghc/6.10.1-binary.nix b/pkgs/development/compilers/ghc/6.10.1-binary.nix deleted file mode 100644 index 02e37cc42cf..00000000000 --- a/pkgs/development/compilers/ghc/6.10.1-binary.nix +++ /dev/null @@ -1,103 +0,0 @@ -{stdenv, fetchurl, perl, libedit, ncurses, gmp}: - -stdenv.mkDerivation rec { - version = "6.10.1"; - - name = "ghc-${version}-binary"; - - src = - if stdenv.system == "i686-linux" then - fetchurl { - # This binary requires libedit.so.0 (rather than libedit.so.2). - url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux.tar.bz2"; - sha256 = "18l0vwlf7y86s65klpdvz4ccp8kydvcmyh03c86hld8jvx16q7zz"; - } - else if stdenv.system == "x86_64-linux" then - fetchurl { - # Idem. - url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux.tar.bz2"; - sha256 = "14jvvn333i36wm7mmvi47jr93f5hxrw1h2dpjvqql0rp00svhzzg"; - } - else if stdenv.system == "i686-darwin" then - fetchurl { - # Idem. - url = "http://haskell.org/ghc/dist/${version}/maeder/ghc-${version}-i386-apple-darwin.tar.bz2"; - sha256 = "0lax61cfzxkrjb7an3magdax6c8fygsirpw9qfmc651k2sfby1mq"; - } - else throw "cannot bootstrap GHC on this platform"; - - buildInputs = [perl]; - - postUnpack = - # Strip is harmful, see also below. It's important that this happens - # first. The GHC Cabal build system makes use of strip by default and - # has hardcoded paths to /usr/bin/strip in many places. We replace - # those below, making them point to our dummy script. - '' - mkdir "$TMP/bin" - for i in strip; do - echo '#! ${stdenv.shell}' > "$TMP/bin/$i" - chmod +x "$TMP/bin/$i" - done - PATH="$TMP/bin:$PATH" - '' + - # On Linux, use patchelf to modify the executables so that they can - # find editline/gmp. - (if stdenv.isLinux then '' - find . -type f -perm +100 \ - -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${libedit}/lib:${ncurses}/lib:${gmp}/lib" {} \; - for prog in ld ar gcc strip ranlib; do - find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \; - done - '' else ""); - - configurePhase = '' - ${if stdenv.isDarwin then "export DYLD_LIBRARY_PATH=${gmp}/lib" else ""} - cp $(type -P pwd) utils/pwd/pwd - ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include - ''; - - # Stripping combined with patchelf breaks the executables (they die - # with a segfault or the kernel even refuses the execve). (NIXPKGS-85) - dontStrip = true; - - # No building is necessary, but calling make without flags ironically - # calls install-strip ... - buildPhase = "true"; - - # The binaries for Darwin use frameworks, so fake those frameworks, - # and create some wrapper scripts that set DYLD_FRAMEWORK_PATH so - # that the executables work with no special setup. - postInstall = - (if stdenv.isDarwin then - '' - mv $out/bin $out/bin-orig - mkdir $out/bin - for i in $(cd $out/bin-orig && ls); do - echo "#! $SHELL -e" >> $out/bin/$i - echo "export DYLD_LIBRARY_PATH=\"${gmp}/lib:${libedit}/lib\"" >> $out/bin/$i - echo "exec $out/bin-orig/$i \"\$@\"" >> $out/bin/$i - chmod +x $out/bin/$i - done - '' else "") - + - '' - # bah, the passing gmp doesn't work, so let's add it to the final package.conf in a quick but dirty way - sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp}/lib\",\2@" $out/lib/ghc-${version}/package.conf - - # Sanity check, can ghc create executables? - cd $TMP - mkdir test-ghc; cd test-ghc - cat > main.hs << EOF - module Main where - main = putStrLn "yes" - EOF - $out/bin/ghc --make main.hs - echo compilation ok - [ $(./main) == "yes" ] - ''; - - meta.license = stdenv.lib.licenses.bsd3; - meta.platforms = ["i686-darwin" "x86_64-linux" "i686-linux"]; -} diff --git a/pkgs/development/compilers/ghc/6.10.1.nix b/pkgs/development/compilers/ghc/6.10.1.nix deleted file mode 100644 index 7c18d76626e..00000000000 --- a/pkgs/development/compilers/ghc/6.10.1.nix +++ /dev/null @@ -1,59 +0,0 @@ -{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}: - -stdenv.mkDerivation rec { - version = "6.10.1"; - - name = "ghc-${version}"; - - homepage = "http://haskell.org/ghc"; - - src = fetchurl { - url = "${homepage}/dist/${version}/${name}-src.tar.bz2"; - sha256 = "16q08cxxsmh4hgjhvkl739pc1hh81gljycfq1d2z6m1ld3jpbi22"; - }; - - buildInputs = [ghc libedit perl gmp]; - - configureFlags=[ - "--with-gmp-libraries=${gmp}/lib" - "--with-gmp-includes=${gmp}/include" - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - meta = { - inherit homepage; - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; - - - passthru = { - corePackages = [ - [ "Cabal" "1.6.0.1" ] - [ "array" "0.2.0.0" ] - [ "base" "3.0.3.0" ] - [ "base" "4.0.0.0" ] - [ "bytestring" "0.9.1.4" ] - [ "containers" "0.2.0.0" ] - [ "directory" "1.0.0.2" ] - [ "editline" "0.2.1.0" ] - [ "filepath" "1.1.0.1" ] - [ "(ghc" "6.10.1)" ] - [ "ghc-prim" "0.1.0.0" ] - [ "haddock" "2.3.0" ] - [ "haskell98" "1.0.1.0" ] - [ "hpc" "0.5.0.2" ] - [ "integer" "0.1.0.0" ] - [ "old-locale" "1.0.0.1" ] - [ "old-time" "1.0.0.1" ] - [ "packedstring" "0.1.0.1" ] - [ "pretty" "1.0.1.0" ] - [ "process" "1.0.1.0" ] - [ "random" "1.0.0.1" ] - [ "rts" "1.0" ] - [ "syb" "0.1.0.0" ] - [ "template-haskell" "2.3.0.0" ] - [ "unix" "2.3.1.0" ] - ]; - }; -} diff --git a/pkgs/development/compilers/ghc/6.10.2.nix b/pkgs/development/compilers/ghc/6.10.2.nix deleted file mode 100644 index 9261ead80d7..00000000000 --- a/pkgs/development/compilers/ghc/6.10.2.nix +++ /dev/null @@ -1,58 +0,0 @@ -{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}: - -stdenv.mkDerivation rec { - version = "6.10.2"; - - name = "ghc-${version}"; - - homepage = "http://haskell.org/ghc"; - - src = fetchurl { - url = "${homepage}/dist/${version}/${name}-src.tar.bz2"; - sha256 = "0q3wgp8svfl54kpyp55a1kh63cni5vzz811hqjsps84jdg0lg56m"; - }; - - buildInputs = [ghc libedit perl gmp]; - - configureFlags=[ - "--with-gmp-libraries=${gmp}/lib" - "--with-gmp-includes=${gmp}/include" - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - meta = { - inherit homepage; - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; - - passthru = { - corePackages = [ - [ "Cabal" "1.6.0.3" ] - [ "array" "0.2.0.0" ] - [ "base" "3.0.3.1" ] - [ "base" "4.1.0.0" ] - [ "bytestring" "0.9.1.4" ] - [ "containers" "0.2.0.1" ] - [ "directory" "1.0.0.3" ] - [ "editline" "0.2.1.0" ] - [ "filepath" "1.1.0.2" ] - [ "(ghc" "6.10.2)" ] - [ "ghc-prim" "0.1.0.0" ] - [ "haddock" "2.4.2" ] - [ "haskell98" "1.0.1.0" ] - [ "hpc" "0.5.0.3" ] - [ "integer" "0.1.0.1" ] - [ "old-locale" "1.0.0.1" ] - [ "old-time" "1.0.0.2" ] - [ "packedstring" "0.1.0.1" ] - [ "pretty" "1.0.1.0" ] - [ "process" "1.0.1.1" ] - [ "random" "1.0.0.1" ] - [ "rts" "1.0" ] - [ "syb" "0.1.0.1" ] - [ "template-haskell" "2.3.0.1" ] - [ "unix" "2.3.2.0" ] - ]; - }; -} diff --git a/pkgs/development/compilers/ghc/6.10.3.nix b/pkgs/development/compilers/ghc/6.10.3.nix deleted file mode 100644 index 9ab6e2076b5..00000000000 --- a/pkgs/development/compilers/ghc/6.10.3.nix +++ /dev/null @@ -1,59 +0,0 @@ -{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}: - -stdenv.mkDerivation rec { - version = "6.10.3"; - - name = "ghc-${version}"; - - homepage = "http://haskell.org/ghc"; - - src = fetchurl { - url = "${homepage}/dist/${version}/${name}-src.tar.bz2"; - sha256 = "82d104ab8b24f27c3566b5693316c779427794a137237b3df925c55e20905893"; - }; - - buildInputs = [ghc libedit perl gmp]; - - configureFlags=[ - "--with-gmp-libraries=${gmp}/lib" - "--with-gmp-includes=${gmp}/include" - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - meta = { - inherit homepage; - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; - - - passthru = { - corePackages = [ - [ "Cabal" "1.6.0.3" ] - [ "array" "0.2.0.0" ] - [ "base" "3.0.3.1" ] - [ "base" "4.1.0.0" ] - [ "bytestring" "0.9.1.4" ] - [ "containers" "0.2.0.1" ] - [ "directory" "1.0.0.3" ] - [ "extensible-exceptions" "0.1.1.0" ] - [ "filepath" "1.1.0.2" ] - [ "ghc" "6.10.3" ] - [ "ghc-prim" "0.1.0.0" ] - [ "haddock" "2.4.2" ] - [ "haskell98" "1.0.1.0" ] - [ "hpc" "0.5.0.3" ] - [ "integer" "0.1.0.1" ] - [ "old-locale" "1.0.0.1" ] - [ "old-time" "1.0.0.2" ] - [ "packedstring" "0.1.0.1" ] - [ "pretty" "1.0.1.0" ] - [ "process" "1.0.1.1" ] - [ "random" "1.0.0.1" ] - [ "rts" "1.0" ] - [ "syb" "0.1.0.1" ] - [ "template-haskell" "2.3.0.1" ] - [ "unix" "2.3.2.0" ] - ]; - }; -} diff --git a/pkgs/development/compilers/ghc/6.11.nix b/pkgs/development/compilers/ghc/6.11.nix deleted file mode 100644 index 8d57ecd59ac..00000000000 --- a/pkgs/development/compilers/ghc/6.11.nix +++ /dev/null @@ -1,32 +0,0 @@ -{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses, happy, alex}: - -stdenv.mkDerivation rec { - version = "6.11.20090916"; - - name = "ghc-${version}"; - - homepage = "http://haskell.org/ghc"; - - src = fetchurl { - url = "${homepage}/dist/current/dist/${name}-src.tar.bz2"; - sha256 = "a229c5052f401d03cdb77b8a96643eb80ba3faf1a9d0578c6fede1ce2a63cede"; - }; - - buildInputs = [ghc libedit perl gmp happy alex]; - - configureFlags=[ - "--with-gmp-libraries=${gmp}/lib" - "--with-gmp-includes=${gmp}/include" - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - preConfigure=[ - "make distclean" - ]; - - meta = { - inherit homepage; - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; -} diff --git a/pkgs/development/compilers/ghc/6.12.1-binary.nix b/pkgs/development/compilers/ghc/6.12.1-binary.nix deleted file mode 100644 index 8d03ca40452..00000000000 --- a/pkgs/development/compilers/ghc/6.12.1-binary.nix +++ /dev/null @@ -1,104 +0,0 @@ -{stdenv, fetchurl, perl, ncurses, gmp}: - -stdenv.mkDerivation rec { - version = "6.12.1"; - - name = "ghc-${version}-binary"; - - src = - if stdenv.system == "i686-linux" then - fetchurl { - url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux-n.tar.bz2"; - sha256 = "15kp8mnm4ig6a7k1a1j12lyhdcs75myv6ralfywjzpl27pd77gmk"; - } - else if stdenv.system == "x86_64-linux" then - fetchurl { - url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux-n.tar.bz2"; - sha256 = "08cb4bgyj23qsbqay4pqs81jha40njkx63ng7l827cydx2pm3qxs"; - } - else throw "cannot bootstrap GHC on this platform"; - - buildInputs = [perl]; - - postUnpack = - # Strip is harmful, see also below. It's important that this happens - # first. The GHC Cabal build system makes use of strip by default and - # has hardcoded paths to /usr/bin/strip in many places. We replace - # those below, making them point to our dummy script. - '' - mkdir "$TMP/bin" - for i in strip; do - echo '#! ${stdenv.shell}' > "$TMP/bin/$i" - chmod +x "$TMP/bin/$i" - done - PATH="$TMP/bin:$PATH" - '' + - # We have to patch the GMP paths for the integer-gmp package. - '' - find . -name integer-gmp.buildinfo \ - -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp}/lib@" {} \; - '' + - # On Linux, use patchelf to modify the executables so that they can - # find editline/gmp. - (if stdenv.isLinux then '' - find . -type f -perm +100 \ - -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${ncurses}/lib:${gmp}/lib" {} \; - sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 - sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 - for prog in ld ar gcc strip ranlib; do - find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \; - done - '' else ""); - - configurePhase = '' - ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include - ''; - - # Stripping combined with patchelf breaks the executables (they die - # with a segfault or the kernel even refuses the execve). (NIXPKGS-85) - dontStrip = true; - - # No building is necessary, but calling make without flags ironically - # calls install-strip ... - buildPhase = "true"; - - # The binaries for Darwin use frameworks, so fake those frameworks, - # and create some wrapper scripts that set DYLD_FRAMEWORK_PATH so - # that the executables work with no special setup. - postInstall = - (if stdenv.isDarwin then - '' - mkdir -p $out/frameworks/GMP.framework/Versions/A - ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/GMP - ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/Versions/A/GMP - # !!! fix this - - mv $out/bin $out/bin-orig - mkdir $out/bin - for i in $(cd $out/bin-orig && ls); do - echo \"#! $SHELL -e\" >> $out/bin/$i - echo \"DYLD_FRAMEWORK_PATH=$out/frameworks exec $out/bin-orig/$i -framework-path $out/frameworks \\\"\\$@\\\"\" >> $out/bin/$i - chmod +x $out/bin/$i - done - '' else "") - + - '' - # bah, the passing gmp doesn't work, so let's add it to the final package.conf in a quick but dirty way - # sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp}/lib\",\2@" $out/lib/ghc-${version}/package.conf - - # Sanity check, can ghc create executables? - cd $TMP - mkdir test-ghc; cd test-ghc - cat > main.hs << EOF - module Main where - main = putStrLn "yes" - EOF - $out/bin/ghc --make main.hs - echo compilation ok - [ $(./main) == "yes" ] - ''; - - meta.license = stdenv.lib.licenses.bsd3; - meta.platforms = ["x86_64-linux" "i686-linux"]; -} diff --git a/pkgs/development/compilers/ghc/6.12.1.nix b/pkgs/development/compilers/ghc/6.12.1.nix deleted file mode 100644 index b92484973f0..00000000000 --- a/pkgs/development/compilers/ghc/6.12.1.nix +++ /dev/null @@ -1,83 +0,0 @@ -{stdenv, fetchurl, ghc, perl, gmp, ncurses}: - -stdenv.mkDerivation rec { - version = "6.12.1"; - - name = "ghc-${version}"; - - src = fetchurl { - url = http://haskell.org/ghc/dist/6.12.1/ghc-6.12.1-src.tar.bz2; - sha256 = "0ajm4sypk4zgjp0m6i03fadyv5dm9vlqfnvsx1g94yk7vnd9zyfd"; - }; - - buildInputs = [ghc perl gmp ncurses]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - ]; - inherit (ghc.meta) license platforms; - }; - - # TODO: requires a comment as to what it does and why it is needed. - passthru = { - corePackages = [ - [ "Cabal" "1.8.0.2" ] - [ "array" "0.3.0.0" ] - [ "base" "3.0.3.2" ] - [ "base" "4.2.0.0" ] - [ "bin-package-db" "0.0.0.0" ] - [ "bytestring" "0.9.1.5" ] - [ "containers" "0.3.0.0" ] - [ "directory" "1.0.1.0" ] - [ "dph-base" "0.4.0" ] - [ "dph-par" "0.4.0" ] - [ "dph-prim-interface" "0.4.0" ] - [ "dph-prim-par" "0.4.0" ] - [ "dph-prim-seq" "0.4.0" ] - [ "dph-seq" "0.4.0" ] - [ "extensible-exceptions" "0.1.1.1" ] - [ "ffi" "1.0" ] - [ "filepath" "1.1.0.3" ] - [ "ghc" "6.12.1" ] - [ "ghc-binary" "0.5.0.2" ] - [ "ghc-prim" "0.2.0.0" ] - [ "haskell98" "1.0.1.1" ] - [ "hpc" "0.5.0.4" ] - [ "integer-gmp" "0.2.0.0" ] - [ "old-locale" "1.0.0.2" ] - [ "old-time" "1.0.0.3" ] - [ "pretty" "1.0.1.1" ] - [ "process" "1.0.1.2" ] - [ "random" "1.0.0.2" ] - [ "rts" "1.0" ] - [ "syb" "0.1.0.2" ] - [ "template-haskell" "2.4.0.0" ] - [ "time" "1.1.4" ] - [ "unix" "2.4.0.0" ] - [ "utf8-string" "0.3.4" ] - ]; - }; -} diff --git a/pkgs/development/compilers/ghc/6.12.2.nix b/pkgs/development/compilers/ghc/6.12.2.nix deleted file mode 100644 index 8cf505488cb..00000000000 --- a/pkgs/development/compilers/ghc/6.12.2.nix +++ /dev/null @@ -1,83 +0,0 @@ -{stdenv, fetchurl, ghc, perl, gmp, ncurses}: - -stdenv.mkDerivation rec { - version = "6.12.2"; - - name = "ghc-${version}"; - - src = fetchurl { - url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2"; - sha256 = "7f1e39f0b3ddaca35b55cd430ca058d1c4678445a7177391c9cb6342b7c41a30"; - }; - - buildInputs = [ghc perl gmp ncurses]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - ]; - inherit (ghc.meta) license platforms; - }; - - # TODO: requires a comment as to what it does and why it is needed. - passthru = { - corePackages = [ - [ "Cabal" "1.8.0.2" ] - [ "array" "0.3.0.0" ] - [ "base" "3.0.3.2" ] - [ "base" "4.2.0.0" ] - [ "bin-package-db" "0.0.0.0" ] - [ "bytestring" "0.9.1.5" ] - [ "containers" "0.3.0.0" ] - [ "directory" "1.0.1.0" ] - [ "dph-base" "0.4.0" ] - [ "dph-par" "0.4.0" ] - [ "dph-prim-interface" "0.4.0" ] - [ "dph-prim-par" "0.4.0" ] - [ "dph-prim-seq" "0.4.0" ] - [ "dph-seq" "0.4.0" ] - [ "extensible-exceptions" "0.1.1.1" ] - [ "ffi" "1.0" ] - [ "filepath" "1.1.0.3" ] - [ "ghc" "6.12.1" ] - [ "ghc-binary" "0.5.0.2" ] - [ "ghc-prim" "0.2.0.0" ] - [ "haskell98" "1.0.1.1" ] - [ "hpc" "0.5.0.4" ] - [ "integer-gmp" "0.2.0.0" ] - [ "old-locale" "1.0.0.2" ] - [ "old-time" "1.0.0.3" ] - [ "pretty" "1.0.1.1" ] - [ "process" "1.0.1.2" ] - [ "random" "1.0.0.2" ] - [ "rts" "1.0" ] - [ "syb" "0.1.0.2" ] - [ "template-haskell" "2.4.0.0" ] - [ "time" "1.1.4" ] - [ "unix" "2.4.0.0" ] - [ "utf8-string" "0.3.4" ] - ]; - }; -} diff --git a/pkgs/development/compilers/ghc/6.4.2-binary.nix b/pkgs/development/compilers/ghc/6.4.2-binary.nix deleted file mode 100644 index 5485326e2e7..00000000000 --- a/pkgs/development/compilers/ghc/6.4.2-binary.nix +++ /dev/null @@ -1,67 +0,0 @@ -{stdenv, fetchurl, perl, readline, ncurses, gmp}: - -stdenv.mkDerivation { - name = if stdenv.system == "i686-darwin" then "ghc-6.6.1-binary" else "ghc-6.4.2-binary"; - - src = - if stdenv.system == "i686-linux" then - fetchurl { - url = http://tarballs.nixos.org/ghc-6.4.2-i386-unknown-linux.tar.bz2; - md5 = "092fe2e25dab22b926babe97cc77db1f"; - } - else if stdenv.system == "x86_64-linux" then - fetchurl { - url = http://haskell.org/ghc/dist/6.4.2/ghc-6.4.2-x86_64-unknown-linux.tar.bz2; - md5 = "8f5fe48798f715cd05214a10987bf6d5"; - } - else if stdenv.system == "i686-darwin" then - /* Yes, this isn't GHC 6.4.2. But IIRC either there was no - 6.4.2 binary for Darwin, or it didn't work. In any case, in - Nixpkgs we just need this bootstrapping a "real" GHC. */ - fetchurl { - url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-i386-apple-darwin.tar.bz2; - sha256 = "1drbsicanr6jlykvs4vs6gbi2q9ac1bcaxz2vzwh3pfv3lfibwia"; - } - else throw "cannot bootstrap GHC on this platform"; - - buildInputs = [perl]; - - # On Linux, use patchelf to modify the executables so that they can - # find readline/gmp. - postBuild = if stdenv.isLinux then " - find . -type f -perm +100 \\ - -exec patchelf --interpreter \"$(cat $NIX_CC/nix-support/dynamic-linker)\" \\ - --set-rpath \"${readline}/lib:${ncurses}/lib:${gmp}/lib\" {} \\; - " else ""; - - # Stripping combined with patchelf breaks the executables (they die - # with a segfault or the kernel even refuses the execve). (NIXPKGS-85) - dontStrip = true; - - # The binaries for Darwin use frameworks, so fake those frameworks, - # and create some wrapper scripts that set DYLD_FRAMEWORK_PATH so - # that the executables work with no special setup. - postInstall = if stdenv.isDarwin then '' - - mkdir -p $out/frameworks/GMP.framework/Versions/A - ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/GMP - ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/Versions/A/GMP - mkdir -p $out/frameworks/GNUreadline.framework/Versions/A - ln -s ${readline}/lib/libreadline.dylib $out/frameworks/GNUreadline.framework/GNUreadline - ln -s ${readline}/lib/libreadline.dylib $out/frameworks/GNUreadline.framework/Versions/A/GNUreadline - - mkdir $out/bin-orig - for i in $(cd $out/bin && ls *); do - mv $out/bin/$i $out/bin-orig/$i - echo "#! $SHELL -e" >> $out/bin/$i - extraFlag= - if test $i != ghc-pkg; then extraFlag="-framework-path $out/frameworks"; fi - echo "DYLD_FRAMEWORK_PATH=$out/frameworks exec $out/bin-orig/$i $extraFlag \"\$@\"" >> $out/bin/$i - chmod +x $out/bin/$i - done - - '' else ""; - - meta.license = stdenv.lib.licenses.bsd3; - meta.platforms = ["i686-darwin" "x86_64-linux" "i686-linux"]; -} diff --git a/pkgs/development/compilers/ghc/6.4.2.nix b/pkgs/development/compilers/ghc/6.4.2.nix deleted file mode 100644 index dfd38cc6a1a..00000000000 --- a/pkgs/development/compilers/ghc/6.4.2.nix +++ /dev/null @@ -1,28 +0,0 @@ -{stdenv, fetchurl, perl, ghc, m4, readline, ncurses, gmp}: - -stdenv.mkDerivation { - name = "ghc-6.4.2"; - - src = fetchurl { - url = http://www.haskell.org/ghc/dist/6.4.2/ghc-6.4.2-src.tar.bz2; - md5 = "a394bf14e94c3bca5507d568fcc03375"; - }; - - buildInputs = [perl ghc m4]; - - propagatedBuildInputs = [readline ncurses gmp]; - - configureFlags = "--with-gcc=${stdenv.cc}/bin/gcc"; - - preConfigure = - '' - # Don't you hate build processes that write in $HOME? :-( - export HOME=$(pwd)/fake-home - mkdir -p $HOME - ''; - - meta = { - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; -} diff --git a/pkgs/development/compilers/ghc/6.6.1.nix b/pkgs/development/compilers/ghc/6.6.1.nix deleted file mode 100644 index 0f91b9d5052..00000000000 --- a/pkgs/development/compilers/ghc/6.6.1.nix +++ /dev/null @@ -1,46 +0,0 @@ -{stdenv, fetchurl, readline, ghc, perl58, m4, gmp, ncurses}: - -stdenv.mkDerivation (rec { - name = "ghc-6.6.1"; - - src = map fetchurl [ - { url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-src.tar.bz2; - md5 = "ba9f4aec2fde5ff1e1548ae69b78aeb0"; - } - { url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-src-extralibs.tar.bz2; - md5 = "43a26b81608b206c056adc3032f7da2a"; - } - ]; - - buildInputs = [ghc readline perl58 m4 gmp]; - - meta = { - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; - - postInstall = '' - mkdir -p "$out/nix-support" - echo "# Path to the GHC compiler directory in the store" > $out/nix-support/setup-hook - echo "ghc=$out" >> $out/nix-support/setup-hook - echo "" >> $out/nix-support/setup-hook - cat $setupHook >> $out/nix-support/setup-hook - ''; - - configureFlags=[ - "--with-gmp-libraries=${gmp}/lib" - "--with-readline-libraries=${readline}/lib" - "--with-gmp-includes=${gmp}/include" - "--with-gcc=${gcc}/bin/gcc" - ]; - - preConfigure = '' - # still requires a hack for ncurses - sed -i "s|^\(library-dirs.*$\)|\1 \"${ncurses}/lib\"|" libraries/readline/package.conf.in - # fix for gcc 4.2 - echo "SplitObjs=NO" >> mk/build.mk - ''; - - inherit (stdenv) gcc; - inherit readline gmp ncurses; -}) diff --git a/pkgs/development/compilers/ghc/6.8.2.nix b/pkgs/development/compilers/ghc/6.8.2.nix deleted file mode 100644 index 0f649745a1e..00000000000 --- a/pkgs/development/compilers/ghc/6.8.2.nix +++ /dev/null @@ -1,35 +0,0 @@ -{stdenv, fetchurl, readline, ghc, perl, m4, gmp, ncurses}: - -stdenv.mkDerivation (rec { - version = "6.8.2"; - name = "ghc-${version}"; - homepage = "http://www.haskell.org/ghc"; - - src = map fetchurl [ - { url = "${homepage}/dist/${version}/${name}-src.tar.bz2"; - sha256 = "2d10f973c35e8d7d9f62b53e26fef90177a9a15105cda4b917340ba7696a22d9"; - } - { url = "${homepage}/dist/${version}/${name}-src-extralibs.tar.bz2"; - md5 = "d199c50814188fb77355d41058b8613c"; - } - ]; - - buildInputs = [ghc readline perl m4 gmp]; - - meta = { - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; - - configureFlags=[ - "--with-gmp-libraries=${gmp}/lib" - "--with-gmp-includes=${gmp}/include" - "--with-readline-libraries=${readline}/lib" - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - preConfigure = " - # still requires a hack for ncurses - sed -i \"s|^\\\(ld-options.*$\\\)|\\\1 -L${ncurses}/lib|\" libraries/readline/readline.buildinfo.in - "; -}) diff --git a/pkgs/development/compilers/ghc/6.8.3.nix b/pkgs/development/compilers/ghc/6.8.3.nix deleted file mode 100644 index ea116781afb..00000000000 --- a/pkgs/development/compilers/ghc/6.8.3.nix +++ /dev/null @@ -1,37 +0,0 @@ -{stdenv, fetchurl, readline, ghc, perl, m4, gmp, ncurses, haddock}: - -stdenv.mkDerivation rec { - version = "6.8.3"; - name = "ghc-${version}"; - homepage = "http://www.haskell.org/ghc"; - - src = map fetchurl [ - { url = "${homepage}/dist/${version}/${name}-src.tar.bz2"; - sha256 = "1fc1ff82a555532f1c9d2dc628fd9de5e6ebab2ce6ee9490a34174ceb6f76e6b"; - } - { url = "${homepage}/dist/${version}/${name}-src-extralibs.tar.bz2"; - sha256 = "ee2f5ba6a46157fc53eae515cb6fa1ed3c5023e7eac15981d92af0af00ee2ba2"; - } - ]; - - buildInputs = [ghc readline perl m4 gmp haddock]; - - meta = { - description = "The Glasgow Haskell Compiler"; - inherit (ghc.meta) license platforms; - }; - - configureFlags=[ - "--with-gmp-libraries=${gmp}/lib" - "--with-gmp-includes=${gmp}/include" - "--with-readline-libraries=${readline}/lib" - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - preConfigure = '' - # still requires a hack for ncurses - sed -i "s|^\(ld-options.*$\)|\1 -L${ncurses}/lib|" libraries/readline/readline.buildinfo.in - # build haddock docs - echo "HADDOCK_DOCS = YES" >> mk/build.mk - ''; -} diff --git a/pkgs/development/compilers/ghc/7.0.1.nix b/pkgs/development/compilers/ghc/7.0.1.nix deleted file mode 100644 index b61375c6657..00000000000 --- a/pkgs/development/compilers/ghc/7.0.1.nix +++ /dev/null @@ -1,83 +0,0 @@ -{stdenv, fetchurl, ghc, perl, gmp, ncurses}: - -stdenv.mkDerivation rec { - version = "7.0.1"; - - name = "ghc-${version}"; - - src = fetchurl { - url = "http://www.haskell.org/ghc/dist/${version}/${name}-src.tar.bz2"; - sha256 = "1iciljngxmqy465cw3pkl6jp0ydiils4bfz6ixfaxk7aqv7r7xsi"; - }; - - buildInputs = [ghc perl gmp ncurses]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - ]; - inherit (ghc.meta) license platforms; - }; - - # TODO: requires a comment as to what it does and why it is needed. - passthru = { - corePackages = [ - [ "Cabal" "1.8.0.2" ] - [ "array" "0.3.0.0" ] - [ "base" "3.0.3.2" ] - [ "base" "4.2.0.0" ] - [ "bin-package-db" "0.0.0.0" ] - [ "bytestring" "0.9.1.5" ] - [ "containers" "0.3.0.0" ] - [ "directory" "1.0.1.0" ] - [ "dph-base" "0.4.0" ] - [ "dph-par" "0.4.0" ] - [ "dph-prim-interface" "0.4.0" ] - [ "dph-prim-par" "0.4.0" ] - [ "dph-prim-seq" "0.4.0" ] - [ "dph-seq" "0.4.0" ] - [ "extensible-exceptions" "0.1.1.1" ] - [ "ffi" "1.0" ] - [ "filepath" "1.1.0.3" ] - [ "ghc" "6.12.1" ] - [ "ghc-binary" "0.5.0.2" ] - [ "ghc-prim" "0.2.0.0" ] - [ "haskell98" "1.0.1.1" ] - [ "hpc" "0.5.0.4" ] - [ "integer-gmp" "0.2.0.0" ] - [ "old-locale" "1.0.0.2" ] - [ "old-time" "1.0.0.3" ] - [ "pretty" "1.0.1.1" ] - [ "process" "1.0.1.2" ] - [ "random" "1.0.0.2" ] - [ "rts" "1.0" ] - [ "syb" "0.1.0.2" ] - [ "template-haskell" "2.4.0.0" ] - [ "time" "1.1.4" ] - [ "unix" "2.4.0.0" ] - [ "utf8-string" "0.3.4" ] - ]; - }; -} diff --git a/pkgs/development/compilers/ghc/7.0.2.nix b/pkgs/development/compilers/ghc/7.0.2.nix deleted file mode 100644 index 6c72527d36b..00000000000 --- a/pkgs/development/compilers/ghc/7.0.2.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: - -stdenv.mkDerivation rec { - version = "7.0.2"; - name = "ghc-${version}"; - - src = fetchurl { - url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2"; - sha256 = "f0551f1af2f008a8a14a888b70c0557e00dd04f9ae309ac91897306cd04a6668"; - }; - - buildInputs = [ ghc perl gmp ncurses ]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - ]; - inherit (ghc.meta) license platforms; - broken = true; - }; - -} diff --git a/pkgs/development/compilers/ghc/7.0.3.nix b/pkgs/development/compilers/ghc/7.0.3.nix deleted file mode 100644 index 580b1d22983..00000000000 --- a/pkgs/development/compilers/ghc/7.0.3.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: - -stdenv.mkDerivation rec { - version = "7.0.3"; - name = "ghc-${version}"; - - src = fetchurl { - url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2"; - sha256 = "1nfc2c6bdcdfg3f3d9q5v109jrrwhz6by3qa4qi7k0xbip16jq8m"; - }; - - buildInputs = [ ghc perl gmp ncurses ]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - ]; - inherit (ghc.meta) license platforms; - broken = true; - }; - -} diff --git a/pkgs/development/compilers/ghc/7.2.1.nix b/pkgs/development/compilers/ghc/7.2.1.nix deleted file mode 100644 index 4417a0e6a7e..00000000000 --- a/pkgs/development/compilers/ghc/7.2.1.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: - -stdenv.mkDerivation rec { - version = "7.2.1"; - name = "ghc-${version}"; - - src = fetchurl { - url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2"; - sha256 = "099w2bvx07jq4b1k8f1hspri30wbk35dz6ilsivxr2xg661c2qjm"; - }; - - buildInputs = [ ghc perl gmp ncurses ]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons - ]; - inherit (ghc.meta) license platforms; - }; - -} diff --git a/pkgs/development/compilers/ghc/7.4.1.nix b/pkgs/development/compilers/ghc/7.4.1.nix deleted file mode 100644 index 933e81b4495..00000000000 --- a/pkgs/development/compilers/ghc/7.4.1.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: - -stdenv.mkDerivation rec { - version = "7.4.1"; - name = "ghc-${version}"; - - src = fetchurl { - url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2"; - sha256 = "0ycscsagyy9n796a59q6761s6ar50d8inibvnrcp96siksj0j73j"; - }; - - buildInputs = [ ghc perl gmp ncurses ]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons - ]; - platforms = ["x86_64-linux" "i686-linux" "i686-darwin" "x86_64-darwin"]; - }; - -} diff --git a/pkgs/development/compilers/ghc/7.6.1.nix b/pkgs/development/compilers/ghc/7.6.1.nix deleted file mode 100644 index ae22f747d76..00000000000 --- a/pkgs/development/compilers/ghc/7.6.1.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: - -stdenv.mkDerivation rec { - version = "7.6.1"; - - name = "ghc-${version}"; - - src = fetchurl { - url = "http://haskell.org/ghc/dist/7.6.1/${name}-src.tar.bz2"; - sha256 = "1q5rqp8z90mq6ysf7h28zkbhfaxlrpva2qy0wnkr43d7214dzp7i"; - }; - - buildInputs = [ ghc perl gmp ncurses ]; - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure - ''; - - configureFlags=[ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons - ]; - inherit (ghc.meta) license platforms; - }; - -} diff --git a/pkgs/development/compilers/ghc/7.6.2.nix b/pkgs/development/compilers/ghc/7.6.2.nix deleted file mode 100644 index 732c3cc66a5..00000000000 --- a/pkgs/development/compilers/ghc/7.6.2.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: - -stdenv.mkDerivation rec { - version = "7.6.2"; - - name = "ghc-${version}"; - - src = fetchurl { - url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2"; - sha256 = "d5f45184abeacf7e9c6b4f63c7101a5c1d7b4fe9007901159e2287ecf38de533"; - }; - - buildInputs = [ ghc perl gmp ncurses ]; - - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ''; - - preConfigure = '' - echo "${buildMK}" > mk/build.mk - sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure - ''; - - configureFlags = [ - "--with-gcc=${stdenv.cc}/bin/gcc" - ]; - - # required, because otherwise all symbols from HSffi.o are stripped, and - # that in turn causes GHCi to abort - stripDebugFlags=["-S" "--keep-file-symbols"]; - - meta = { - homepage = "http://haskell.org/ghc"; - description = "The Glasgow Haskell Compiler"; - maintainers = [ - stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons - ]; - inherit (ghc.meta) license platforms; - }; - -} diff --git a/pkgs/development/compilers/ghc/7.8.3-binary.nix b/pkgs/development/compilers/ghc/7.8.3-binary.nix deleted file mode 100644 index 91a156ab4e2..00000000000 --- a/pkgs/development/compilers/ghc/7.8.3-binary.nix +++ /dev/null @@ -1,78 +0,0 @@ -{stdenv, fetchurl, perl, ncurses, gmp}: - -stdenv.mkDerivation rec { - version = "7.8.3"; - - name = "ghc-${version}-binary"; - - src = - if stdenv.system == "x86_64-darwin" then - fetchurl { - url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-apple-darwin.tar.bz2"; - sha256 = "1ja0cq5xyjcvjpvjmm4nzhkpmwfs2kjlldbc48lxcs9rmqi7rnay"; - } - else throw "cannot bootstrap GHC on this platform"; - - buildInputs = [perl]; - - postUnpack = - # Strip is harmful, see also below. It's important that this happens - # first. The GHC Cabal build system makes use of strip by default and - # has hardcoded paths to /usr/bin/strip in many places. We replace - # those below, making them point to our dummy script. - '' - mkdir "$TMP/bin" - for i in strip; do - echo '#! ${stdenv.shell}' > "$TMP/bin/$i" - chmod +x "$TMP/bin/$i" - done - PATH="$TMP/bin:$PATH" - '' + - # We have to patch the GMP paths for the integer-gmp package. - '' - find . -name integer-gmp.buildinfo \ - -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp}/lib@" {} \; - '' + - # On Linux, use patchelf to modify the executables so that they can - # find editline/gmp. - (if stdenv.isLinux then '' - find . -type f -perm +100 \ - -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${ncurses}/lib:${gmp}/lib" {} \; - sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 - sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 - for prog in ld ar gcc strip ranlib; do - find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \; - done - '' else ""); - - configurePhase = '' - ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib \ - --with-gmp-includes=${gmp}/include - ''; - - # Stripping combined with patchelf breaks the executables (they die - # with a segfault or the kernel even refuses the execve). (NIXPKGS-85) - dontStrip = true; - - # No building is necessary, but calling make without flags ironically - # calls install-strip ... - buildPhase = "true"; - - postInstall = - '' - # Sanity check, can ghc create executables? - cd $TMP - mkdir test-ghc; cd test-ghc - cat > main.hs << EOF - module Main where - main = putStrLn "yes" - EOF - $out/bin/ghc --make main.hs - echo compilation ok - [ $(./main) == "yes" ] - ''; - - meta.license = stdenv.lib.licenses.bsd3; - meta.platforms = ["x86_64-darwin"]; -} diff --git a/pkgs/top-level/haskell-defaults.nix b/pkgs/top-level/haskell-defaults.nix index 9e3c8b149d4..509c3d5acdf 100644 --- a/pkgs/top-level/haskell-defaults.nix +++ b/pkgs/top-level/haskell-defaults.nix @@ -134,7 +134,6 @@ binary = super.binary_0_7_2_2.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; cabalInstall_1_16_0_2 = super.cabalInstall_1_16_0_2; caseInsensitive = super.caseInsensitive.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; - GLUT = self.GLUT_2_2_2_1; happy = super.happy.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; hashable = super.hashable.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; hashtables = super.hashtables.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; @@ -142,8 +141,6 @@ HTTP = super.HTTP.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; HUnit = super.HUnit.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; network = super.network_2_2_1_7.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; - OpenGLRaw = self.OpenGLRaw_1_3_0_0; - OpenGL = self.OpenGL_2_6_0_1; parsec = super.parsec.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; QuickCheck = super.QuickCheck.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; stm = self.stm_2_4_2.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; }; @@ -158,20 +155,17 @@ # Abstraction for Haskell packages collections packagesFun = makeOverridable - ({ ghcPath - , ghcBinary ? ghc6101Binary + ({ ghc , prefFun , extension ? (self : super : {}) , profExplicit ? false, profDefault ? false , modifyPrio ? lowPrio - , extraArgs ? {} } : let haskellPackagesClass = import ./haskell-packages.nix { - inherit pkgs newScope modifyPrio; + inherit pkgs newScope ghc modifyPrio; enableLibraryProfiling = if profExplicit then profDefault else config.cabal.libraryProfiling or profDefault; - ghc = callPackage ghcPath ({ ghc = ghcBinary; } // extraArgs); }; haskellPackagesPrefsClass = self : let super = haskellPackagesClass self; in super // prefFun self super; haskellPackagesExtensionClass = self : let super = haskellPackagesPrefsClass self; in super // extension self super; @@ -195,60 +189,19 @@ modifyPrio = defaultVersionPrioFun true; }; }; - # Binary versions of GHC - # - # GHC binaries are around for bootstrapping purposes - - ghc6101Binary = lowPrio (callPackage ../development/compilers/ghc/6.10.1-binary.nix { - gmp = pkgs.gmp4; - }); - - ghc6102Binary = lowPrio (callPackage ../development/compilers/ghc/6.10.2-binary.nix { - gmp = pkgs.gmp4; - }); - - ghc6121Binary = lowPrio (callPackage ../development/compilers/ghc/6.12.1-binary.nix { - gmp = pkgs.gmp4; - }); - - ghc704Binary = lowPrio (callPackage ../development/compilers/ghc/7.0.4-binary.nix { - gmp = pkgs.gmp4; - }); - - ghc742Binary = lowPrio (callPackage ../development/compilers/ghc/7.4.2-binary.nix { - gmp = pkgs.gmp4; - }); - - ghc783Binary = lowPrio (callPackage ../development/compilers/ghc/7.8.3-binary.nix {}); - - ghc6101BinaryDarwin = if stdenv.isDarwin then ghc704Binary else ghc6101Binary; - ghc6121BinaryDarwin = if stdenv.isDarwin then ghc704Binary else ghc6121Binary; - # Compiler configurations # # Here, we associate compiler versions with bootstrap compiler versions and # preference functions. - packages_ghcHEAD = - packages { ghcPath = ../development/compilers/ghc/head.nix; - ghcBinary = pkgs.haskellPackages.ghcPlain; - prefFun = ghcHEADPrefs; - extraArgs = { - happy = pkgs.haskellPackages.happy; - alex = pkgs.haskellPackages.alex; - }; - }; - packages_ghc784 = - packages { ghcPath = ../development/compilers/ghc/7.8.4.nix; - ghcBinary = if stdenv.isDarwin then ghc783Binary else ghc742Binary; + packages { ghc = pkgs.haskell-ng.compiler.ghc784; prefFun = ghc784Prefs; }; packages_ghcjs = packages { - ghcPath = ../development/compilers/ghc/7.8.4.nix; - ghcBinary = if stdenv.isDarwin then ghc783Binary else ghc742Binary; + ghc = pkgs.haskell-ng.compiler.ghc784; prefFun = self : super : super // { ghc = let parent = packages_ghc784; in callPackage ../development/compilers/ghcjs/wrapper.nix { @@ -329,36 +282,32 @@ }; packages_ghc763 = - packages { ghcPath = ../development/compilers/ghc/7.6.3.nix; - ghcBinary = ghc704Binary; + packages { ghc = pkgs.haskell-ng.compiler.ghc763; prefFun = ghc763Prefs; }; packages_ghc742 = - packages { ghcPath = ../development/compilers/ghc/7.4.2.nix; - ghcBinary = ghc6121BinaryDarwin; + packages { ghc = pkgs.haskell-ng.compiler.ghc742; prefFun = ghc742Prefs; }; packages_ghc722 = - packages { ghcPath = ../development/compilers/ghc/7.2.2.nix; - ghcBinary = ghc6121BinaryDarwin; + packages { ghc = pkgs.haskell-ng.compiler.ghc722; prefFun = ghc722Prefs; }; packages_ghc704 = - packages { ghcPath = ../development/compilers/ghc/7.0.4.nix; - ghcBinary = ghc6101BinaryDarwin; + packages { ghc = pkgs.haskell-ng.compiler.ghc704; prefFun = ghc704Prefs; }; packages_ghc6123 = - packages { ghcPath = ../development/compilers/ghc/6.12.3.nix; + packages { ghc = pkgs.haskell-ng.compiler.ghc6123; prefFun = ghc6123Prefs; }; packages_ghc6104 = - packages { ghcPath = ../development/compilers/ghc/6.10.4.nix; + packages { ghc = pkgs.haskell-ng.compiler.ghc6104; prefFun = ghc6104Prefs; }; diff --git a/pkgs/top-level/haskell-ng.nix b/pkgs/top-level/haskell-ng.nix index 17fe57df5e7..19c70342c1b 100644 --- a/pkgs/top-level/haskell-ng.nix +++ b/pkgs/top-level/haskell-ng.nix @@ -9,7 +9,6 @@ rec { ghc6102Binary = callPackage ../development/compilers/ghc/6.10.2-binary.nix { gmp = pkgs.gmp4; }; ghc704Binary = callPackage ../development/compilers/ghc/7.0.4-binary.nix { gmp = pkgs.gmp4; }; ghc742Binary = callPackage ../development/compilers/ghc/7.4.2-binary.nix { gmp = pkgs.gmp4; }; - ghc783Binary = callPackage ../development/compilers/ghc/7.8.3-binary.nix { gmp = pkgs.gmp4; }; ghc6104 = callPackage ../development/compilers/ghc/6.10.4.nix { ghc = compiler.ghc6102Binary; gmp = pkgs.gmp.override { withStatic = true; }; }; ghc6123 = callPackage ../development/compilers/ghc/6.12.3.nix { ghc = compiler.ghc6102Binary; gmp = pkgs.gmp.override { withStatic = true; }; }; From 7c1eae89f06ff4ba70c98e5d0cdbf7ea2cdb8125 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 10:18:37 +0100 Subject: [PATCH 120/185] hackage-packages.nix: update from Hackage 2015-01-17T11:39:27+0100 --- .../haskell-modules/hackage-packages.nix | 298 +++++++++++++----- 1 file changed, 215 insertions(+), 83 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 3900cc76cd9..721e270ab30 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -18132,18 +18132,17 @@ self: { "apiary-purescript" = callPackage ({ mkDerivation, apiary, base, bytestring, data-default-class - , filepath, Glob, parsec, purescript, template-haskell, text - , unordered-containers, utf8-string + , filepath, Glob, parsec, purescript, text, unordered-containers + , utf8-string }: mkDerivation { pname = "apiary-purescript"; - version = "1.2.1"; - sha256 = "1qz51ncl68lvwx91xcqvcvj4nakpg309c85zhxk0z0d2rv8j45bf"; + version = "1.2.2"; + sha256 = "1i7a9abw8ni0qr24j7kpkp83ml4p5gbz602x4pb8f7z91rqqk8y8"; buildDepends = [ apiary base bytestring data-default-class filepath Glob parsec - purescript template-haskell text unordered-containers utf8-string + purescript text unordered-containers utf8-string ]; - jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "purescript compiler for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -18697,19 +18696,19 @@ self: { }) {}; "array-forth" = callPackage - ({ mkDerivation, base, Chart, HUnit, mcmc-synthesis, MonadRandom - , OddWord, optparse-applicative, QuickCheck, split + ({ mkDerivation, array, base, HUnit, mcmc-synthesis + , modular-arithmetic, MonadRandom, OddWord, QuickCheck, split , test-framework-hunit, test-framework-quickcheck2 , test-framework-th, vector }: mkDerivation { pname = "array-forth"; - version = "0.2.0.6"; - sha256 = "1234szy0ibbyyzglpz0rv5w4wk44rkq8wdl5s3kmnvlvjyxn95nf"; + version = "0.2.1.4"; + sha256 = "03kjkpygi9jc8vrvnw9i8zwbfaihsl50bi39j0liclja442j9h5m"; isLibrary = true; isExecutable = true; buildDepends = [ - base Chart mcmc-synthesis MonadRandom OddWord optparse-applicative + array base mcmc-synthesis modular-arithmetic MonadRandom OddWord split vector ]; testDepends = [ @@ -18761,8 +18760,8 @@ self: { ({ mkDerivation, base, containers, mtl }: mkDerivation { pname = "arrow-list"; - version = "0.6.1.5"; - sha256 = "0i0rwjrrvbi9fmwdzmz6vzkkr63pl2df653anjwcw3xr7ccb16xm"; + version = "0.7"; + sha256 = "1n6m77hdkpjd12r0b8fwxiz3jz0j86cplgsk27m2raj86vr3dy1k"; buildDepends = [ base containers mtl ]; homepage = "https://github.com/silkapp/arrow-list"; description = "List arrows for Haskell"; @@ -19375,8 +19374,9 @@ self: { ({ mkDerivation, base, ghc-prim, primitive }: mkDerivation { pname = "atomic-primops"; - version = "0.6.1.1"; - sha256 = "1flnh7x0596hw834irfznd3vprl844bgml2phskg8sjwcmi1j74c"; + version = "0.7"; + sha256 = "1gd2m7qnyww3dv5vcajh9j5chcwlkfsqgpi299q2x4n9xrp0d50g"; + editedCabalFile = "99594a0f7b2fd268f7f68e460218c22bda9da07c559fb5ead6d3c508f01d9cff"; buildDepends = [ base ghc-prim primitive ]; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; @@ -19802,8 +19802,8 @@ self: { }: mkDerivation { pname = "autonix-deps"; - version = "0.1.0.0"; - sha256 = "0kmyl117wjyrgxzng3avxq3rjqq6ifxd0b14x8nazpl4566qccfw"; + version = "0.1.0.1"; + sha256 = "1639yhq3v506h67374mw63pkz15p52qqapc6bwi3dylyp4ilgimi"; buildDepends = [ base bytestring conduit containers errors filepath lens libarchive-conduit mtl optparse-applicative process regex-tdfa @@ -20837,8 +20837,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; - version = "0.1.11"; - sha256 = "0g6p1d3r6jbqcd8flxfbasb40ga7k90bc0q07drwhlaiadjnx1an"; + version = "0.1.14"; + sha256 = "09zjgsnk9c3nw92iymv0ai42wqis6yqb3z3pvslpvdv0a2g7jhgj"; buildDepends = [ base ]; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -26955,9 +26955,10 @@ self: { pname = "cf"; version = "0.1"; sha256 = "0wwq78b6d6hxaivyxw8rc9dsb0kq4aw0mkp8w0xmnfmz8biymlmg"; + editedCabalFile = "6bd39af35810e6a40142d87fdd9fc91754fe85098a63a8087626bf9916bd3362"; buildDepends = [ base ]; homepage = "http://github.com/mvr/cf"; - description = "Infinite precision arithmetic using continued fractions"; + description = "Exact real arithmetic using continued fractions"; license = stdenv.lib.licenses.mit; }) {}; @@ -30553,17 +30554,18 @@ self: { }) {}; "connection" = callPackage - ({ mkDerivation, base, bytestring, containers, cprng-aes - , data-default-class, network, socks, tls, x509, x509-store - , x509-system, x509-validation + ({ mkDerivation, base, byteable, bytestring, containers + , crypto-random, data-default-class, network, securemem, socks, tls + , x509, x509-store, x509-system, x509-validation }: mkDerivation { pname = "connection"; - version = "0.2.3"; - sha256 = "02mqn19pssdak82jw38p3cbwjyfvmjc6fawgx5981hzbdgb64vsb"; + version = "0.2.4"; + sha256 = "0sl0vxn02bbyk7lcclr7ml93wpap2f042da3c9v9ppvbvs8jmf7j"; buildDepends = [ - base bytestring containers cprng-aes data-default-class network - socks tls x509 x509-store x509-system x509-validation + base byteable bytestring containers crypto-random + data-default-class network securemem socks tls x509 x509-store + x509-system x509-validation ]; homepage = "http://github.com/vincenthz/hs-connection"; description = "Simple and easy network connections API"; @@ -32387,21 +32389,21 @@ self: { "crypto-pubkey" = callPackage ({ mkDerivation, base, byteable, bytestring, crypto-numbers - , crypto-pubkey-types, crypto-random, cryptohash, HUnit, QuickCheck - , test-framework, test-framework-hunit, test-framework-quickcheck2 + , crypto-pubkey-types, crypto-random, cryptohash, tasty + , tasty-hunit, tasty-kat, tasty-quickcheck }: mkDerivation { pname = "crypto-pubkey"; - version = "0.2.7"; - sha256 = "0y15nym98sfbfa34f28jalmbbz4fnmhl1ywv4apwyzyyh4x7djp0"; + version = "0.2.8"; + sha256 = "0vmmx2fqq2xc3xfavy22i2nyynpk88jhmjr62qgxw5w5qgsz5k60"; buildDepends = [ base byteable bytestring crypto-numbers crypto-pubkey-types crypto-random cryptohash ]; testDepends = [ base byteable bytestring crypto-numbers crypto-pubkey-types - crypto-random cryptohash HUnit QuickCheck test-framework - test-framework-hunit test-framework-quickcheck2 + crypto-random cryptohash tasty tasty-hunit tasty-kat + tasty-quickcheck ]; homepage = "https://github.com/vincenthz/hs-crypto-pubkey"; description = "Public Key cryptography"; @@ -38798,18 +38800,18 @@ self: { }: mkDerivation { pname = "dynamic-cabal"; - version = "0.3.3"; - sha256 = "0fq6q0j2fx7ygarzgsvb7scssjnrxjrq188d0habfar6bdm0vqdg"; + version = "0.3.4"; + sha256 = "080hynvyrc5jbfm4v5l04iby70rf6fqa3ynbpj1njdh6xjc4wnlv"; buildDepends = [ base containers data-default directory filepath ghc ghc-paths haskell-generate haskell-src-exts time void ]; testDepends = [ - base containers directory doctest filepath HUnit tasty tasty-hunit - tasty-th + base containers directory doctest filepath ghc HUnit tasty + tasty-hunit tasty-th ]; homepage = "http://github.com/bennofs/dynamic-cabal/"; - description = "dynamic-cabal"; + description = "Access the functions from the Cabal library without depending on it"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46285,6 +46287,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ghc-generic-instances" = callPackage + ({ mkDerivation, base, ghc }: + mkDerivation { + pname = "ghc-generic-instances"; + version = "0.1.0.0"; + sha256 = "0264ma0w85fwypnagd0l4zfs1wi1yk16rygn6fhpzgsxycwmg47h"; + buildDepends = [ base ghc ]; + jailbreak = true; + homepage = "https://github.com/alanz/ghc-generic-instances"; + description = "Derived instances of GHC.Generic of the GHC AST"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "ghc-heap-view" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq, ghc , template-haskell, transformers @@ -47477,8 +47492,8 @@ self: { }: mkDerivation { pname = "gl"; - version = "0.6.3"; - sha256 = "0ys5808rzr04fcw7hlliqpx2sncyqpr4x89p4sa2vf5ywsgzmz04"; + version = "0.7"; + sha256 = "0s9xvsainfl1g40ifzzz4rl9mp5z3apw79sz80n7lidch30i2ccs"; buildDepends = [ base containers directory filepath fixed half hxt split transformers @@ -50555,6 +50570,7 @@ self: { pname = "hackage-db"; version = "1.22"; sha256 = "0rhh7w4929zkwzv10ika952yiw4dkffqd8f79f1bl76lz1la6cjd"; + editedCabalFile = "b5277a8cbbfcfba81f29db4910003c2fa7e34c06bceb4f3e7318510e1ce74376"; buildDepends = [ base bytestring Cabal containers directory filepath tar utf8-string ]; @@ -53161,14 +53177,14 @@ self: { }: mkDerivation { pname = "haskell-generate"; - version = "0.2.2"; - sha256 = "1wdfs28p195szg6jxq0qbyj4jdbqnsp9frgjnp25mzf14y9i1yid"; + version = "0.2.3"; + sha256 = "07j0z9jxxgbxfxz9bpy5w8nphrqsl5wyq1jysfhypfi7v87nv9an"; buildDepends = [ base containers haskell-src-exts template-haskell transformers ]; testDepends = [ base directory doctest filepath ]; homepage = "http://github.com/bennofs/haskell-generate/"; - description = "haskell-generate"; + description = "Typesafe generation of haskell source code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -53416,6 +53432,17 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "haskell-rules" = callPackage + ({ mkDerivation, base, syb }: + mkDerivation { + pname = "haskell-rules"; + version = "0.1.0.1"; + sha256 = "03d8c1gnxd923f3fqqw06w3ibnd20llfgd7s5jgkscc872i5ghz6"; + buildDepends = [ base syb ]; + description = "A DSL for expressing natural deduction rules in Haskell"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "haskell-spacegoo" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, mtl , network-conduit, pretty, pretty-show, text, vector, vector-space @@ -54568,7 +54595,7 @@ self: { }) {}; "hasql-postgres" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring + ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring , directory, doctest, either, filepath, free, hashable, hashtables , hasql, hasql-backend, hspec, list-t, loch-th, mmorph, mtl-prelude , old-locale, placeholders, postgresql-binary, postgresql-libpq @@ -54577,19 +54604,19 @@ self: { }: mkDerivation { pname = "hasql-postgres"; - version = "0.10.1"; - sha256 = "1n3gcdv0d1pw3jnwldhkj8p23mx18slp8fyjlygpgivgmb8921ah"; + version = "0.10.2"; + sha256 = "0nw1xq9wfdhcm40qfx8d883nvgk7bfhwbwwb1r9jx7zlspx15vq5"; buildDepends = [ - attoparsec base base-prelude bytestring either free hashable + aeson attoparsec base base-prelude bytestring either free hashable hashtables hasql-backend list-t loch-th mmorph placeholders postgresql-binary postgresql-libpq scientific template-haskell text time transformers uuid vector ]; testDepends = [ - base base-prelude bytestring directory doctest either filepath - hashable hasql hasql-backend hspec list-t mtl-prelude old-locale - postgresql-binary QuickCheck quickcheck-instances scientific text - time vector + aeson base base-prelude bytestring directory doctest either + filepath hashable hasql hasql-backend hspec list-t mtl-prelude + old-locale postgresql-binary QuickCheck quickcheck-instances + scientific text time vector ]; homepage = "https://github.com/nikita-volkov/hasql-postgres"; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; @@ -61292,8 +61319,8 @@ self: { }: mkDerivation { pname = "hsdev"; - version = "0.1.3.1"; - sha256 = "1hlv7r3c6x4483618q9ahrl0v1dirxl4l20dbxp0ir948x8w7dyi"; + version = "0.1.3.2"; + sha256 = "1gr24789vg05phps4141dfygdzlhy58v5r90bv35gp6gwnj2b0za"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -65335,8 +65362,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "ieee754"; - version = "0.7.4"; - sha256 = "1pxbkfa21mvc869n18nn7r29hcinxdbsnk68nlldzld8f6m13g1h"; + version = "0.7.5"; + sha256 = "0109mhyk76xnbsbpnnz3skpvxjckcldlpq93dvfgy5zahmswl4r3"; buildDepends = [ base ]; homepage = "http://github.com/patperry/hs-ieee754"; description = "Utilities for dealing with IEEE floating point numbers"; @@ -68940,8 +68967,8 @@ self: { }: mkDerivation { pname = "jwt"; - version = "0.5.1"; - sha256 = "010w57x16vwvmg6npwyylpbwg24bjdkjz8cjcn0573j56vn5j7vn"; + version = "0.5.2"; + sha256 = "1ks2dsi26cqz9q78lj6man14a86zdlkqv00lq1ffn00q3l7zxgmn"; buildDepends = [ aeson base base64-bytestring bytestring containers cryptohash data-default http-types network network-uri scientific semigroups @@ -72653,6 +72680,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "linearscan" = callPackage + ({ mkDerivation, base, containers, free, hoopl, hspec + , hspec-expectations, HUnit, transformers + }: + mkDerivation { + pname = "linearscan"; + version = "0.1.0.0"; + sha256 = "1wkq5hyc85qxzlam5kb2zfvmrd7r6ypykv4b19hnsp3qgn4pmakx"; + buildDepends = [ base transformers ]; + testDepends = [ + base containers free hoopl hspec hspec-expectations HUnit + transformers + ]; + homepage = "http://github.com/jwiegley/linearscan"; + description = "Linear scan register allocator, formally verified in Coq"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "linebreak" = callPackage ({ mkDerivation, base, hyphenation }: mkDerivation { @@ -73818,6 +73863,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "logger" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, containers, lens, mtl + , template-haskell, time, transformers, unagi-chan + }: + mkDerivation { + pname = "logger"; + version = "0.1.0.0"; + sha256 = "1v264iv34k13lz63ajci03iikc7ajqcl3dvcaxcv7m3h538km8vm"; + buildDepends = [ + ansi-wl-pprint base containers lens mtl template-haskell time + transformers unagi-chan + ]; + jailbreak = true; + homepage = "https://github.com/wdanilo/haskell-logger"; + description = "Fast & extensible logging framework"; + license = stdenv.lib.licenses.asl20; + }) {}; + "logging" = callPackage ({ mkDerivation, base, binary, bytestring, fast-logger, hspec , lifted-base, monad-control, monad-logger, old-locale, pcre-light @@ -74362,6 +74425,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lucid-svg" = callPackage + ({ mkDerivation, base, lucid, text, transformers }: + mkDerivation { + pname = "lucid-svg"; + version = "0.1.0.0"; + sha256 = "1drl7br0f0n53g54d6ry619g7ac0vg5d0qf9h2caybwv269jrsvv"; + buildDepends = [ base lucid text transformers ]; + homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; + description = "DSL for SVG using lucid for HTML"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "lucienne" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-html, bson , bytestring, compact-string-fix, feed, happstack, happstack-server @@ -83753,7 +83828,9 @@ self: { pname = "packedstring"; version = "0.1.0.1"; sha256 = "1x78pzzdlnpcmh9p37rlf8m5cxf3yqm2alf3whl4zpr9w25r0qj8"; + editedCabalFile = "cbc334ff8e721fb18b6799b28dc3e77addc7234aa553725b0af68375f75e0bcf"; buildDepends = [ array base ]; + jailbreak = true; description = "(Deprecated) Packed Strings"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93855,8 +93932,8 @@ self: { }: mkDerivation { pname = "reverse-geocoding"; - version = "0.1.0.1"; - sha256 = "12sp3ilyw4cqqqvlfn90fq1y573vccms0sgwsnnnsmljrj66jppp"; + version = "0.1.0.2"; + sha256 = "1zbix3fx5w57zks5d4ba10r9193x4m7hbq92b06ysw73im13rnhn"; buildDepends = [ aeson base iso3166-country-codes lens lens-aeson text wreq ]; @@ -95656,8 +95733,8 @@ self: { }: mkDerivation { pname = "sbv"; - version = "3.4"; - sha256 = "1c4sh9l4kggw2mvv47raz36j2s9nn81l68y6w6dbq3m990j1zazm"; + version = "3.5"; + sha256 = "00r80h8p6w1ir2sk3m2xgims22fzxyvij9mz6b0kn9n0qsjmkpaz"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -95715,6 +95792,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "scalpel" = callPackage + ({ mkDerivation, base, bytestring, download-curl, HUnit, regex-base + , regex-tdfa, tagsoup, text + }: + mkDerivation { + pname = "scalpel"; + version = "0.1.1"; + sha256 = "0ypr6i4in1vvxjxi03r29q7mvig390bnpn2bcmjm9q1w51ypjdnr"; + buildDepends = [ + base bytestring download-curl regex-base regex-tdfa tagsoup text + ]; + testDepends = [ + base bytestring download-curl HUnit regex-base regex-tdfa tagsoup + text + ]; + homepage = "https://github.com/fimad/scalpel"; + description = "A high level web scraping library for Haskell"; + license = stdenv.lib.licenses.asl20; + }) {}; + "scan" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -96642,8 +96739,8 @@ self: { ({ mkDerivation, base, byteable, bytestring, ghc-prim }: mkDerivation { pname = "securemem"; - version = "0.1.4"; - sha256 = "1wdbcnyaarrixfvz79mcyqmfnn9h5zsmrrsa64xj8650ppyaxi48"; + version = "0.1.5"; + sha256 = "1g3y6bb1879qdlrsh11c31fiai66slvcd732zpkrf9lg2zpv68af"; buildDepends = [ base byteable bytestring ghc-prim ]; homepage = "http://github.com/vincenthz/hs-securemem"; description = "abstraction to an auto scrubbing and const time eq, memory chunk"; @@ -97037,8 +97134,8 @@ self: { }: mkDerivation { pname = "seqloc"; - version = "0.6.1"; - sha256 = "0ymc0p9n5jmqw3ffs9s86sxz9bkh3nz36lmfs0l14psqcd41ghwa"; + version = "0.6.1.1"; + sha256 = "1hsm9y6q0g7ixnqj562a33lmyka4k7f778fndcmn25v4m1myfda4"; buildDepends = [ attoparsec base biocore bytestring hashable unordered-containers vector @@ -99460,18 +99557,18 @@ self: { "sloane" = callPackage ({ mkDerivation, ansi-terminal, base, bytestring, cereal , containers, directory, download-curl, filepath, HTTP, network - , optparse-applicative, terminal-size, text, zlib + , optparse-applicative, stringsearch, terminal-size, text, zlib }: mkDerivation { pname = "sloane"; - version = "2.0.3"; - sha256 = "1fglx4nl8cpjs1h1cpiyg54rdrcrj8si4fayhj2c6ijksq26pfn3"; + version = "2.0.5"; + sha256 = "1jmnyw5n2k9c0bsdgna7hxc6yxjrycss02wjwsavbq13i7amq8i9"; isLibrary = false; isExecutable = true; buildDepends = [ ansi-terminal base bytestring cereal containers directory download-curl filepath HTTP network optparse-applicative - terminal-size text zlib + stringsearch terminal-size text zlib ]; postInstall = '' mkdir -p $out/share/man/man1 @@ -105827,8 +105924,8 @@ self: { }: mkDerivation { pname = "target"; - version = "0.1.0.0"; - sha256 = "08n2r457yjywfyb4pgjsrp96gb3h79zhmw2h042bvh89k36n44y1"; + version = "0.1.1.0"; + sha256 = "1b6kbiqpx57ghi98ki4gbqclyl91rs113ayd51bx8wmwwbaag21v"; buildDepends = [ base containers directory exceptions filepath ghc ghc-paths liquid-fixpoint liquidhaskell mtl pretty process syb tagged @@ -108149,22 +108246,22 @@ self: { "tianbar" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, containers , dbus, directory, gtk, gtk-traymanager, happstack-server, network - , process, random, split, text, transformers, utf8-string, webkit - , xdg-basedir, xmonad, xmonad-contrib + , network-uri, process, random, split, text, transformers + , utf8-string, webkit, xdg-basedir, xmonad, xmonad-contrib }: mkDerivation { pname = "tianbar"; - version = "0.4.6.0"; - sha256 = "1gnx57yk65m5mh8j652y2r3c26zbv157lhmlf11dlxchpgi6qh3y"; + version = "0.4.6.3"; + sha256 = "1ns1gsjqq1xcdxqw7xplcax88ydfx8pn6id42n5idmcbgxkjzm9p"; isLibrary = true; isExecutable = true; buildDepends = [ aeson base blaze-html blaze-markup containers dbus directory gtk - gtk-traymanager happstack-server network process random split text - transformers utf8-string webkit xdg-basedir xmonad xmonad-contrib + gtk-traymanager happstack-server network network-uri process random + split text transformers utf8-string webkit xdg-basedir xmonad + xmonad-contrib ]; pkgconfigDepends = [ gtk ]; - jailbreak = true; homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; @@ -108831,8 +108928,8 @@ self: { }: mkDerivation { pname = "tls"; - version = "1.2.13"; - sha256 = "1djjscmyn3wcnlzz1r0clz2nxa2y23rlyjk30xjsdp0m1sq0vdc3"; + version = "1.2.15"; + sha256 = "025l7zl50v813i3z184gi33fcffi9y5k9c6fccxsp6hzjjggy9m1"; buildDepends = [ asn1-encoding asn1-types async base byteable bytestring cereal cipher-aes cipher-des cipher-rc4 crypto-cipher-types crypto-numbers @@ -111373,15 +111470,14 @@ self: { }: mkDerivation { pname = "unagi-chan"; - version = "0.3.0.1"; - sha256 = "1s1bqrzxryp44xihd1xy465jmqiiphxkjkkcclj69m7l9rcpcv51"; + version = "0.3.0.2"; + sha256 = "1a6jpr6gynpfh3kqfq42arzxfij5ms18rqhl0xlf49iscj0c15lg"; isLibrary = true; isExecutable = true; buildDepends = [ atomic-primops base ghc-prim primitive ]; testDepends = [ atomic-primops base containers ghc-prim primitive ]; - jailbreak = true; description = "Fast concurrent queues with a Chan-like API, and more"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -115944,6 +116040,25 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "wedged" = callPackage + ({ mkDerivation, array, base, colour, containers, diagrams-cairo + , diagrams-lib, MonadRandom, strict + }: + mkDerivation { + pname = "wedged"; + version = "0"; + sha256 = "1sdnqc40qg5pv0kj4qw33vk5cy3yym60csh3iwmpm7pzpray7511"; + isLibrary = false; + isExecutable = true; + buildDepends = [ + array base colour containers diagrams-cairo diagrams-lib + MonadRandom strict + ]; + jailbreak = true; + description = "Wedged postcard generator"; + license = "unknown"; + }) {}; + "weighted-regexp" = callPackage ({ mkDerivation, array, base, happy }: mkDerivation { @@ -118028,6 +118143,23 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "xmonad-entryhelper" = callPackage + ({ mkDerivation, base, directory, extensible-exceptions, filepath + , mtl, process, unix, X11, xmonad, xmonad-contrib + }: + mkDerivation { + pname = "xmonad-entryhelper"; + version = "0.1.0.0"; + sha256 = "1xwjdy7swc4bqqx0y7bny7rci4wpq2318m9nbz365x2r7i379v9h"; + buildDepends = [ + base directory extensible-exceptions filepath mtl process unix X11 + xmonad xmonad-contrib + ]; + homepage = "https://github.com/Javran/xmonad-entryhelper"; + description = "XMonad config entry point wrapper"; + license = stdenv.lib.licenses.mit; + }) {}; + "xmonad-eval" = callPackage ({ mkDerivation, base, containers, directory, hint, mtl, old-locale , old-time, process, random, unix, X11, xmonad, xmonad-contrib From a317a4ae11a50287d6ed16b48370786cc98ca6a5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 11:44:50 +0100 Subject: [PATCH 121/185] haskell-configuration-ghc-7.8.x: cosmetic changes to amazonka environment --- .../haskell-modules/configuration-ghc-7.8.x.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index 28910857126..4450fb31cdf 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -59,7 +59,7 @@ self: super: { doCheck = false; hyperlinkSource = false; extraLibraries = (drv.extraLibraries or []) ++ [ ( - if builtins.elem drv.pname [ + if pkgs.stdenv.lib.elem drv.pname [ "Cabal" "time" "unix" @@ -71,15 +71,12 @@ self: super: { }); mtl = self.mtl_2_2_1; transformers = self.transformers_0_4_2_0; - transformers-compat = overrideCabal super.transformers-compat (drv: { configureFlags = []; }); - aeson = disableCabalFlag super.aeson "old-locale"; + transformers-compat = disableCabalFlag super.transformers-compat "three"; hscolour = super.hscolour; time = self.time_1_5_0_1; unix = self.unix_2_7_1_0; directory = self.directory_1_2_1_0; - process = overrideCabal self.process_1_2_1_0 (drv: { - coreSetup = true; - }); + process = overrideCabal self.process_1_2_1_0 (drv: { coreSetup = true; }); inherit amazonka-core amazonkaEnv amazonka amazonka-cloudwatch; }; Cabal = self.Cabal_1_18_1_6.overrideScope amazonkaEnv; @@ -87,11 +84,10 @@ self: super: { overrideCabal (super.amazonka-core.overrideScope amazonkaEnv) (drv: { # https://github.com/brendanhay/amazonka/pull/57 prePatch = "sed -i 's|nats >= 0.1.3 && < 1|nats|' amazonka-core.cabal"; - extraLibraries = (drv.extraLibraries or []) ++ [ Cabal ]; }); useEnvCabal = p: overrideCabal (p.overrideScope amazonkaEnv) (drv: { - extraLibraries = (drv.extraLibraries or []) ++ [ Cabal ]; + buildDepends = (drv.buildDepends or []) ++ [ Cabal ]; }); amazonka = useEnvCabal super.amazonka; amazonka-cloudwatch = useEnvCabal super.amazonka-cloudwatch; From 3dae2156678d71c83253747928b95ebac3dd1b7c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 13:52:13 +0100 Subject: [PATCH 122/185] haskell-utf8-string: fix build on GHC 6.12.x --- .../development/haskell-modules/configuration-ghc-6.12.x.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index 59280505fb6..6641b27f0fd 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -57,4 +57,9 @@ self: super: { # Haddock chokes on the prologue from the cabal file. ChasingBottoms = dontHaddock super.ChasingBottoms; + # https://github.com/glguy/utf8-string/issues/9 + utf8-string = overrideCabal super.utf8-string (drv: { + patchPhase = "sed -ir -e 's|Extensions: | Extensions: UndecidableInstances, |' utf8-string.cabal"; + }); + } From 51457dd687c4ffdcfc54fece4fc0bb34e451e5cd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 14:02:29 +0100 Subject: [PATCH 123/185] haskell-primitive: fix build with GHC 7.4.2 --- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index aa54f736dab..593826be2e6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -48,4 +48,7 @@ self: super: { # Haddock chokes on the prologue from the cabal file. ChasingBottoms = dontHaddock super.ChasingBottoms; + # https://github.com/haskell/primitive/issues/16 + primitive = dontCheck super.primitive; + } From 703bf2978d36277efdcbc1b9a1ccb27c649b2e2b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 16:03:28 +0100 Subject: [PATCH 124/185] haskell-unordered-containers: fix build with GHC 7.4.2 --- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 593826be2e6..6ad8564d89a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -51,4 +51,7 @@ self: super: { # https://github.com/haskell/primitive/issues/16 primitive = dontCheck super.primitive; + # https://github.com/tibbe/unordered-containers/issues/96 + unordered-containers = dontCheck super.unordered-containers; + } From 3274e5cad22d6b78b10399df8377d96ede1fbabd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 20:48:50 +0100 Subject: [PATCH 125/185] hackage-packages: disable all Hydra builds have never succeeded --- .../haskell-modules/configuration-common.nix | 15 + .../configuration-ghc-7.8.x.nix | 3 + .../haskell-modules/hackage-packages.nix | 3203 ++++++++++++++++- 3 files changed, 3188 insertions(+), 33 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 7fd4ec1b333..7628753f9ce 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -117,6 +117,21 @@ self: super: { # https://github.com/haskell/vector/issues/47 vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector; + # https://github.com/haskell/pretty/issues/17 + pretty_1_1_2_0 = dontCheck super.pretty_1_1_2_0; + + # Does not compile: . + base_4_7_0_2 = markBroken super.base_4_7_0_2; + + # Obsolete: https://github.com/massysett/prednote/issues/1. + prednote-test = markBroken super.prednote-test; + + # Doesn't compile: . + integer-gmp_0_5_1_0 = markBroken super.integer-gmp_0_5_1_0; + + # https://github.com/haskell/bytestring/issues/41 + bytestring_0_10_4_1 = dontCheck super.bytestring_0_10_4_1; + } // { # Not on Hackage yet. diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index 4450fb31cdf..0ced8929c8f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -49,6 +49,9 @@ self: super: { patchPhase = "find . -name '*.hs' -exec sed -i -s 's|-Werror||' {} +"; }); # warning: "Module ‘Control.Monad.Error’ is deprecated" + # Depends on time == 0.1.5, which we don't have. + HStringTemplate_0_8 = dontDistribute super.HStringTemplate_0_8; + } // # packages relating to amazonka diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 721e270ab30..7c4d41bb21e 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -30,6 +30,7 @@ self: { homepage = "https://github.com/capsjac/3dmodels"; description = "3D model parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "4Blocks" = callPackage @@ -45,6 +46,7 @@ self: { homepage = "http://lambdacolyte.wordpress.com/2009/08/06/tetris-in-haskell/"; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ABList" = callPackage @@ -95,6 +97,7 @@ self: { buildDepends = [ base ]; description = "Detect which OS you're running on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Colour" = callPackage @@ -117,6 +120,7 @@ self: { buildDepends = [ array base gtk ]; description = "GTK+ pixel plotting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-HalfInteger" = callPackage @@ -128,6 +132,7 @@ self: { buildDepends = [ base ]; description = "Efficient half-integer type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-MiniTest" = callPackage @@ -172,6 +177,7 @@ self: { buildDepends = [ ansi-terminal base ]; description = "Trivial wrapper over ansi-terminal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-VanillaArray" = callPackage @@ -184,6 +190,7 @@ self: { jailbreak = true; description = "Immutable arrays with plain integer indicies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Vector" = callPackage @@ -239,6 +246,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "Efficient, high-level dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -259,6 +267,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "foundational type classes for approximating exact real numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Net" = callPackage @@ -276,6 +285,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "Compositional lazy dataflow networks for exact real number computation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real" = callPackage @@ -294,6 +304,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Double" = callPackage @@ -315,6 +326,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Interval" = callPackage @@ -333,6 +345,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm" = callPackage @@ -351,6 +364,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm-Plot" = callPackage @@ -370,6 +384,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "GL plotting of polynomial function enclosures (PFEs)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AES" = callPackage @@ -427,6 +442,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/ami"; description = "Low-level bindings for Asterisk Manager Interface (AMI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ANum" = callPackage @@ -477,6 +493,7 @@ self: { buildDepends = [ base regex-compat Win32 ]; description = "A binding to a part of the ANSI escape code for the console"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AbortT-monadstf" = callPackage @@ -541,6 +558,7 @@ self: { homepage = "https://github.com/egonSchiele/actionkid"; description = "An easy-to-use video game framework for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive" = callPackage @@ -581,6 +599,7 @@ self: { jailbreak = true; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AesonBson" = callPackage @@ -599,6 +618,7 @@ self: { homepage = "https://github.com/nh2/AesonBson"; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agata" = callPackage @@ -615,6 +635,7 @@ self: { jailbreak = true; description = "Generator-generator for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agda" = callPackage @@ -712,6 +733,7 @@ self: { homepage = "http://allureofthestars.com"; description = "Near-future Sci-Fi roguelike and tactical squad game"; license = "AGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AndroidViewHierarchyImporter" = callPackage @@ -732,6 +754,7 @@ self: { jailbreak = true; description = "Android view hierarchy importer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Animas" = callPackage @@ -744,6 +767,7 @@ self: { homepage = "https://github.com/eamsden/Animas"; description = "Updated version of Yampa: a library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Annotations" = callPackage @@ -756,6 +780,7 @@ self: { jailbreak = true; description = "Constructing, analyzing and destructing annotated trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ansi2Html" = callPackage @@ -787,6 +812,7 @@ self: { ]; description = "Library for Apple Push Notification Service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AppleScript" = callPackage @@ -799,6 +825,7 @@ self: { homepage = "https://github.com/reinerp/haskell-AppleScript"; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ArrayRef" = callPackage @@ -811,6 +838,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/ArrayRef"; description = "Unboxed references, dynamic arrays and more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AspectAG" = callPackage @@ -823,6 +851,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/AspectAG"; description = "Attribute Grammars in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AttoBencode" = callPackage @@ -845,6 +874,7 @@ self: { homepage = "http://bitbucket.org/FlorianHartwig/attobencode"; description = "Fast Bencode encoding and parsing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AttoJson" = callPackage @@ -862,6 +892,7 @@ self: { homepage = "http://github.com/konn/AttoJSON"; description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Attrac" = callPackage @@ -906,6 +937,7 @@ self: { homepage = "http://autoforms.sourceforge.net/"; description = "GUI library based upon generic programming (SYB3)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AvlTree" = callPackage @@ -917,6 +949,7 @@ self: { buildDepends = [ base COrdering ]; description = "Balanced binary trees using the AVL algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BASIC" = callPackage @@ -928,6 +961,7 @@ self: { buildDepends = [ base containers llvm random timeit ]; description = "Embedded BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BNFC" = callPackage @@ -968,6 +1002,7 @@ self: { ]; description = "Deriving Parsers and Quasi-Quoters from BNF Grammars"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Baggins" = callPackage @@ -996,6 +1031,7 @@ self: { homepage = "https://github.com/5outh/Bang/"; description = "A Drum Machine DSL for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Barracuda" = callPackage @@ -1019,6 +1055,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "An ad-hoc P2P chat program"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Befunge93" = callPackage @@ -1034,6 +1071,7 @@ self: { homepage = "http://coder.bsimmons.name/blog/2010/05/befunge-93-interpreter-on-hackage"; description = "An interpreter for the Befunge-93 Programming Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BerkeleyDB" = callPackage @@ -1050,7 +1088,7 @@ self: { }) { inherit (pkgs) db;}; "BerkeleyDBXML" = callPackage - ({ mkDerivation, base, BerkeleyDB, bytestring, db, dbxml, xerces-c + ({ mkDerivation, base, BerkeleyDB, bytestring, db, dbxml, xercesc , xqilla }: mkDerivation { @@ -1058,11 +1096,12 @@ self: { version = "0.7.2"; sha256 = "1ymdi5qi4hxaikqf8min830r1rs1z4bvy9bdybsq378v7mrgfihp"; buildDepends = [ base BerkeleyDB bytestring ]; - extraLibraries = [ db dbxml xerces-c xqilla ]; + extraLibraries = [ db dbxml xercesc xqilla ]; homepage = "http://www.haskell.org/haskellwiki/BerkeleyDBXML"; description = "Berkeley DB XML binding"; license = stdenv.lib.licenses.bsd3; - }) { inherit (pkgs) db; dbxml = null; xerces-c = null; + hydraPlatforms = stdenv.lib.platforms.none; + }) { inherit (pkgs) db; dbxml = null; inherit (pkgs) xercesc; xqilla = null;}; "BerlekampAlgorithm" = callPackage @@ -1123,6 +1162,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Base library for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseBlast" = callPackage @@ -1135,6 +1175,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "BLAST-related tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseDotP" = callPackage @@ -1147,6 +1188,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Vienna / DotBracket / ExtSS parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFR3D" = callPackage @@ -1164,6 +1206,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Importer for FR3D resources"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFasta" = callPackage @@ -1183,6 +1226,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "conduit-based FASTA parser"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseInfernal" = callPackage @@ -1204,6 +1248,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Infernal data structures and tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseMAF" = callPackage @@ -1216,6 +1261,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Multiple Alignment Format"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTrainingData" = callPackage @@ -1236,6 +1282,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "RNA folding training data"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTurner" = callPackage @@ -1254,6 +1301,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Turner RNA parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTypes" = callPackage @@ -1266,6 +1314,7 @@ self: { jailbreak = true; description = "(deprecated) Ring class, with several instances"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1282,6 +1331,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Vienna energy parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseXNA" = callPackage @@ -1316,6 +1366,7 @@ self: { jailbreak = true; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BitSyntax" = callPackage @@ -1332,6 +1383,7 @@ self: { homepage = "http://www.imperialviolet.org/bitsyntax"; description = "A module to aid in the (de)serialisation of binary data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bitly" = callPackage @@ -1344,6 +1396,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A library to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlastHTTP" = callPackage @@ -1380,6 +1433,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/darcs/Blobs/"; description = "Diagram editor"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately" = callPackage @@ -1425,6 +1479,7 @@ self: { ]; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BluePrintCSS" = callPackage @@ -1448,6 +1503,7 @@ self: { homepage = "http://github.com/gcross/Blueprint"; description = "Preview of a new build system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bookshelf" = callPackage @@ -1508,6 +1564,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bravo"; description = "Static text template generation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Buster" = callPackage @@ -1534,6 +1591,7 @@ self: { homepage = "http://github.com/michaelxavier/Buster"; description = "Hits a set of urls periodically to bust caches"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CBOR" = callPackage @@ -1555,6 +1613,7 @@ self: { homepage = "https://github.com/orclev/CBOR"; description = "Encode/Decode values to/from CBOR"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont" = callPackage @@ -1583,6 +1642,7 @@ self: { testDepends = [ base doctest mtl ]; description = "Three new monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-cxe" = callPackage @@ -1646,6 +1706,7 @@ self: { homepage = "not available"; description = "preprocessor and library for Causal Commutative Arrows (CCA)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CHXHtml" = callPackage @@ -1694,6 +1755,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/cmcompare/"; description = "Infernal covariance model comparison"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CMQ" = callPackage @@ -1722,6 +1784,7 @@ self: { buildDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPBrainfuck" = callPackage @@ -1735,6 +1798,7 @@ self: { buildDepends = [ base haskell98 ]; description = "A simple Brainfuck interpretter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPL" = callPackage @@ -1748,6 +1812,7 @@ self: { buildDepends = [ array base containers mtl parsec readline ]; description = "An interpreter of Hagino's Categorical Programming Language (CPL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-CoreLanguage" = callPackage @@ -1775,6 +1840,7 @@ self: { ]; description = "Firing rules semantic of CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-Frontend" = callPackage @@ -1792,6 +1858,7 @@ self: { buildTools = [ alex ]; description = "A CSP-M parser compatible with FDR-2.91"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-Interpreter" = callPackage @@ -1808,6 +1875,7 @@ self: { ]; description = "An interpreter for CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-ToProlog" = callPackage @@ -1823,6 +1891,7 @@ self: { ]; description = "some modules specific for the ProB tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-cspm" = callPackage @@ -1843,6 +1912,7 @@ self: { ]; description = "cspm command line tool for analyzing CSPM specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CTRex" = callPackage @@ -1889,6 +1959,7 @@ self: { homepage = "http://aleator.github.com/CV/"; description = "OpenCV based machine vision library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { opencv_calib3d = null; opencv_contrib = null; opencv_core = null; opencv_features2d = null; opencv_flann = null; opencv_gpu = null; opencv_highgui = null; @@ -2002,6 +2073,7 @@ self: { homepage = "https://github.com/Icelandjack/Capabilities"; description = "Separate and contain effects of IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Cardinality" = callPackage @@ -2053,6 +2125,7 @@ self: { homepage = "http://github.com/rampion/Cascade"; description = "Playing with reified categorical composition"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Catana" = callPackage @@ -2138,6 +2211,7 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Utility functions for using the chart library with GTK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-simple" = callPackage @@ -2155,6 +2229,7 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChasingBottoms" = callPackage @@ -2209,6 +2284,7 @@ self: { homepage = "https://github.com/ckkashyap/Chitra"; description = "A platform independent mechanism to render graphics using vnc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChristmasTree" = callPackage @@ -2239,6 +2315,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/cse/pmwiki.php/FP/ClassLaws"; description = "Stating and checking laws for type class methods"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ClassyPrelude" = callPackage @@ -2250,6 +2327,7 @@ self: { buildDepends = [ base strict ]; description = "Prelude replacement using classes instead of concrete types where reasonable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clean" = callPackage @@ -2262,6 +2340,7 @@ self: { jailbreak = true; description = "A light, clean and powerful utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clipboard" = callPackage @@ -2306,6 +2385,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/coadjute/"; description = "A generic build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Codec-Compression-LZF" = callPackage @@ -2330,6 +2410,7 @@ self: { extraLibraries = [ libdevil ]; description = "An FFI interface to the DevIL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libdevil;}; "Combinatorrent" = callPackage @@ -2354,6 +2435,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Command" = callPackage @@ -2438,6 +2520,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ConfigFile" = callPackage @@ -2562,6 +2645,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/~oc/contracts.html"; description = "Practical typed lazy contracts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Engine" = callPackage @@ -2593,6 +2677,7 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-MultiPass"; description = "A Library for Writing Multi-Pass Algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Monad-ST2" = callPackage @@ -2643,6 +2728,7 @@ self: { homepage = "https://github.com/reinerp/CoreFoundation"; description = "Bindings to Mac OSX's CoreFoundation framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Coroutine" = callPackage @@ -2654,6 +2740,7 @@ self: { buildDepends = [ base ]; description = "Type-safe coroutines using lightweight session types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CouchDB" = callPackage @@ -2674,6 +2761,7 @@ self: { homepage = "http://github.com/arjunguha/haskell-couchdb/"; description = "CouchDB interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Craft3e" = callPackage @@ -2688,6 +2776,7 @@ self: { homepage = "http://www.haskellcraft.com/"; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Crypto" = callPackage @@ -2731,6 +2820,7 @@ self: { ]; description = "CurryDB: In-memory Key/Value Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAG-Tournament" = callPackage @@ -2748,6 +2838,7 @@ self: { ]; description = "Real-Time Game Tournament Evaluator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAV" = callPackage @@ -2799,6 +2890,7 @@ self: { homepage = "https://github.com/alexkay/hdbus"; description = "D-Bus bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DMuCheck" = callPackage @@ -2833,6 +2925,7 @@ self: { jailbreak = true; description = "DOM Level 2 bindings for the WebBits package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DP" = callPackage @@ -2850,6 +2943,7 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Pragmatic framework for dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DPM" = callPackage @@ -2873,6 +2967,7 @@ self: { jailbreak = true; description = "Darcs Patch Manager"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DRBG" = callPackage @@ -2922,6 +3017,7 @@ self: { ]; description = "Database Supported Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DSTM" = callPackage @@ -2937,6 +3033,7 @@ self: { buildDepends = [ base containers haskell98 network process unix ]; description = "A framework for using STM within distributed systems"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DTC" = callPackage @@ -2949,6 +3046,7 @@ self: { homepage = "https://github.com/Daniel-Diaz/DTC"; description = "Data To Class transformation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dangerous" = callPackage @@ -2985,6 +3083,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DarcsHelpers" = callPackage @@ -2997,6 +3096,7 @@ self: { jailbreak = true; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Data-Hash-Consistent" = callPackage @@ -3024,6 +3124,7 @@ self: { buildDepends = [ base bytestring unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DataTreeView" = callPackage @@ -3041,6 +3142,7 @@ self: { ]; description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Deadpan-DDP" = callPackage @@ -3105,6 +3207,7 @@ self: { homepage = "http://page.mi.fu-berlin.de/~aneumann/decisiontree.html"; description = "A very simple implementation of decision trees for discrete attributes"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DeepArrow" = callPackage @@ -3137,6 +3240,7 @@ self: { homepage = "http://github.com/yairchu/defend/tree"; description = "A simple RTS game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DescriptiveKeys" = callPackage @@ -3165,6 +3269,7 @@ self: { ]; description = "Processing Real-time event streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Diff" = callPackage @@ -3189,6 +3294,7 @@ self: { homepage = "https://github.com/dillonhuff/DifferenceLogic"; description = "A theory solver for conjunctions of literals in difference logic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DifferentialEvolution" = callPackage @@ -3206,6 +3312,7 @@ self: { homepage = "http://yousource.it.jyu.fi/optimization-with-haskell"; description = "Global optimization using Differential Evolution"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Digit" = callPackage @@ -3252,6 +3359,7 @@ self: { buildDepends = [ base ]; description = "An n-dimensional hash using Morton numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DirectSound" = callPackage @@ -3265,6 +3373,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Partial binding to the Microsoft DirectSound API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { dsound = null;}; "DisTract" = callPackage @@ -3285,6 +3394,7 @@ self: { homepage = "http://distract.wellquite.org/"; description = "Distributed Bug Tracking System"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DiscussionSupportSystem" = callPackage @@ -3366,6 +3476,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Frameshift-aware alignment of protein sequences with DNA sequences"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DocTest" = callPackage @@ -3385,6 +3496,7 @@ self: { homepage = "http://haskell.org/haskellwiki/DocTest"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Docs" = callPackage @@ -3417,6 +3529,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/DrHylo"; description = "A tool for deriving hylomorphisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DrIFT" = callPackage @@ -3484,6 +3597,7 @@ self: { ]; description = "Polymorphic protocol engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-crypto" = callPackage @@ -3510,6 +3624,7 @@ self: { extraLibraries = [ openssl ]; description = "Cryptographic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) openssl;}; "Dust-tools" = callPackage @@ -3530,6 +3645,7 @@ self: { ]; description = "Network filtering exploration tools"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-tools-pcap" = callPackage @@ -3551,6 +3667,7 @@ self: { ]; description = "Network filtering exploration tools that rely on pcap"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP" = callPackage @@ -3575,6 +3692,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP-Craftwerk" = callPackage @@ -3592,6 +3710,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Craftwerk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EEConfig" = callPackage @@ -3603,6 +3722,7 @@ self: { buildDepends = [ base containers ]; description = "ExtremlyEasyConfig - Extremly Simple parser for config files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ebnf2ps" = callPackage @@ -3665,6 +3785,7 @@ self: { homepage = "http://github.com/bspaans/EditTimeReport"; description = "Query language and report generator for edit logs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EitherT" = callPackage @@ -3682,6 +3803,7 @@ self: { jailbreak = true; description = "EitherT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Elm" = callPackage @@ -3717,6 +3839,7 @@ self: { homepage = "http://elm-lang.org"; description = "The Elm language module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Emping" = callPackage @@ -3731,6 +3854,7 @@ self: { homepage = "http://www.muitovar.com"; description = "derives heuristic rules from nominal data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Encode" = callPackage @@ -3769,6 +3893,7 @@ self: { jailbreak = true; description = "More general IntMap replacement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eq" = callPackage @@ -3788,6 +3913,7 @@ self: { jailbreak = true; description = "Render math formula in ASCII, and perform some simplifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EqualitySolver" = callPackage @@ -3821,6 +3947,7 @@ self: { homepage = "http://cielonegro.org/EsounD.html"; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EtaMOO" = callPackage @@ -3859,6 +3986,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A general data-flow framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etage-Graph" = callPackage @@ -3878,6 +4006,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "Data-flow based graph algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eternal10Seconds" = callPackage @@ -3892,6 +4021,7 @@ self: { homepage = "http://www.kryozahiro.org/eternal10/"; description = "A 2-D shooting game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etherbunny" = callPackage @@ -3909,6 +4039,7 @@ self: { homepage = "http://etherbunny.anytini.com/"; description = "A network analysis toolkit for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libpcap;}; "EuroIT" = callPackage @@ -3942,6 +4073,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EventSocket" = callPackage @@ -3957,6 +4089,7 @@ self: { ]; description = "Interfaces with FreeSwitch Event Socket"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Extra" = callPackage @@ -3998,6 +4131,7 @@ self: { jailbreak = true; description = "Compose music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FM-SBLEX" = callPackage @@ -4012,6 +4146,7 @@ self: { homepage = "http://spraakbanken.gu.se/eng/research/swefn/fm-sblex"; description = "A set of computational morphology tools for Swedish diachronic lexicons"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FModExRaw" = callPackage @@ -4025,6 +4160,7 @@ self: { homepage = "https://github.com/skypers/hsFModEx"; description = "The Haskell FModEx raw API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { fmodex64 = null;}; "FPretty" = callPackage @@ -4110,6 +4246,7 @@ self: { buildDepends = [ base base-unicode-symbols mmtl ]; description = "Failure Monad Transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FenwickTree" = callPackage @@ -4143,6 +4280,7 @@ self: { homepage = "http://www.scannedinavian.com/"; description = "Annotate ps and pdf documents"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FerryCore" = callPackage @@ -4176,6 +4314,7 @@ self: { homepage = "http://haskell.org/haskellwiki/FieldTrip"; description = "Functional 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManip" = callPackage @@ -4191,6 +4330,7 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManipCompat" = callPackage @@ -4240,6 +4380,7 @@ self: { homepage = "http://ddiaz.asofilak.es/packages/FileSystem"; description = "File system data structure and monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Quote-Yahoo" = callPackage @@ -4256,6 +4397,7 @@ self: { homepage = "http://www.b7j0c.org/stuff/haskell-yquote.xhtml"; description = "Obtain quote data from finance.yahoo.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Treasury" = callPackage @@ -4273,6 +4415,7 @@ self: { homepage = "http://www.ecoin.net/haskell/Finance-Treasury.html"; description = "Obtain Treasury yield curve data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FindBin" = callPackage @@ -4296,6 +4439,7 @@ self: { buildDepends = [ base haskell98 ]; description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; license = "BSD4"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FirstOrderTheory" = callPackage @@ -4308,6 +4452,7 @@ self: { jailbreak = true; description = "Grammar and typeclass for first order theories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FixedPoint-simple" = callPackage @@ -4338,6 +4483,7 @@ self: { homepage = "http://www.flippac.org/projects/flippi/"; description = "Wiki"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Focus" = callPackage @@ -4363,6 +4509,7 @@ self: { homepage = "https://github.com/dillonhuff/Folly"; description = "A first order logic library in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FontyFruity" = callPackage @@ -4398,6 +4545,7 @@ self: { homepage = "http://www.ict.kth.se/forsyde/"; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ForkableT" = callPackage @@ -4433,6 +4581,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/gramprod/"; description = "(Context-free) grammars in formal language theory"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FpMLv53" = callPackage @@ -4459,6 +4608,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/Frank/"; description = "An experimental programming language with typed algebraic effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FreeTypeGL" = callPackage @@ -4473,6 +4623,7 @@ self: { jailbreak = true; description = "Loadable texture fonts for OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FunGEn" = callPackage @@ -4507,6 +4658,7 @@ self: { ]; description = "An interpreter for Funge-98 programming languages, including Befunge"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GA" = callPackage @@ -4557,6 +4709,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW-OGL"; description = "A binding for GLFW (OGL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXrandr;}; @@ -4605,17 +4758,16 @@ self: { }) {}; "GLHUI" = callPackage - ({ mkDerivation, base, libX11, mesa, rt }: + ({ mkDerivation, base, libX11, mesa }: mkDerivation { pname = "GLHUI"; version = "1.1.0"; sha256 = "043xw36hrwzc6xdr5vlydbsv5m8675vnk8pfxycr7qixzwljn0aa"; buildDepends = [ base ]; - extraLibraries = [ libX11 mesa rt ]; + extraLibraries = [ libX11 mesa ]; description = "Open OpenGL context windows in X11 with libX11"; license = stdenv.lib.licenses.bsd3; - }) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa; - rt = null;}; + }) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa;}; "GLMatrix" = callPackage ({ mkDerivation, base, OpenGLRaw }: @@ -4694,6 +4846,7 @@ self: { homepage = "https://github.com/tonymorris/geo-gpx"; description = "Parse GPX files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe" = callPackage @@ -4712,6 +4865,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "A functional graphics API for programmable GPUs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-Collada" = callPackage @@ -4725,6 +4879,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe meshes from Collada files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-Examples" = callPackage @@ -4742,6 +4897,7 @@ self: { ]; description = "Examples for the GPipes package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-TextureLoad" = callPackage @@ -4754,6 +4910,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe textures from filesystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GTALib" = callPackage @@ -4772,6 +4929,7 @@ self: { homepage = "https://bitbucket.org/emoto/gtalib"; description = "A library for GTA programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gamgine" = callPackage @@ -4792,6 +4950,7 @@ self: { jailbreak = true; description = "Some kind of game library or set of utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ganymede" = callPackage @@ -4811,6 +4970,7 @@ self: { homepage = "https://github.com/BMeph/Ganymede"; description = "An Io interpreter in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GaussQuadIntegration" = callPackage @@ -4837,6 +4997,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GeBoP"; description = "Several games"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenI" = callPackage @@ -4867,6 +5028,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenSmsPdu" = callPackage @@ -4880,6 +5042,7 @@ self: { buildDepends = [ base haskell98 QuickCheck random ]; description = "Automatic SMS message generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Genbank" = callPackage @@ -4920,6 +5083,7 @@ self: { buildDepends = [ base bytestring bytestring-mmap syb ]; description = "Pure bindings for the MaxMind IP database"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Geodetic" = callPackage @@ -4954,6 +5118,7 @@ self: { buildDepends = [ base GeomPredicates ]; description = "Geometric predicates (Intel SSE)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GiST" = callPackage @@ -4994,6 +5159,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Glome"; description = "Ray Tracing Library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GlomeVec" = callPackage @@ -5025,6 +5191,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "SDL Frontend for Glome ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleChart" = callPackage @@ -5053,6 +5220,7 @@ self: { homepage = "https://github.com/favilo/GoogleDirections.git"; description = "Haskell Interface to Google Directions API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSB" = callPackage @@ -5068,6 +5236,7 @@ self: { ]; description = "Interface to Google Safe Browsing API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSuggest" = callPackage @@ -5091,6 +5260,7 @@ self: { buildDepends = [ AttoJson base bytestring dataenc download-curl ]; description = "Interface to Google Translate API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GotoT-transformers" = callPackage @@ -5125,6 +5295,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/gramprod"; description = "Grammar products and higher-dimensional grammars"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Graph500" = callPackage @@ -5169,6 +5340,7 @@ self: { buildDepends = [ array base containers Graph500 GraphHammer mtl ]; description = "Test harness for TriangleCount analysis"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphSCC" = callPackage @@ -5213,6 +5385,7 @@ self: { ]; description = "Embedded grammar DSL and LALR parser generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GroteTrap" = callPackage @@ -5248,6 +5421,7 @@ self: { homepage = "http://coiffier.net/projects/grow.html"; description = "A declarative make-like interpreter"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GrowlNotify" = callPackage @@ -5263,6 +5437,7 @@ self: { buildDepends = [ base binary bytestring Crypto haskell98 network ]; description = "Notification utility for Growl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gtk2hsGenerics" = callPackage @@ -5278,6 +5453,7 @@ self: { ]; description = "Convenience functions to extend Gtk2hs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkGLTV" = callPackage @@ -5293,6 +5469,7 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkTV" = callPackage @@ -5305,6 +5482,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GtkTV"; description = "Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GuiHaskell" = callPackage @@ -5324,6 +5502,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/guihaskell/"; description = "A graphical REPL and development environment for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GuiTV" = callPackage @@ -5336,6 +5515,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GuiTV"; description = "GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HARM" = callPackage @@ -5367,6 +5547,7 @@ self: { jailbreak = true; description = "HAppS data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-IxSet" = callPackage @@ -5382,6 +5563,7 @@ self: { syb-with-class template-haskell ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Server" = callPackage @@ -5403,6 +5585,7 @@ self: { jailbreak = true; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-State" = callPackage @@ -5423,6 +5606,7 @@ self: { jailbreak = true; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Util" = callPackage @@ -5439,6 +5623,7 @@ self: { ]; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppSHelpers" = callPackage @@ -5449,6 +5634,7 @@ self: { sha256 = "1hwxh60b26chcd466vlpxc7hx3smdnfl40mfxpyh8j1597v2aqa3"; description = "OBSOLETE. Please use happstack-helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCL" = callPackage @@ -5464,6 +5650,7 @@ self: { homepage = "http://github.com/m4dc4p/hcl/tree/master"; description = "High-level library for building command line interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCard" = callPackage @@ -5520,6 +5707,7 @@ self: { homepage = "http://github.com/bos/hdbc-mysql"; description = "MySQL driver for HDBC"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HDBC-odbc" = callPackage @@ -5614,6 +5802,7 @@ self: { homepage = "http://vis.renci.org/jeff/pfs"; description = "Utilities for reading, manipulating, and writing HDR images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) pfstools;}; "HERA" = callPackage @@ -5625,6 +5814,7 @@ self: { buildDepends = [ base ]; extraLibraries = [ mpfr ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) mpfr;}; "HFuse" = callPackage @@ -5672,6 +5862,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "A Toolset for the Haskell Game Programmer"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-API" = callPackage @@ -5690,6 +5881,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Audio" = callPackage @@ -5706,6 +5898,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Audio Functionality"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Bullet-Binding" = callPackage @@ -5733,6 +5926,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { HGamer3DCAudio015 = null;}; "HGamer3D-CEGUI-Binding" = callPackage @@ -5748,6 +5942,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { CEGUIBase = null; CEGUIOgreRenderer = null; hg3dcegui050 = null;}; @@ -5795,6 +5990,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Enet Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) enet; hg3denet050 = null;}; "HGamer3D-GUI" = callPackage @@ -5812,6 +6008,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "GUI Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Graphics3D" = callPackage @@ -5832,6 +6029,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-InputSystem" = callPackage @@ -5849,6 +6047,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Network" = callPackage @@ -5865,6 +6064,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Networking Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-OIS-Binding" = callPackage @@ -5883,6 +6083,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { HGamer3DOIS015 = null;}; "HGamer3D-Ogre-Binding" = callPackage @@ -5902,6 +6103,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Ogre Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { OgreMain = null; OgrePaging = null; OgreProperty = null; OgreRTShaderSystem = null; OgreTerrain = null; hg3dogre050 = null;}; @@ -5919,6 +6121,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SDL2 Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL2; hg3dsdl2050 = null; inherit (pkgs.xlibs) libX11;}; @@ -5937,6 +6140,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SFML Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { hg3dsfml050 = null; sfml-audio = null; sfml-network = null; sfml-system = null; sfml-window = null;}; @@ -5952,6 +6156,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Wire" = callPackage @@ -5971,6 +6176,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Wire Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HHDL" = callPackage @@ -5984,6 +6190,7 @@ self: { homepage = "http://thesz.mskhug.ru/svn/hhdl/hackage/hhdl/"; description = "Hardware Description Language embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HJScript" = callPackage @@ -6019,6 +6226,7 @@ self: { homepage = "https://github.com/JPMoresmau/HJVM"; description = "A library to create a Java Virtual Machine and manipulate Java objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { jvm = null;}; "HJavaScript" = callPackage @@ -6049,6 +6257,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Algebraic foundation for homomorphic learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-approximation" = callPackage @@ -6065,6 +6274,7 @@ self: { HLearn-datastructures HLearn-distributions list-extras vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-classification" = callPackage @@ -6087,6 +6297,7 @@ self: { jailbreak = true; homepage = "http://github.com/mikeizbicki/HLearn/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-datastructures" = callPackage @@ -6102,6 +6313,7 @@ self: { MonadRandom QuickCheck vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-distributions" = callPackage @@ -6124,6 +6336,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Distributions for use with the HLearn library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HList" = callPackage @@ -6156,6 +6369,7 @@ self: { homepage = "http://code.haskell.org/~aavogt/HListPP"; description = "A preprocessor for HList labelable labels"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLogger" = callPackage @@ -6171,6 +6385,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMM" = callPackage @@ -6182,6 +6397,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMap" = callPackage @@ -6213,6 +6429,7 @@ self: { homepage = "http://sert.homedns.org/hs/hnm/"; description = "Happy Network Manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HODE" = callPackage @@ -6225,6 +6442,7 @@ self: { extraLibraries = [ ode ]; description = "Binding to libODE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) ode;}; "HOpenCV" = callPackage @@ -6275,6 +6493,7 @@ self: { homepage = "http://github.com/solidsnack/HPath"; description = "Extract Haskell declarations by name"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HPi" = callPackage @@ -6305,6 +6524,7 @@ self: { homepage = "http://yakov.cc/HPlot.html"; description = "A minimal monadic PLplot interface for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { plplotd-gnome2 = null;}; "HPong" = callPackage @@ -6323,6 +6543,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/04/23/hpong-012/"; description = "A simple OpenGL Pong game based on GLFW"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT" = callPackage @@ -6341,6 +6562,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT RooFit modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-core" = callPackage @@ -6353,6 +6575,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Core modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-graf" = callPackage @@ -6365,6 +6588,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Graf modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-hist" = callPackage @@ -6377,6 +6601,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Hist modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-io" = callPackage @@ -6389,6 +6614,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT IO modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-math" = callPackage @@ -6401,6 +6627,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Math modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HRay" = callPackage @@ -6415,6 +6642,7 @@ self: { homepage = "http://boegel.kejo.be/ELIS/Haskell/HRay/"; description = "Haskell raytracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSFFIG" = callPackage @@ -6434,6 +6662,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HSFFIG"; description = "Generate FFI import declarations from C include files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSGEP" = callPackage @@ -6491,6 +6720,7 @@ self: { jailbreak = true; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSlippyMap" = callPackage @@ -6523,6 +6753,7 @@ self: { homepage = "https://github.com/agrafix/HSmarty"; description = "Small template engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSoundFile" = callPackage @@ -6539,6 +6770,7 @@ self: { homepage = "http://mml.music.utexas.edu/jwlato/HSoundFile"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HStringTemplate" = callPackage @@ -6605,6 +6837,7 @@ self: { buildDepends = [ base containers ]; description = "Haskell Bindings for libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTF" = callPackage @@ -6669,6 +6902,7 @@ self: { homepage = "http://www.b7j0c.org/content/haskell-http.html"; description = "DEPRECATED Enable simple wrappers to Network.HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTab" = callPackage @@ -6687,6 +6921,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTicTacToe" = callPackage @@ -6702,6 +6937,7 @@ self: { homepage = "http://github.com/snkkid/HTicTacToe"; description = "An SDL tic-tac-toe game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit" = callPackage @@ -6727,6 +6963,7 @@ self: { homepage = "https://github.com/dag/HUnit-Diff"; description = "Assertions for HUnit with difference reporting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-Plus" = callPackage @@ -6749,6 +6986,7 @@ self: { homepage = "https://github.com/emc2/HUnit-Plus"; description = "A test framework building on HUnit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-approx" = callPackage @@ -6785,6 +7023,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hxmpp/"; description = "A (prototyped) easy to use XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HXQ" = callPackage @@ -6802,6 +7041,7 @@ self: { homepage = "http://lambda.uta.edu/HXQ/"; description = "A Compiler from XQuery to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaLeX" = callPackage @@ -6816,6 +7056,7 @@ self: { homepage = "http://www.di.uminho.pt/~jas/Research/HaLeX/HaLeX.html"; description = "HaLeX enables modelling, manipulation and animation of regular languages"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaMinitel" = callPackage @@ -6875,6 +7116,7 @@ self: { homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaTeX" = callPackage @@ -6913,6 +7155,7 @@ self: { jailbreak = true; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaVSA" = callPackage @@ -6932,6 +7175,7 @@ self: { jailbreak = true; description = "An implementation of the Version Space Algebra learning framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaXml" = callPackage @@ -6969,6 +7213,7 @@ self: { homepage = "http://github.com/dmalikov/HaCh"; description = "Simple chat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HackMail" = callPackage @@ -7005,6 +7250,7 @@ self: { homepage = "https://github.com/Pold87/Haggressive"; description = "Aggression analysis for Tweets on Twitter"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HandlerSocketClient" = callPackage @@ -7061,6 +7307,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/HarmTrace"; description = "Harmony Analysis and Retrieval of Music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HarmTrace-Base" = callPackage @@ -7081,6 +7328,7 @@ self: { homepage = "https://bitbucket.org/bash/harmtrace-base"; description = "Parsing and unambiguously representing musical chords"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HasGP" = callPackage @@ -7098,6 +7346,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~sbh11/HasGP"; description = "A Haskell library for inference using Gaussian processes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haschoo" = callPackage @@ -7136,6 +7385,7 @@ self: { jailbreak = true; description = "Simple shell written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellForMaths" = callPackage @@ -7170,6 +7420,7 @@ self: { buildDepends = [ base hmatrix random ]; description = "High Performance Neural Network in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNet" = callPackage @@ -7226,6 +7477,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellTutorials" = callPackage @@ -7260,6 +7512,7 @@ self: { homepage = "http://www.matthewhayden.co.uk"; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hawk" = callPackage @@ -7282,6 +7535,7 @@ self: { jailbreak = true; description = "Haskell Web Application Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hayoo" = callPackage @@ -7310,6 +7564,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "The Hayoo! search engine for Haskell API search on hackage"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hclip" = callPackage @@ -7340,6 +7595,7 @@ self: { ]; description = "Line oriented editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hermes" = callPackage @@ -7359,6 +7615,7 @@ self: { jailbreak = true; description = "Message-based middleware layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hieroglyph" = callPackage @@ -7378,6 +7635,7 @@ self: { homepage = "http://vis.renci.org/jeff/hieroglyph"; description = "Purely functional 2D graphics for visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HiggsSet" = callPackage @@ -7395,6 +7653,7 @@ self: { homepage = "http://github.com/lpeterse/HiggsSet"; description = "A multi-index set with advanced query capabilites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hipmunk" = callPackage @@ -7453,6 +7712,7 @@ self: { ]; description = "An MPD client designed for a Home Theatre PC"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hoed" = callPackage @@ -7499,6 +7759,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "intra- and inter-program communication"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-MapReduce" = callPackage @@ -7521,6 +7782,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed MapReduce framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Searchengine" = callPackage @@ -7542,6 +7804,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Storage" = callPackage @@ -7562,6 +7825,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed storage system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Homology" = callPackage @@ -7594,6 +7858,7 @@ self: { jailbreak = true; description = "A Simple Key Value Store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hricket" = callPackage @@ -7609,6 +7874,7 @@ self: { homepage = "http://github.com/Raynes/Hricket"; description = "A Cricket scoring application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hs2lib" = callPackage @@ -7633,6 +7899,7 @@ self: { homepage = "http://blog.zhox.com/category/hs2lib/"; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsASA" = callPackage @@ -7656,6 +7923,7 @@ self: { buildDepends = [ base ]; description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsHyperEstraier" = callPackage @@ -7674,6 +7942,7 @@ self: { homepage = "http://cielonegro.org/HsHyperEstraier.html"; description = "HyperEstraier binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) { hyperestraier = null; qdbm = null;}; "HsJudy" = callPackage @@ -7687,6 +7956,7 @@ self: { homepage = "http://www.pugscode.org/"; description = "Judy bindings, and some nice APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { Judy = null;}; "HsOpenSSL" = callPackage @@ -7718,6 +7988,7 @@ self: { buildDepends = [ base bytestring HsSyck pretty pugs-DrIFT ]; description = "Haskell integration with Parrot virtual machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsPerl5" = callPackage @@ -7729,6 +8000,7 @@ self: { buildDepends = [ base ]; description = "Haskell interface to embedded Perl 5 interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSVN" = callPackage @@ -7741,6 +8013,7 @@ self: { homepage = "https://github.com/phonohawk/HsSVN"; description = "Partial Subversion (SVN) binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSyck" = callPackage @@ -7786,6 +8059,7 @@ self: { homepage = "http://github.com/rukav/Hsed"; description = "Stream Editor in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hsmtlib" = callPackage @@ -7804,6 +8078,7 @@ self: { homepage = "https://github.com/MfesGA/Hsmtlib"; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HueAPI" = callPackage @@ -7846,6 +8121,7 @@ self: { jailbreak = true; description = "Indexable, serializable form of Data.Dynamic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IFS" = callPackage @@ -7879,6 +8155,7 @@ self: { homepage = "http://haskell.di.uminho.pt/jmvilaca/INblobs/"; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOR" = callPackage @@ -7890,6 +8167,7 @@ self: { buildDepends = [ base mtl ]; description = "Region based resource management for the IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IORefCAS" = callPackage @@ -7905,6 +8183,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki"; description = "Atomic compare and swap for IORefs and STRefs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOSpec" = callPackage @@ -7962,15 +8241,15 @@ self: { }) {}; "Imlib" = callPackage - ({ mkDerivation, array, base, Imlib2, X11 }: + ({ mkDerivation, array, base, imlib2, X11 }: mkDerivation { pname = "Imlib"; version = "0.1.2"; sha256 = "075x1vcrxdwknzbad05l08i5c79svf714yvv6990ffvsfykiilry"; buildDepends = [ array base X11 ]; - extraLibraries = [ Imlib2 ]; + extraLibraries = [ imlib2 ]; license = stdenv.lib.licenses.bsd3; - }) { Imlib2 = null;}; + }) { inherit (pkgs) imlib2;}; "ImperativeHaskell" = callPackage ({ mkDerivation, base, mtl, template-haskell }: @@ -7982,6 +8261,7 @@ self: { homepage = "https://github.com/mmirman/ImperativeHaskell"; description = "A library for writing Imperative style haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IndentParser" = callPackage @@ -8017,6 +8297,7 @@ self: { buildDepends = [ base haskell98 ]; description = "liftA2 for infix operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Interpolation" = callPackage @@ -8063,6 +8344,7 @@ self: { buildDepends = [ base random time ]; description = "Haskell FRP binding to the Irrlicht game engine"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IsNull" = callPackage @@ -8100,6 +8382,7 @@ self: { ]; description = "A combinator library on top of a generalised JSON type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSON-Combinator-Examples" = callPackage @@ -8111,6 +8394,7 @@ self: { buildDepends = [ base bytestring json JSON-Combinator JSONb ]; description = "Example uses of the JSON-Combinator library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSONb" = callPackage @@ -8130,6 +8414,7 @@ self: { homepage = "http://github.com/solidsnack/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JYU-Utils" = callPackage @@ -8162,6 +8447,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javasf" = callPackage @@ -8176,6 +8462,7 @@ self: { buildDepends = [ base binary bytestring language-java-classfile ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javav" = callPackage @@ -8189,6 +8476,7 @@ self: { buildDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsContracts" = callPackage @@ -8209,6 +8497,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "Design-by-contract for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsonGrammar" = callPackage @@ -8317,6 +8606,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JunkDB-driver-hashtables" = callPackage @@ -8388,6 +8678,7 @@ self: { homepage = "https://github.com/Hamcha/Ketchup"; description = "A super small web framework for those who don't like big and fancy codebases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS" = callPackage @@ -8409,6 +8700,7 @@ self: { homepage = "http://www.curry-language.org"; description = "A compiler from Curry to Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { kics = null;}; "KiCS-debugger" = callPackage @@ -8429,6 +8721,7 @@ self: { homepage = "http://curry-language.org"; description = "debug features for kics"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS-prophecy" = callPackage @@ -8444,6 +8737,7 @@ self: { homepage = "http://curry-language.org"; description = "a transformation used by the kics debugger"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kleislify" = callPackage @@ -8468,6 +8762,7 @@ self: { homepage = "http://www.gkayaalp.com/p/konf.html"; description = "A configuration language and a parser"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KyotoCabinet" = callPackage @@ -8483,6 +8778,7 @@ self: { homepage = "https://code.google.com/p/kyotocabinet-hs/"; description = "Kyoto Cabinet DB bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) kyotocabinet;}; "L-seed" = callPackage @@ -8502,10 +8798,11 @@ self: { homepage = "http://www.entropia.de/wiki/L-seed"; description = "Plant growing programming game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LDAP" = callPackage - ({ mkDerivation, base, lber, ldap }: + ({ mkDerivation, base, lber, openldap }: mkDerivation { pname = "LDAP"; version = "0.6.10"; @@ -8513,11 +8810,11 @@ self: { isLibrary = true; isExecutable = true; buildDepends = [ base ]; - extraLibraries = [ lber ldap ]; + extraLibraries = [ lber openldap ]; homepage = "https://github.com/ezyang/ldap-haskell"; description = "Haskell binding for C LDAP API"; license = stdenv.lib.licenses.bsd3; - }) { lber = null; ldap = null;}; + }) { lber = null; inherit (pkgs) openldap;}; "LRU" = callPackage ({ mkDerivation, base, containers, QuickCheck }: @@ -8591,6 +8888,7 @@ self: { homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk;}; "LambdaINet" = callPackage @@ -8651,6 +8949,7 @@ self: { homepage = "http://github.com/jfischoff/LambdaPrettyQuote"; description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaShell" = callPackage @@ -8669,6 +8968,7 @@ self: { homepage = "http://rwd.rdockins.name/lambda/home/"; description = "Simple shell for evaluating lambda expressions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LargeCardinalHierarchy" = callPackage @@ -8698,6 +8998,7 @@ self: { homepage = "http://code.google.com/p/lastik"; description = "A library for compiling programs in a variety of languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lattices" = callPackage @@ -8745,6 +9046,7 @@ self: { homepage = "http://quasimal.com/projects/level_0.html"; description = "A Snake II clone written using SDL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LibClang" = callPackage @@ -8757,6 +9059,7 @@ self: { homepage = "https://github.com/chetant/LibClang/issues"; description = "Haskell bindings for libclang (a C++ parsing library)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LibZip" = callPackage @@ -8800,6 +9103,7 @@ self: { homepage = "http://github.com/rukav/LinearSplit"; description = "Partition the sequence of items to the subsequences in the order given"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinkChecker" = callPackage @@ -8818,6 +9122,7 @@ self: { homepage = "http://janzzstimmpfle.de/~jens/software/LinkChecker/"; description = "Check a bunch of local html files for broken links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "List" = callPackage @@ -8923,12 +9228,13 @@ self: { jailbreak = true; description = "a parallel implementation of logic programming using distributed tree exploration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-MPI" = callPackage ({ mkDerivation, base, bytestring, cereal, cmdtheline, containers , data-ivar, derive, hslogger, hslogger-template, LogicGrowsOnTrees - , MonadCatchIO-transformers, mpi, stm, transformers + , MonadCatchIO-transformers, openmpi, stm, transformers }: mkDerivation { pname = "LogicGrowsOnTrees-MPI"; @@ -8941,10 +9247,11 @@ self: { hslogger hslogger-template LogicGrowsOnTrees MonadCatchIO-transformers stm transformers ]; - extraLibraries = [ mpi ]; + extraLibraries = [ openmpi ]; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = stdenv.lib.licenses.bsd3; - }) { mpi = null;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) { inherit (pkgs) openmpi;}; "LogicGrowsOnTrees-network" = callPackage ({ mkDerivation, base, cereal, cmdtheline, composition, containers @@ -8970,6 +9277,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-processes" = callPackage @@ -8996,6 +9304,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LslPlus" = callPackage @@ -9018,6 +9327,7 @@ self: { homepage = "http:/lslplus.sourceforge.net/"; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lucu" = callPackage @@ -9040,6 +9350,7 @@ self: { homepage = "http://cielonegro.org/Lucu.html"; description = "HTTP Daemonic Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MC-Fold-DP" = callPackage @@ -9058,6 +9369,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/mcfolddp/"; description = "Folding algorithm based on nucleotide cyclic motifs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MFlow" = callPackage @@ -9115,6 +9427,7 @@ self: { homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT" = callPackage @@ -9138,6 +9451,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-transformers" = callPackage @@ -9192,6 +9506,7 @@ self: { jailbreak = true; description = "A library for units of measurement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MemoTrie" = callPackage @@ -9231,6 +9546,7 @@ self: { buildDepends = [ base containers stringtable-atom ]; description = "A meta-object system for Haskell based on Perl 6"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Metrics" = callPackage @@ -9243,6 +9559,7 @@ self: { homepage = "http://github.com/benhamner/Metrics/"; description = "Evaluation metrics commonly used in supervised machine learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Mhailist" = callPackage @@ -9262,6 +9579,7 @@ self: { jailbreak = true; description = "Haskell mailing list manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MiniAgda" = callPackage @@ -9282,6 +9600,7 @@ self: { homepage = "http://www.tcs.ifi.lmu.de/~abel/miniagda/"; description = "A toy dependently typed programming language with type-based termination"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MissingH" = callPackage @@ -9335,6 +9654,7 @@ self: { homepage = "http://github.com/softmechanics/missingpy"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Modulo" = callPackage @@ -9388,6 +9708,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCatchIO-transformers" = callPackage @@ -9419,6 +9740,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadLab" = callPackage @@ -9434,6 +9756,7 @@ self: { homepage = "http://monadgarden.cs.missouri.edu/MonadLab"; description = "Automatically generate layered monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadPrompt" = callPackage @@ -9499,6 +9822,7 @@ self: { homepage = "https://github.com/fumieval/Monaris/"; description = "A simple tetris clone"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monatron" = callPackage @@ -9533,6 +9857,7 @@ self: { buildDepends = [ base containers haskell98 mtl ]; description = "Symbolic computations in strict monoidal categories with LaTeX output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MorseCode" = callPackage @@ -9689,6 +10014,7 @@ self: { buildDepends = [ base HCL HTTP network regex-compat ]; description = "Simple application for calculating n-grams using Google"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NTRU" = callPackage @@ -9730,6 +10056,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A Haskell interface to Lego Mindstorms NXT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { bluetooth = null;}; "NXTDSL" = callPackage @@ -9749,6 +10076,7 @@ self: { homepage = "https://github.com/agrafix/legoDSL"; description = "Generate NXC Code from DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NanoProlog" = callPackage @@ -9820,7 +10148,7 @@ self: { }) {}; "NetSNMP" = callPackage - ({ mkDerivation, base, bytestring, HUnit, netsnmp, process + ({ mkDerivation, base, bytestring, HUnit, net_snmp, process , utf8-string }: mkDerivation { @@ -9829,12 +10157,13 @@ self: { sha256 = "17lmxwcc3z69dgxipi776m2wpwa1lz84w9v2wirw08wb9fba2gdr"; buildDepends = [ base bytestring utf8-string ]; testDepends = [ base bytestring HUnit process utf8-string ]; - extraLibraries = [ netsnmp ]; + extraLibraries = [ net_snmp ]; jailbreak = true; homepage = "https://github.com/ptek/netsnmp"; description = "Bindings for net-snmp's C API for clients"; license = stdenv.lib.licenses.bsd3; - }) { netsnmp = null;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) { inherit (pkgs) net_snmp;}; "Network-NineP" = callPackage ({ mkDerivation, base, binary, bytestring, containers, convertible @@ -9854,6 +10183,7 @@ self: { jailbreak = true; description = "High-level abstraction over 9P protocol"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NewBinary" = callPackage @@ -9899,6 +10229,7 @@ self: { homepage = "http://github.com/glguy/ninjas"; description = "Ninja game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoSlow" = callPackage @@ -9920,6 +10251,7 @@ self: { homepage = "http://code.haskell.org/NoSlow"; description = "Microbenchmarks for various array libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoTrace" = callPackage @@ -10029,6 +10361,7 @@ self: { ]; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Web" = callPackage @@ -10082,6 +10415,7 @@ self: { homepage = "http://code.google.com/p/nonempty/"; description = "A list with a length of at least one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumInstances" = callPackage @@ -10148,6 +10482,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "Nussinov78 using the ADPfusion library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nutri" = callPackage @@ -10173,6 +10508,7 @@ self: { homepage = "http://haskell.org/haskellwiki/OGL"; description = "A context aware binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OSM" = callPackage @@ -10189,6 +10525,7 @@ self: { homepage = "https://github.com/tonymorris/geo-osm"; description = "Parse OpenStreetMap files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OTP" = callPackage @@ -10229,6 +10566,7 @@ self: { winspool ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { comctl32 = null; comdlg32 = null; gdi32 = null; kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; @@ -10262,6 +10600,7 @@ self: { homepage = "https://github.com/svenssonjoel/Obsidian"; description = "Embedded language for GPU Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Octree" = callPackage @@ -10301,6 +10640,7 @@ self: { testDepends = [ base containers hsc2hs HUnit ]; description = "Integer sets and relations using Presburger arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OneTuple" = callPackage @@ -10378,6 +10718,7 @@ self: { homepage = "https://github.com/IFCA/opencl"; description = "Haskell high-level wrapper for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { OpenCL = null;}; "OpenCLRaw" = callPackage @@ -10391,6 +10732,7 @@ self: { homepage = "http://vis.renci.org/jeff/opencl"; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenCLWrappers" = callPackage @@ -10429,6 +10771,7 @@ self: { buildDepends = [ base checkers haskell98 OpenGL QuickCheck ]; description = "Quickcheck instances for various data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenGLRaw" = callPackage @@ -10484,6 +10827,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "OpenVG (ShivaVG-0.2.1) binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenVGRaw" = callPackage @@ -10496,6 +10840,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Operads" = callPackage @@ -10509,6 +10854,7 @@ self: { homepage = "http://math.stanford.edu/~mik/operads"; description = "Groebner basis computation for Operads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OptDir" = callPackage @@ -10663,6 +11009,7 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paillier" = callPackage @@ -10701,6 +11048,7 @@ self: { jailbreak = true; description = "Pandoc support for literate Agda"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paraiso" = callPackage @@ -10727,6 +11075,7 @@ self: { homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; description = "a code generator for partial differential equations solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Parry" = callPackage @@ -10818,6 +11167,7 @@ self: { extraLibraries = [ libxml2 ]; description = "Relational optimiser and code generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libxml2;}; "Peano" = callPackage @@ -10856,6 +11206,7 @@ self: { extraLibraries = [ cmph ]; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { cmph = null;}; "PermuteEffects" = callPackage @@ -10869,6 +11220,7 @@ self: { homepage = "https://github.com/MedeaMelana/PermuteEffects"; description = "Permutations of effectful computations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pipe" = callPackage @@ -10881,6 +11233,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/pipe/"; description = "Process piping library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Piso" = callPackage @@ -10945,6 +11298,7 @@ self: { ]; description = "Real-time line plotter for protobuf-like data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PlslTools" = callPackage @@ -10964,6 +11318,7 @@ self: { homepage = "LLayland.wordpress.com"; description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Plural" = callPackage @@ -11026,6 +11381,7 @@ self: { buildDepends = [ base mtl ]; description = "Thin wrapper over the C postgresql library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PrimitiveArray" = callPackage @@ -11052,6 +11408,7 @@ self: { sha256 = "0n1gva510p69vy25zvjkzwqqz2gilbns1wnrzz2p22rjkkbrinvx"; buildDepends = [ base haskell98 pretty template-haskell ]; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PriorityChansConverger" = callPackage @@ -11063,6 +11420,7 @@ self: { buildDepends = [ base containers stm ]; description = "Read single output from an array of inputs - channels with priorities"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProbabilityMonads" = callPackage @@ -11074,6 +11432,7 @@ self: { buildDepends = [ base MaybeT MonadRandom mtl ]; description = "Probability distribution monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PropLogic" = callPackage @@ -11102,6 +11461,7 @@ self: { homepage = "https://github.com/dillonhuff/Proper"; description = "An implementation of propositional logic in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProxN" = callPackage @@ -11138,6 +11498,7 @@ self: { homepage = "http://pugscode.org/"; description = "A Perl 6 Implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events" = callPackage @@ -11155,6 +11516,7 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events-Client" = callPackage @@ -11188,6 +11550,7 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events-PQueue" = callPackage @@ -11280,6 +11643,7 @@ self: { homepage = "http://code.haskell.org/QuickAnnotate/"; description = "Annotation Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickCheck" = callPackage @@ -11310,6 +11674,7 @@ self: { homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Quickson" = callPackage @@ -11368,6 +11733,7 @@ self: { jailbreak = true; description = "A framework for writing RESTful applications"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RFC1751" = callPackage @@ -11401,6 +11767,7 @@ self: { ]; description = "A reflective JSON serializer/parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RMP" = callPackage @@ -11419,6 +11786,7 @@ self: { extraLibraries = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -11439,6 +11807,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "RNA secondary structure prediction"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAFoldProgs" = callPackage @@ -11459,6 +11828,7 @@ self: { jailbreak = true; description = "RNA secondary structure folding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdesign" = callPackage @@ -11484,6 +11854,7 @@ self: { ]; description = "Multi-target RNA sequence design"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdraw" = callPackage @@ -11525,6 +11896,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/rnawolf/"; description = "RNA folding with non-canonical basepairs and base-triplets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RSA" = callPackage @@ -11565,6 +11937,7 @@ self: { homepage = "http://raincat.bysusanlin.com/"; description = "A puzzle game written in Haskell with a cat in lead role"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Random123" = callPackage @@ -11594,6 +11967,7 @@ self: { buildDepends = [ base HTTP-Simple network ]; description = "Interface to random.org"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Randometer" = callPackage @@ -11646,6 +12020,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/ranka"; description = "HTTP to XMPP omegle chats gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasenschach" = callPackage @@ -11667,6 +12042,7 @@ self: { homepage = "http://hub.darcs.net/martingw/Rasenschach"; description = "Soccer simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasterific" = callPackage @@ -11688,6 +12064,7 @@ self: { ]; description = "A pure haskell drawing engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ReadArgs" = callPackage @@ -11741,6 +12118,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RefSerialize" = callPackage @@ -11816,6 +12194,7 @@ self: { ]; description = "Haskell bindings to ReviewBoard"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rlang-QQ" = callPackage @@ -11861,6 +12240,7 @@ self: { ]; description = "Limits the size of a directory's contents"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RxHaskell" = callPackage @@ -11890,6 +12270,7 @@ self: { ]; description = "A benchmark suite for runtime and heap measurements over a series of inputs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SConfig" = callPackage @@ -11914,6 +12295,7 @@ self: { extraLibraries = [ SDL ]; description = "Binding to libSDL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL;}; "SDL-gfx" = callPackage @@ -11925,6 +12307,7 @@ self: { buildDepends = [ base SDL ]; description = "Binding to libSDL_gfx"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SDL-image" = callPackage @@ -11937,6 +12320,7 @@ self: { extraLibraries = [ SDL_image ]; description = "Binding to libSDL_image"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL_image;}; "SDL-mixer" = callPackage @@ -11949,6 +12333,7 @@ self: { extraLibraries = [ SDL_mixer ]; description = "Binding to libSDL_mixer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL_mixer;}; "SDL-mpeg" = callPackage @@ -11961,6 +12346,7 @@ self: { extraLibraries = [ smpeg ]; description = "Binding to the SMPEG library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) smpeg;}; "SDL-ttf" = callPackage @@ -11973,6 +12359,7 @@ self: { extraLibraries = [ SDL_ttf ]; description = "Binding to libSDL_ttf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL_ttf;}; "SDL2-ttf" = callPackage @@ -11986,6 +12373,7 @@ self: { jailbreak = true; description = "Binding to libSDL-ttf"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL2; SDL2_ttf = null;}; "SFML" = callPackage @@ -12003,6 +12391,7 @@ self: { homepage = "https://github.com/jeannekamikaze/SFML"; description = "SFML bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { csfml-audio = null; csfml-graphics = null; csfml-network = null; csfml-system = null; csfml-window = null;}; @@ -12017,6 +12406,7 @@ self: { homepage = "https://github.com/SFML-haskell/SFML-control"; description = "Higher level library on top of SFML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SFont" = callPackage @@ -12029,6 +12419,7 @@ self: { homepage = "http://liamoc.net/static/SFont"; description = "SFont SDL Bitmap Fonts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SG" = callPackage @@ -12040,6 +12431,7 @@ self: { buildDepends = [ base mtl ]; description = "Small geometry library for dealing with vectors and collision detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SGdemo" = callPackage @@ -12054,6 +12446,7 @@ self: { jailbreak = true; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SHA" = callPackage @@ -12112,6 +12505,7 @@ self: { homepage = "http://www.snet-home.org/"; description = "Declarative coördination language for streaming networks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SQLDeps" = callPackage @@ -12169,6 +12563,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SVGFonts" = callPackage @@ -12273,6 +12668,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Salsa"; description = "A .NET Bridge for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) glib; inherit (pkgs) mono;}; "ScratchFs" = callPackage @@ -12293,6 +12689,7 @@ self: { homepage = "http://github.com/hirschenberger/ScratchFS"; description = "Size limited temp filesystem based on fuse"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Scurry" = callPackage @@ -12312,6 +12709,7 @@ self: { homepage = "http://code.google.com/p/scurry/"; description = "A cross platform P2P VPN application built using Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SegmentTree" = callPackage @@ -12344,6 +12742,7 @@ self: { jailbreak = true; description = "Command-line tool for maintaining the Semantique database"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Semigroup" = callPackage @@ -12372,6 +12771,7 @@ self: { jailbreak = true; description = "Easy Loggingframework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShellCheck" = callPackage @@ -12419,6 +12819,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-editline" = callPackage @@ -12431,6 +12832,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Editline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-haskeline" = callPackage @@ -12454,6 +12856,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Readline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShowF" = callPackage @@ -12516,6 +12919,7 @@ self: { jailbreak = true; description = "A Simple Graphics Library from the SimpleH framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleH" = callPackage @@ -12533,6 +12937,7 @@ self: { jailbreak = true; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleLog" = callPackage @@ -12554,6 +12959,7 @@ self: { homepage = "https://github.com/exFalso/SimpleLog/"; description = "Simple, configurable logging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SizeCompare" = callPackage @@ -12581,6 +12987,7 @@ self: { jailbreak = true; description = "A tiny, lazy SMT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Snusmumrik" = callPackage @@ -12605,6 +13012,7 @@ self: { homepage = "http://bitbucket.org/jetxee/snusmumrik/"; description = "E-library directory based on FUSE virtual file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -12643,6 +13051,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "Football simulation framework for teaching functional programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SoccerFunGL" = callPackage @@ -12663,6 +13072,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "OpenGL UI for the SoccerFun framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sonnex" = callPackage @@ -12695,6 +13105,7 @@ self: { jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SpaceInvaders" = callPackage @@ -12730,6 +13141,7 @@ self: { homepage = "https://github.com/tuturto/space-privateers"; description = "Simple space pirate roguelike"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Spock" = callPackage @@ -12768,6 +13180,7 @@ self: { homepage = "https://github.com/agrafix/Spock-auth"; description = "Provides authentification helpers for Spock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Spock-digestive" = callPackage @@ -12826,6 +13239,7 @@ self: { homepage = "http://liamoc.net/static/Sprig"; description = "Binding to Sprig"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Stasis" = callPackage @@ -12891,6 +13305,7 @@ self: { homepage = "http://github.com/rukav/Stomp"; description = "Client library for Stomp brokers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-ATermLib" = callPackage @@ -12922,6 +13337,7 @@ self: { jailbreak = true; description = "Converts SDF to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-StrategyLib" = callPackage @@ -12953,6 +13369,7 @@ self: { homepage = "https://github.com/hansonkd/StrappedTemplates"; description = "General purpose templates in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "StrategyLib" = callPackage @@ -12987,6 +13404,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/06/07/strictbench-0-1/"; description = "Benchmarking code through strict evaluation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SybWidget" = callPackage @@ -13020,6 +13438,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/SyntaxMacrosForFree"; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sysmon" = callPackage @@ -13038,6 +13457,7 @@ self: { homepage = "http://github.com/rukav/Sysmon"; description = "Sybase 15 sysmon reports processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBC" = callPackage @@ -13055,6 +13475,7 @@ self: { ]; description = "Testing By Convention"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBit" = callPackage @@ -13073,6 +13494,7 @@ self: { jailbreak = true; description = "Utilities for condensed matter physics tight binding calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TCache" = callPackage @@ -13128,6 +13550,7 @@ self: { ]; description = "Template Your Boilerplate - a Template Haskell version of SYB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TableAlgebra" = callPackage @@ -13157,6 +13580,7 @@ self: { jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tablify" = callPackage @@ -13184,6 +13608,7 @@ self: { buildDepends = [ base mtl old-time time ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tape" = callPackage @@ -13212,6 +13637,7 @@ self: { homepage = "http://liamoc.net/tea"; description = "TeaHS Game Creation Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tensor" = callPackage @@ -13248,6 +13674,7 @@ self: { buildDepends = [ base ]; extraLibraries = [ ogg theora ]; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { ogg = null; theora = null;}; "Thingie" = callPackage @@ -13259,6 +13686,7 @@ self: { buildDepends = [ base cairo gtk mtl ]; description = "Purely functional 2D drawing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ThreadObjects" = callPackage @@ -13285,6 +13713,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TicTacToe" = callPackage @@ -13330,6 +13759,7 @@ self: { ]; description = "A simple tile-based digital clock screen saver"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TinyLaunchbury" = callPackage @@ -13352,6 +13782,7 @@ self: { buildDepends = [ base HTTP network ]; description = "Use TinyURL to compress URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Top" = callPackage @@ -13385,6 +13816,7 @@ self: { homepage = "http://github.com/clux/tournament.hs"; description = "Tournament related algorithms"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TraceUtils" = callPackage @@ -13463,6 +13895,7 @@ self: { jailbreak = true; description = "A simple trend Graph script"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TrieMap" = callPackage @@ -13480,6 +13913,7 @@ self: { ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Twofish" = callPackage @@ -13518,6 +13952,7 @@ self: { ]; description = "Typing speed game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeCompose" = callPackage @@ -13544,6 +13979,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/people/staff/oc/TypeIlluminator/"; description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypingTester" = callPackage @@ -13592,6 +14028,7 @@ self: { homepage = "http://www.korgwal.com/umm/"; description = "A small command-line accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLT" = callPackage @@ -13609,6 +14046,7 @@ self: { ]; description = "Library for maintaining correctness of URLs within an application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLb" = callPackage @@ -13675,6 +14113,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/UrlDisp"; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Useful" = callPackage @@ -13723,6 +14162,7 @@ self: { homepage = "http://github.com/grwlf/vkhs"; description = "Provides access to Vkontakte social network via public API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) curl;}; "Validation" = callPackage @@ -13760,6 +14200,7 @@ self: { jailbreak = true; description = "Provides Boolean instances for the Vec package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-OpenGLRaw" = callPackage @@ -13772,6 +14213,7 @@ self: { homepage = "http://www.downstairspeople.org/darcs/Vec-opengl"; description = "Instances and functions to interoperate Vec and OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-Transform" = callPackage @@ -13783,6 +14225,7 @@ self: { homepage = "https://github.com/tobbebex/Vec-Transform"; description = "This package is obsolete"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "VecN" = callPackage @@ -13836,6 +14279,7 @@ self: { jailbreak = true; description = "A simple command line tools to control the Asus WL500gP router"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WL500gPLib" = callPackage @@ -13880,6 +14324,7 @@ self: { buildDepends = [ base haskell98 parsec ]; description = "Convert the WURFL file into a Parsec parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WXDiffCtrl" = callPackage @@ -13892,6 +14337,7 @@ self: { homepage = "http://wewantarock.wordpress.com"; description = "WXDiffCtrl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WashNGo" = callPackage @@ -13912,6 +14358,7 @@ self: { homepage = "http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/"; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebBits" = callPackage @@ -13939,6 +14386,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "JavaScript analysis tools"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebBits-multiplate" = callPackage @@ -13955,6 +14403,7 @@ self: { jailbreak = true; description = "A Multiplate instance for JavaScript"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebCont" = callPackage @@ -13974,6 +14423,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/webconts/snapshot/current/content/pretty"; description = "Continuation based web programming for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WeberLogic" = callPackage @@ -14011,6 +14461,7 @@ self: { jailbreak = true; description = "Regexp-like engine to scrap web data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wheb" = callPackage @@ -14037,6 +14488,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "The frictionless WAI Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WikimediaParser" = callPackage @@ -14048,6 +14500,7 @@ self: { buildDepends = [ base parsec ]; description = "A parser for wikimedia style article markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Win32" = callPackage @@ -14063,6 +14516,7 @@ self: { homepage = "https://github.com/haskell/win32"; description = "A binding to part of the Win32 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { advapi32 = null; gdi32 = null; shell32 = null; shfolder = null; user32 = null; winmm = null;}; @@ -14077,6 +14531,7 @@ self: { homepage = "http://github.com/mikesteele81/win32-dhcp-server"; description = "Win32 DHCP Server Management API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Win32-errors" = callPackage @@ -14090,6 +14545,7 @@ self: { homepage = "http://github.com/mikesteele81/win32-errors"; description = "Alternative error handling for Win32 foreign calls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Win32-extras" = callPackage @@ -14103,6 +14559,7 @@ self: { homepage = "http://hub.darcs.net/shelarcy/Win32-extras/"; description = "Provides missing Win32 API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { imm32 = null; msimg32 = null;}; "Win32-junction-point" = callPackage @@ -14116,6 +14573,7 @@ self: { homepage = "http://github.com/mikesteele81/Win32-junction-point"; description = "Support for manipulating NTFS junction points"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Win32-notify" = callPackage @@ -14129,6 +14587,7 @@ self: { buildDepends = [ base containers directory Win32 ]; description = "A binding to part of the Win32 library for file notification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Win32-services" = callPackage @@ -14142,6 +14601,7 @@ self: { homepage = "http://github.com/mikesteele81/win32-services"; description = "Windows service applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { Advapi32 = null;}; "Win32-services-wrapper" = callPackage @@ -14154,6 +14614,7 @@ self: { buildDepends = [ base directory filepath Win32 Win32-services ]; description = "Wrapper code for making a Win32 service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wired" = callPackage @@ -14206,6 +14667,7 @@ self: { homepage = "https://github.com/gbgar/Wordlint"; description = "Plaintext prose redundancy linter"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Workflow" = callPackage @@ -14237,6 +14699,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxGeneric"; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "X11" = callPackage @@ -14270,6 +14733,7 @@ self: { jailbreak = true; description = "Missing bindings to the X11 graphics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) libX11;}; "X11-rm" = callPackage @@ -14281,6 +14745,7 @@ self: { buildDepends = [ base X11 ]; description = "A binding to the resource management functions missing from X11"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "X11-xdamage" = callPackage @@ -14294,6 +14759,7 @@ self: { homepage = "http://darcs.haskell.org/X11-xdamage"; description = "A binding to the Xdamage X11 extension library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { Xdamage = null;}; "X11-xfixes" = callPackage @@ -14307,6 +14773,7 @@ self: { homepage = "https://github.com/reacocard/x11-xfixes"; description = "A binding to the Xfixes X11 extension library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { Xfixes = null;}; "X11-xft" = callPackage @@ -14362,6 +14829,7 @@ self: { homepage = "http://code.fac9.com/xinput/"; description = "Bindings for the DirectX XInput library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) xinput;}; "XMMS" = callPackage @@ -14375,6 +14843,7 @@ self: { homepage = "http://kawais.org.ua/XMMS/"; description = "XMMS2 client library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { xmmsclient = null; xmmsclient-glib = null;}; "XMPP" = callPackage @@ -14392,6 +14861,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XSaiga" = callPackage @@ -14410,6 +14880,7 @@ self: { homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xauth" = callPackage @@ -14422,6 +14893,7 @@ self: { pkgconfigDepends = [ xau ]; description = "A binding to the X11 authentication library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { xau = null;}; "Xec" = callPackage @@ -14440,6 +14912,7 @@ self: { ]; description = "Gtk command launcher with identicon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XmlHtmlWriter" = callPackage @@ -14452,6 +14925,7 @@ self: { homepage = "http://github.com/mmirman/haskogeneous/tree/XmlHtmlWriter"; description = "A library for writing XML and HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YACPong" = callPackage @@ -14472,6 +14946,7 @@ self: { homepage = "http://github.com/snkkid/YACPong"; description = "Yet Another Pong Clone using SDL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YFrob" = callPackage @@ -14484,6 +14959,7 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Yampa-based library for programming robots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yablog" = callPackage @@ -14519,6 +14995,7 @@ self: { homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master"; description = "A simple blog engine powered by Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YamlReference" = callPackage @@ -14537,6 +15014,7 @@ self: { homepage = "http://www.ben-kiki.org/oren/YamlReference"; description = "YAML reference implementation"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yampa" = callPackage @@ -14594,6 +15072,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A MUD client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yogurt-Standalone" = callPackage @@ -14614,6 +15093,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A functional MUD client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) readline;}; "ZFS" = callPackage @@ -14640,6 +15120,7 @@ self: { buildDepends = [ array base gtk mtl random ]; description = "A Z-machine interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ZipFold" = callPackage @@ -14693,6 +15174,7 @@ self: { homepage = "https://github.com/MedeaMelana/Zwaluw"; description = "Combinators for bidirectional URL routing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "a50" = callPackage @@ -14762,6 +15244,7 @@ self: { extraLibraries = [ abc ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) abc;}; "abcnotation" = callPackage @@ -14848,6 +15331,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Provides the class ParAccelerate, nothing more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "abt" = callPackage @@ -14944,6 +15428,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-cublas/"; description = "Basic Linear Algebra using native CUBLAS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-cuda" = callPackage @@ -14968,6 +15453,7 @@ self: { homepage = "https://github.com/AccelerateHS/accelerate-cuda/"; description = "Accelerate backend for NVIDIA GPUs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-cufft" = callPackage @@ -14987,6 +15473,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-cufft/"; description = "Accelerate frontend to the CUFFT library (Fourier transform)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-examples" = callPackage @@ -15003,6 +15490,7 @@ self: { homepage = "https://github.com/AccelerateHS/accelerate-examples"; description = "Examples using the Accelerate library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-fft" = callPackage @@ -15016,6 +15504,7 @@ self: { homepage = "https://github.com/AccelerateHS/accelerate-fft"; description = "FFT using the Accelerate library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-fftw" = callPackage @@ -15032,6 +15521,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-fftw/"; description = "Accelerate frontend to the FFTW library (Fourier transform)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-fourier" = callPackage @@ -15073,6 +15563,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-fourier-benchmark/"; description = "Compare different implementations of the Fast Fourier Transform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-io" = callPackage @@ -15115,6 +15606,7 @@ self: { homepage = "http://accentuate.us/"; description = "A Haskell implementation of the Accentuate.us API."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "access-time" = callPackage @@ -15128,6 +15620,7 @@ self: { homepage = "http://www.github.com/batterseapower/access-time"; description = "Cross-platform support for retrieving file access times"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ace" = callPackage @@ -15330,6 +15823,7 @@ self: { homepage = "https://github.com/llelf/acme-lolcat"; description = "LOLSPEAK translator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-lookofdisapproval" = callPackage @@ -15388,6 +15882,7 @@ self: { jailbreak = true; description = "Define the less than and add and subtract for nats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-omitted" = callPackage @@ -15451,6 +15946,7 @@ self: { ]; description = "Proper names for curry and uncurry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-strfry" = callPackage @@ -15556,6 +16052,7 @@ self: { jailbreak = true; description = "Haskell code presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "activehs-base" = callPackage @@ -15591,6 +16088,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/actors-with-multi-headed-receive.html"; description = "Actors with multi-headed receive clauses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ad" = callPackage @@ -15622,6 +16120,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/adaptive-containers"; description = "Self optimizing container types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adaptive-tuple" = callPackage @@ -15634,6 +16133,7 @@ self: { homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adb" = callPackage @@ -15698,6 +16198,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Ad-hoc P2P network protocol"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adict" = callPackage @@ -15777,6 +16278,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "ADP for multiple context-free languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adp-multi-monadiccp" = callPackage @@ -15798,6 +16300,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "Subword construction in adp-multi using monadiccp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson" = callPackage @@ -15841,6 +16344,7 @@ self: { jailbreak = true; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-lens" = callPackage @@ -15877,6 +16381,7 @@ self: { homepage = "http://github.com/mailrank/aeson"; description = "Fast JSON parsing and encoding (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-pretty" = callPackage @@ -15944,6 +16449,7 @@ self: { homepage = "https://github.com/timjb/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-serialize" = callPackage @@ -15991,6 +16497,7 @@ self: { homepage = "https://github.com/noteed/aeson-streams"; description = "An HTTP client library for JSON-based APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-t" = callPackage @@ -16098,6 +16605,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Infinite state model checking of iterative C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-server" = callPackage @@ -16117,6 +16625,7 @@ self: { ]; description = "Http server for Agda (prototype)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agum" = callPackage @@ -16220,6 +16729,7 @@ self: { homepage = "https://github.com/joelteon/airbrake"; description = "An Airbrake notifier for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aivika" = callPackage @@ -16314,6 +16824,7 @@ self: { homepage = "http://github.com/dsorokin/aivika-transformers"; description = "Transformers for the Aivika simulation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ajhc" = callPackage @@ -16336,6 +16847,7 @@ self: { homepage = "http://ajhc.metasepi.org/"; description = "Haskell compiler that produce binary through C language"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alarmclock" = callPackage @@ -16363,6 +16875,7 @@ self: { homepage = "https://github.com/Rnhmjoj/alea"; description = "a diceware passphrase generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alex" = callPackage @@ -16477,6 +16990,7 @@ self: { homepage = "https://github.com/wdanilo/algebraic"; description = "General linear algebra structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "algebraic-classes" = callPackage @@ -16581,6 +17095,7 @@ self: { homepage = "http://www.ccs.neu.edu/~tov/pubs/alms"; description = "a practical affine language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpha" = callPackage @@ -16603,6 +17118,7 @@ self: { homepage = "http://www.alpha-lang.net/"; description = "A compiler for the Alpha language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpino-tools" = callPackage @@ -16624,6 +17140,7 @@ self: { homepage = "http://github.com/danieldk/alpino-tools"; description = "Alpino data manipulation tools"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa" = callPackage @@ -16640,6 +17157,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) alsaLib;}; "alsa-core" = callPackage @@ -16672,6 +17190,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Some simple interactive programs for sending MIDI control messages via ALSA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa-midi" = callPackage @@ -16690,6 +17209,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) alsaLib;}; "alsa-mixer" = callPackage @@ -16737,6 +17257,7 @@ self: { buildDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa-seq" = callPackage @@ -16772,6 +17293,7 @@ self: { jailbreak = true; description = "Tests for the ALSA sequencer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "altcomposition" = callPackage @@ -16811,6 +17333,7 @@ self: { homepage = "http://repo.or.cz/w/altfloat.git"; description = "Alternative floating point support for GHC"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alure" = callPackage @@ -16823,6 +17346,7 @@ self: { extraLibraries = [ alure ]; description = "A Haskell binding for ALURE"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { alure = null;}; "amazon-emailer" = callPackage @@ -16844,6 +17368,7 @@ self: { homepage = "https://github.com/dbp/amazon-emailer"; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazon-emailer-client-snap" = callPackage @@ -16914,6 +17439,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Auto Scaling SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudformation" = callPackage @@ -16926,6 +17452,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFormation SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudfront" = callPackage @@ -16938,6 +17465,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFront SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudsearch" = callPackage @@ -16950,6 +17478,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudsearch-domains" = callPackage @@ -16962,6 +17491,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch Domain SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudtrail" = callPackage @@ -16974,6 +17504,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudTrail SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudwatch" = callPackage @@ -16998,6 +17529,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Logs SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codedeploy" = callPackage @@ -17010,6 +17542,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeDeploy SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cognito-identity" = callPackage @@ -17022,6 +17555,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cognito-sync" = callPackage @@ -17034,6 +17568,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Sync SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-config" = callPackage @@ -17046,6 +17581,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Config SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-core" = callPackage @@ -17088,6 +17624,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Data Pipeline SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-directconnect" = callPackage @@ -17100,6 +17637,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Direct Connect SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-dynamodb" = callPackage @@ -17112,6 +17650,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ec2" = callPackage @@ -17124,6 +17663,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Compute Cloud SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elasticache" = callPackage @@ -17136,6 +17676,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon ElastiCache SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elasticbeanstalk" = callPackage @@ -17148,6 +17689,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Beanstalk SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elastictranscoder" = callPackage @@ -17160,6 +17702,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Transcoder SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elb" = callPackage @@ -17172,6 +17715,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Load Balancing SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-emr" = callPackage @@ -17184,6 +17728,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic MapReduce SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-iam" = callPackage @@ -17196,6 +17741,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Identity and Access Management SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-importexport" = callPackage @@ -17208,6 +17754,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Import/Export SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-kinesis" = callPackage @@ -17220,6 +17767,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-kms" = callPackage @@ -17244,6 +17792,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Lambda SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-opsworks" = callPackage @@ -17256,6 +17805,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon OpsWorks SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-rds" = callPackage @@ -17268,6 +17818,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-redshift" = callPackage @@ -17280,6 +17831,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Redshift SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-route53" = callPackage @@ -17292,6 +17844,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-route53-domains" = callPackage @@ -17304,6 +17857,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 Domains SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-s3" = callPackage @@ -17316,6 +17870,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Storage Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sdb" = callPackage @@ -17328,6 +17883,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon SimpleDB SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ses" = callPackage @@ -17340,6 +17896,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Email Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sns" = callPackage @@ -17352,6 +17909,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Notification Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sqs" = callPackage @@ -17364,6 +17922,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-storagegateway" = callPackage @@ -17376,6 +17935,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Storage Gateway SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sts" = callPackage @@ -17388,6 +17948,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Security Token Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-support" = callPackage @@ -17400,6 +17961,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Support SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-swf" = callPackage @@ -17412,6 +17974,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Workflow Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ampersand" = callPackage @@ -17460,6 +18023,7 @@ self: { homepage = "https://github.com/hreinhardt/amqp"; description = "Client library for AMQP servers (currently only RabbitMQ)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amrun" = callPackage @@ -17473,6 +18037,7 @@ self: { buildDepends = [ base deepseq parsec ]; description = "Interpreter for AM"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "analyze-client" = callPackage @@ -17542,6 +18107,7 @@ self: { homepage = "https://john-millikin.com/software/anansi/"; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anatomy" = callPackage @@ -17563,6 +18129,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "Anatomy: Atomo documentation system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "angel" = callPackage @@ -17684,6 +18251,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "A web interface to Antisplice dungeons"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antfarm" = callPackage @@ -17706,6 +18274,7 @@ self: { homepage = "http://hub.darcs.net/kowey/antfarm"; description = "Referring expressions for definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anticiv" = callPackage @@ -17757,6 +18326,7 @@ self: { buildDepends = [ base containers QuickCheck ]; description = "Define the language containment (=subtyping) relation on regulare expressions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antiquoter" = callPackage @@ -17805,6 +18375,7 @@ self: { homepage = "https://github.com/markwright/antlrc"; description = "Haskell binding to the ANTLR parser generator C runtime library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { antlr3c = null;}; "anydbm" = callPackage @@ -17819,6 +18390,7 @@ self: { homepage = "http://software.complete.org/anydbm"; description = "Interface for DBM-like database systems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aosd" = callPackage @@ -17839,6 +18411,7 @@ self: { pkgconfigDepends = [ libaosd ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { libaosd = null;}; "ap-reflect" = callPackage @@ -17893,6 +18466,7 @@ self: { homepage = "http://ojeling.net/apelsin"; description = "Server and community browser for the game Tremulous"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "api-builder" = callPackage @@ -18056,6 +18630,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "helics support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary-logger" = callPackage @@ -18192,6 +18767,7 @@ self: { homepage = "https://github.com/fabianbergmark/APIs"; description = "A Template Haskell library for generating type safe API calls"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apotiki" = callPackage @@ -18217,6 +18793,7 @@ self: { homepage = "https://github.com/pyr/apotiki"; description = "a faster debian repository"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "app-settings" = callPackage @@ -18332,6 +18909,7 @@ self: { homepage = "http://github.com/danieldk/approx-rand-test"; description = "Approximate randomization test"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "approximate" = callPackage @@ -18407,6 +18985,7 @@ self: { homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arbb-vm" = callPackage @@ -18424,6 +19003,7 @@ self: { homepage = "https://github.com/svenssonjoel/arbb-vm/wiki"; description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { arbb_dev = null;}; "arbtt" = callPackage @@ -18493,6 +19073,7 @@ self: { ]; description = "Archive supplied URLs in WebCite & Internet Archive"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux" = callPackage @@ -18507,6 +19088,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Support for working with Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux-web" = callPackage @@ -18528,6 +19110,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/archlinux"; description = "Website maintenance for Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archnews" = callPackage @@ -18572,6 +19155,7 @@ self: { testDepends = [ base containers HTF HUnit ]; description = "Command line parsing framework for console applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arguedit" = callPackage @@ -18590,6 +19174,7 @@ self: { jailbreak = true; description = "A computer assisted argumentation transcription and editing software"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ariadne" = callPackage @@ -18618,6 +19203,7 @@ self: { homepage = "https://github.com/feuerbach/ariadne"; description = "Go-to-definition for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arith-encode" = callPackage @@ -18639,6 +19225,7 @@ self: { homepage = "https://github.com/emc2/arith-encode"; description = "A practical arithmetic encoding (aka Godel numbering) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arithmatic" = callPackage @@ -18682,6 +19269,7 @@ self: { buildDepends = [ base GLUT mtl OpenGL stm ]; description = "Space-based real time strategy game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "array_0_5_0_0" = callPackage @@ -18791,6 +19379,7 @@ self: { homepage = "http://www.haskell.org/arrows/"; description = "preprocessor translating arrow notation into Haskell 98"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrows" = callPackage @@ -18907,6 +19496,7 @@ self: { jailbreak = true; description = "Conduit for encoding ByteString into Ascii85"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asic" = callPackage @@ -18921,6 +19511,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Compiler"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asil" = callPackage @@ -18940,6 +19531,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asn1-data" = callPackage @@ -19087,6 +19679,7 @@ self: { extraLibraries = [ assimp ]; description = "The Assimp asset import library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) assimp;}; "astar" = callPackage @@ -19117,6 +19710,7 @@ self: { jailbreak = true; description = "an incomplete 2d space game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview" = callPackage @@ -19136,6 +19730,7 @@ self: { ]; description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; license = "BSD4"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview-utils" = callPackage @@ -19179,6 +19774,7 @@ self: { homepage = "http://github.com/jfischoff/async-extras"; description = "Extra Utilities for the Async Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "async-manager" = callPackage @@ -19213,6 +19809,7 @@ self: { ]; description = "A modified version of async that supports worker groups and many-to-many task dependencies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asynchronous-exceptions" = callPackage @@ -19287,6 +19884,7 @@ self: { homepage = "https://bitbucket.org/ajknoll/atlassian-connect-core"; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atlassian-connect-descriptor" = callPackage @@ -19309,6 +19907,7 @@ self: { jailbreak = true; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atmos" = callPackage @@ -19368,6 +19967,7 @@ self: { homepage = "https://github.com/eightyeight/atom-msp430"; description = "Convenience functions for using Atom with the MSP430 microcontroller family"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-primops" = callPackage @@ -19421,6 +20021,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "A highly dynamic, extremely simple, very fun programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attempt" = callPackage @@ -19563,6 +20164,7 @@ self: { homepage = "http://github.com/gregorycollins"; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-parsec" = callPackage @@ -19592,6 +20194,7 @@ self: { homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-text-enumerator" = callPackage @@ -19604,6 +20207,7 @@ self: { jailbreak = true; description = "(deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attosplit" = callPackage @@ -19631,6 +20235,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Embedded Turtle language compiler in Haskell, with Epic output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "augeas" = callPackage @@ -19648,6 +20253,7 @@ self: { homepage = "http://trac.haskell.org/augeas"; description = "A Haskell FFI wrapper for the Augeas API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) augeas;}; "augur" = callPackage @@ -19667,6 +20273,7 @@ self: { jailbreak = true; description = "Renaming media collections in a breeze"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aur" = callPackage @@ -19781,6 +20388,7 @@ self: { homepage = "http://github.com/nushio3/authoring"; description = "A library for writing papers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "auto-update" = callPackage @@ -19811,6 +20419,7 @@ self: { ]; description = "Library for Nix expression dependency generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "autonix-deps-kf5" = callPackage @@ -19829,6 +20438,7 @@ self: { ]; description = "Generate dependencies for KDE 5 Nix expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "autoproc" = callPackage @@ -19911,6 +20521,7 @@ self: { ]; description = "High-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-glut" = callPackage @@ -19922,6 +20533,7 @@ self: { buildDepends = [ awesomium awesomium-raw base GLUT ]; description = "Utilities for using Awesomium with GLUT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-raw" = callPackage @@ -19935,6 +20547,7 @@ self: { extraLibraries = [ awesomium ]; description = "Low-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { awesomium = null;}; "aws" = callPackage @@ -19988,6 +20601,7 @@ self: { homepage = "http://github.com/iconnect/aws-cloudfront-signer"; description = "For signing AWS CloudFront HTTP URL requests"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-dynamodb-streams" = callPackage @@ -20059,6 +20673,7 @@ self: { homepage = "http://github.com/iconnect/aws-elastic-transcoder"; description = "Haskell suite for the Elastic Transcoder service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-general" = callPackage @@ -20164,6 +20779,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis-reshard"; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-lambda" = callPackage @@ -20207,6 +20823,7 @@ self: { homepage = "http://github.com/alephcloud/hs-aws-performance-tests"; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-route53" = callPackage @@ -20253,6 +20870,7 @@ self: { homepage = "http://worksap-ate.github.com/aws-sdk"; description = "AWS SDK for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sdk-text-converter" = callPackage @@ -20321,6 +20939,7 @@ self: { homepage = "http://github.com/iconnect/aws-sign4"; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sns" = callPackage @@ -20345,6 +20964,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-sns"; description = "Bindings for AWS SNS Version 2013-03-31"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-acs" = callPackage @@ -20383,6 +21003,7 @@ self: { homepage = "github.com/haskell-distributed/azure-service-api"; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-servicebus" = callPackage @@ -20458,6 +21079,7 @@ self: { buildDepends = [ array base containers random wx wxcore ]; description = "An implementation of a simple 2-player board game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "backdropper" = callPackage @@ -20476,6 +21098,7 @@ self: { jailbreak = true; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "backtracking-exceptions" = callPackage @@ -20494,6 +21117,7 @@ self: { homepage = "https://github.com/tapuu/backtracking-exceptions"; description = "A monad transformer for backtracking exceptions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "backward-state" = callPackage @@ -20571,6 +21195,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo/tree/master"; description = "A blog engine on Hack"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-launcher" = callPackage @@ -20591,6 +21216,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-launcher"; description = "bamboo-launcher"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-highlight" = callPackage @@ -20608,6 +21234,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-plugin-highlight/"; description = "A highlight middleware"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-photo" = callPackage @@ -20626,6 +21253,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "A photo album middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-blueprint" = callPackage @@ -20644,6 +21272,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-blueprint"; description = "bamboo blueprint theme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-mini-html5" = callPackage @@ -20666,6 +21295,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-mini-html5"; description = "bamboo mini html5 theme"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamse" = callPackage @@ -20684,6 +21314,7 @@ self: { ]; description = "A Windows Installer (MSI) generator framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamstats" = callPackage @@ -20726,6 +21357,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-barchart"; description = "Creating Bar Charts in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barcodes-code128" = callPackage @@ -20769,6 +21401,7 @@ self: { jailbreak = true; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrie" = callPackage @@ -20781,6 +21414,7 @@ self: { homepage = "http://thewhitelion.org/haskell/barrie"; description = "Declarative Gtk GUI library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrier-monad" = callPackage @@ -20793,6 +21427,7 @@ self: { jailbreak = true; description = "Implementation of barrier monad, can use custom front/back type"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base_4_7_0_2" = callPackage @@ -21009,6 +21644,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "An interpreter for a small functional language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "battlenet" = callPackage @@ -21062,6 +21698,7 @@ self: { homepage = "https://github.com/zrho/afp"; description = "A web-based implementation of battleships including an AI opponent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bayes-stack" = callPackage @@ -21082,6 +21719,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "Framework for inferring generative probabilistic models with Gibbs sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bbdb" = callPackage @@ -21169,6 +21807,7 @@ self: { jailbreak = true; description = "Generic serializer/deserializer with compact representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "beautifHOL" = callPackage @@ -21183,6 +21822,7 @@ self: { homepage = "http://www.cs.indiana.edu/~lepike/pub_pages/holpp.html"; description = "A pretty-printer for higher-order logic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bed-and-breakfast" = callPackage @@ -21198,6 +21838,7 @@ self: { homepage = "https://hackage.haskell.org/package/bed-and-breakfast"; description = "Efficient Matrix operations in 100% Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bein" = callPackage @@ -21220,6 +21861,7 @@ self: { ]; description = "Bein is a provenance and workflow management system for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "benchmark-function" = callPackage @@ -21287,6 +21929,7 @@ self: { extraLibraries = [ db ]; description = "Pretty BerkeleyDB v4 binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) db;}; "berp" = callPackage @@ -21310,6 +21953,7 @@ self: { homepage = "http://wiki.github.com/bjpop/berp/"; description = "An implementation of Python 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bert" = callPackage @@ -21426,6 +22070,7 @@ self: { jailbreak = true; description = "Bidirectionalization for Free! (POPL'09)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bff-mono" = callPackage @@ -21483,6 +22128,7 @@ self: { homepage = "http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/desc.html"; description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec" = callPackage @@ -21538,6 +22184,7 @@ self: { homepage = "http://ddmal.music.mcgill.ca/billboard"; description = "A parser for the Billboard chord dataset"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-forms" = callPackage @@ -21557,6 +22204,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main" = callPackage @@ -21577,6 +22225,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah plugin base"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main-static" = callPackage @@ -21620,6 +22269,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-services" = callPackage @@ -21637,6 +22287,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bimap" = callPackage @@ -21727,6 +22378,7 @@ self: { jailbreak = true; description = "Automatic deriving of Binary using GHC.Generics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-file" = callPackage @@ -21743,6 +22395,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/binary-file"; description = "read/write binary file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-generic" = callPackage @@ -21823,6 +22476,7 @@ self: { homepage = "http://github.com/NicolasT/binary-protocol-zmq"; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-search" = callPackage @@ -21900,6 +22554,7 @@ self: { homepage = "http://github.com/jonpetterbergman/binary-streams"; description = "data serialization/deserialization io-streams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-strict" = callPackage @@ -21959,6 +22614,7 @@ self: { homepage = "https://github.com/coreyoconnor/bind-marshal"; description = "Data marshaling library that uses type level equations to optimize buffering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-core" = callPackage @@ -21985,6 +22641,7 @@ self: { homepage = "http://code.accursoft.com/binding"; description = "Data Binding in Gtk2Hs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-wx" = callPackage @@ -21998,6 +22655,7 @@ self: { homepage = "http://code.accursoft.com/binding"; description = "Data Binding in WxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings" = callPackage @@ -22034,6 +22692,7 @@ self: { homepage = "http://cielonegro.org/Bindings-EsounD.html"; description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) { esound = null;}; "bindings-GLFW" = callPackage @@ -22068,6 +22727,7 @@ self: { homepage = "https://github.com/jputcu/bindings-K8055"; description = "Bindings to Velleman K8055 dll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { K8055D = null;}; "bindings-apr" = callPackage @@ -22082,6 +22742,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime (APR)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) { apr-1 = null;}; "bindings-apr-util" = callPackage @@ -22096,6 +22757,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) { apr-util-1 = null;}; "bindings-audiofile" = callPackage @@ -22126,6 +22788,7 @@ self: { homepage = "http://projects.haskell.org/bindings-bfd/"; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { bfd = null; opcodes = null;}; "bindings-cctools" = callPackage @@ -22139,6 +22802,7 @@ self: { homepage = "http://bitbucket.org/badi/bindings-cctools"; description = "Bindings to the CCTools WorkQueue C library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) { dttools = null;}; "bindings-codec2" = callPackage @@ -22157,6 +22821,7 @@ self: { homepage = "https://github.com/relrod/bindings-codec2"; description = "Very low-level FFI bindings for Codec2"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) { codec2 = null;}; "bindings-common" = callPackage @@ -22168,6 +22833,7 @@ self: { buildDepends = [ base ]; description = "This package is obsolete. Look for bindings-DSL instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-dc1394" = callPackage @@ -22182,6 +22848,7 @@ self: { homepage = "http://github.com/aleator/bindings-dc1394"; description = "Library for using firewire (iidc-1394) cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { dc1394 = null;}; "bindings-directfb" = callPackage @@ -22209,6 +22876,7 @@ self: { homepage = "http://github.com/a1kmm/bindings-eskit"; description = "Bindings to ESKit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { eskit = null;}; "bindings-fann" = callPackage @@ -22221,6 +22889,7 @@ self: { pkgconfigDepends = [ fann ]; description = "Low level bindings to FANN neural network library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { fann = null;}; "bindings-friso" = callPackage @@ -22233,6 +22902,7 @@ self: { extraLibraries = [ friso ]; description = "Low level bindings for friso"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) { friso = null;}; "bindings-glib" = callPackage @@ -22294,6 +22964,7 @@ self: { pkgconfigDepends = [ gts ]; description = "Low level bindings supporting GTS, the GNU Triangulated Surface Library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) gts;}; "bindings-hamlib" = callPackage @@ -22321,6 +22992,7 @@ self: { buildDepends = [ base bindings-DSL ]; description = "Project bindings-* raw interface to HDF5 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-levmar" = callPackage @@ -22334,6 +23006,7 @@ self: { homepage = "https://github.com/basvandijk/bindings-levmar"; description = "Low level bindings to the C levmar (Levenberg-Marquardt) library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) blas; lapack = null;}; "bindings-libcddb" = callPackage @@ -22371,6 +23044,7 @@ self: { pkgconfigDepends = [ libftdi libusb ]; description = "Low level bindings to libftdi"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libftdi; inherit (pkgs) libusb;}; "bindings-librrd" = callPackage @@ -22384,6 +23058,7 @@ self: { homepage = "http://cielonegro.org/Bindings-librrd.html"; description = "Low level bindings to RRDtool"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) { librrd = null;}; "bindings-libstemmer" = callPackage @@ -22398,6 +23073,7 @@ self: { extraLibraries = [ stemmer ]; description = "Binding for libstemmer with low level binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { stemmer = null;}; "bindings-libusb" = callPackage @@ -22424,6 +23100,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to libv4l2 for Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { v4l2 = null;}; "bindings-libzip" = callPackage @@ -22449,6 +23126,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-lxc" = callPackage @@ -22486,6 +23164,7 @@ self: { homepage = "http://www.github.com/massysett/bindings-mpdecimal"; description = "bindings to mpdecimal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-nettle" = callPackage @@ -22593,6 +23272,7 @@ self: { homepage = "https://github.com/kaoskorobase/bindings-sc3/"; description = "Low-level bindings to the SuperCollider synthesis engine library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { scsynth = null;}; "bindings-sipc" = callPackage @@ -22608,6 +23288,7 @@ self: { homepage = "https://github.com/justinethier/hs-bindings-sipc"; description = "Low level bindings to SIPC"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { sipc = null;}; "bindings-sophia" = callPackage @@ -22797,6 +23478,7 @@ self: { homepage = "https://github.com/dfornika/biophd/wiki"; description = "Library for reading phd sequence files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biopsl" = callPackage @@ -22856,6 +23538,7 @@ self: { jailbreak = true; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bird" = callPackage @@ -22876,6 +23559,7 @@ self: { homepage = "http://github.com/moonmaster9000/bird"; description = "A simple, sinatra-inspired web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bit-array" = callPackage @@ -22891,6 +23575,7 @@ self: { homepage = "https://github.com/nikita-volkov/bit-array"; description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bit-vector" = callPackage @@ -22909,6 +23594,7 @@ self: { homepage = "https://github.com/acfoltzer/bit-vector"; description = "Simple bit vectors for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitarray" = callPackage @@ -22945,6 +23631,7 @@ self: { jailbreak = true; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitly-cli" = callPackage @@ -22960,6 +23647,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A command line tool to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitmap" = callPackage @@ -23042,6 +23730,7 @@ self: { jailbreak = true; description = "Bitstream support for Conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bits-extras" = callPackage @@ -23072,6 +23761,7 @@ self: { jailbreak = true; description = "A space-efficient set data structure"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) gmp;}; "bitspeak" = callPackage @@ -23091,6 +23781,7 @@ self: { jailbreak = true; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk; inherit (pkgs.gnome) pango;}; "bitstream" = callPackage @@ -23154,6 +23845,7 @@ self: { homepage = "https://github.com/cobit/bittorrent"; description = "Bittorrent protocol implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitvec" = callPackage @@ -23219,6 +23911,7 @@ self: { homepage = "https://github.com/ingesson/bkr"; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bktrees" = callPackage @@ -23244,6 +23937,7 @@ self: { homepage = "http://github.com/nfjinjing/bla"; description = "a stupid cron"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "black-jewel" = callPackage @@ -23265,6 +23959,7 @@ self: { homepage = "http://git.kaction.name/black-jewel"; description = "The pirate bay client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blacktip" = callPackage @@ -23284,6 +23979,7 @@ self: { homepage = "https://github.com/bitemyapp/blacktip"; description = "Decentralized, k-ordered unique ID generator"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blakesum" = callPackage @@ -23297,6 +23993,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blakesum-demo" = callPackage @@ -23314,6 +24011,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blank-canvas" = callPackage @@ -23346,6 +24044,7 @@ self: { homepage = "http://github.com/patperry/blas"; description = "Bindings to the BLAS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blas-hs" = callPackage @@ -23360,6 +24059,7 @@ self: { homepage = "https://github.com/Rufflewind/blas-hs"; description = "Low-level Haskell bindings to Blas"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) blas;}; "blastxml" = callPackage @@ -23382,6 +24082,7 @@ self: { sha256 = "01n6cw3fjmlj5pmdy122ch4kbf6srvwlz356rr6nxfrm0ndcxp38"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-bootstrap" = callPackage @@ -23484,6 +24185,7 @@ self: { homepage = "https://github.com/egonSchiele/blaze-html-contrib"; description = "Some contributions to add handy things to blaze html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-hexpat" = callPackage @@ -23497,6 +24199,7 @@ self: { homepage = "https://github.com/jaspervdj/blaze-html-hexpat"; description = "A hexpat backend for blaze-html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-truncate" = callPackage @@ -23584,6 +24287,7 @@ self: { homepage = "http://github.com/mailrank/blaze-textual"; description = "Fast rendering of common datatypes (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blazeMarker" = callPackage @@ -23675,6 +24379,7 @@ self: { ]; description = "Very simple static blog software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloodhound" = callPackage @@ -23753,6 +24458,7 @@ self: { homepage = "http://www.bluetile.org/"; description = "full-featured tiling for the GNOME desktop environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk;}; "bluetileutils" = callPackage @@ -23767,6 +24473,7 @@ self: { jailbreak = true; description = "Utilities for Bluetile"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bmp" = callPackage @@ -23802,6 +24509,7 @@ self: { homepage = "http://code.haskell.org/~thielema/games/"; description = "Three games for inclusion in a web server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bogre-banana" = callPackage @@ -23818,6 +24526,7 @@ self: { base hogre hois monad-control random reactive-banana ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bool-extras" = callPackage @@ -23858,6 +24567,7 @@ self: { ]; description = "Boolean normal form: NNF, DNF & CNF"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boolexpr" = callPackage @@ -23879,6 +24589,7 @@ self: { sha256 = "0057303m23p81v60jcsc3p7n2rs2rzrvbg5m18pc0fk95q2q2rim"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boolsimplifier" = callPackage @@ -23938,6 +24649,7 @@ self: { jailbreak = true; description = "Boomshine clone"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bot" = callPackage @@ -23950,6 +24662,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Bot"; description = "bots for functional reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "botpp" = callPackage @@ -24089,6 +24802,7 @@ self: { homepage = "http://github.com/Peaker/breakout/tree/master"; description = "A simple Breakout game implementation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "brians-brain" = callPackage @@ -24103,6 +24817,7 @@ self: { homepage = "http://github.com/willdonnelly/brians-brain"; description = "A Haskell implementation of the Brian's Brain cellular automaton"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "brillig" = callPackage @@ -24144,6 +24859,7 @@ self: { buildDepends = [ base ]; description = "Access to the BSD sysctl(3) interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson" = callPackage @@ -24190,6 +24906,7 @@ self: { jailbreak = true; description = "Generics functionality for BSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson-mapping" = callPackage @@ -24205,6 +24922,7 @@ self: { ]; description = "Mapping between BSON and algebraic data types"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bspack" = callPackage @@ -24257,6 +24975,7 @@ self: { homepage = "https://github.com/brinchj/btree-concurrent"; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "btrfs" = callPackage @@ -24338,6 +25057,7 @@ self: { homepage = "http://code.ouroborus.net/buildbox"; description = "Tools for working with buildbox benchmark result files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buildwrapper" = callPackage @@ -24384,6 +25104,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bullet"; description = "A wrapper for the Bullet physics engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) bullet;}; "bumper" = callPackage @@ -24450,6 +25171,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-gtk" = callPackage @@ -24467,6 +25189,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-network" = callPackage @@ -24484,6 +25207,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bustle" = callPackage @@ -24510,6 +25234,7 @@ self: { pkgconfigDepends = [ glib ]; description = "Draw pretty sequence diagrams of D-Bus traffic"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) glib;}; "bv" = callPackage @@ -24535,6 +25260,7 @@ self: { buildDepends = [ base bytestring word24 ]; description = "data from/to ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "byteable" = callPackage @@ -24627,6 +25353,7 @@ self: { homepage = "https://github.com/tsuraan/bytestring-arbitrary"; description = "Arbitrary instances for ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-builder" = callPackage @@ -24638,6 +25365,7 @@ self: { buildDepends = [ base bytestring deepseq ]; description = "The new bytestring builder, packaged outside of GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-class" = callPackage @@ -24651,6 +25379,7 @@ self: { jailbreak = true; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-conversion" = callPackage @@ -24682,6 +25411,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/bytestring-csv"; description = "Parse CSV formatted data efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-delta" = callPackage @@ -24805,6 +25535,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "Rematch support for ByteString"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-show" = callPackage @@ -24844,6 +25575,7 @@ self: { buildDepends = [ base bytestring containers ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestringparser-temporary" = callPackage @@ -24924,6 +25656,7 @@ self: { buildDepends = [ base ]; description = "C IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "c-storable-deriving" = callPackage @@ -24949,6 +25682,7 @@ self: { buildDepends = [ base c0parser ]; description = "Simple C0 Syntax Check"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "c0parser" = callPackage @@ -24960,6 +25694,7 @@ self: { buildDepends = [ base parsec ]; description = "Simple C0 Parser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "c10k" = callPackage @@ -25113,6 +25848,7 @@ self: { homepage = "https://github.com/benarmston/cabal-constraints"; description = "Repeatable builds for cabalized Haskell projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-db" = callPackage @@ -25195,6 +25931,7 @@ self: { homepage = "http://github.com/creswick/cabal-dev"; description = "Manage sandboxed Haskell build environments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-dir" = callPackage @@ -25254,6 +25991,7 @@ self: { homepage = "https://john-millikin.com/software/cabal-graphdeps/"; description = "Generate graphs of install-time Cabal dependencies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-install" = callPackage @@ -25328,6 +26066,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-install-ghc74" = callPackage @@ -25349,6 +26088,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.4"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-lenses" = callPackage @@ -25446,6 +26186,7 @@ self: { homepage = "http://github.com/explicitcall/cabal-query"; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-rpm" = callPackage @@ -25475,6 +26216,7 @@ self: { buildDepends = [ base ]; description = "Shell scripts for support of Cabal maintenance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-setup" = callPackage @@ -25489,6 +26231,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The user interface for building and installing Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-sign" = callPackage @@ -25563,6 +26306,7 @@ self: { buildDepends = [ base Cabal filepath ghc pqc QuickCheck ]; description = "Automated test tool for cabal projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-test-compat" = callPackage @@ -25616,6 +26360,7 @@ self: { jailbreak = true; description = "Command-line tool for uploading packages to Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2arch" = callPackage @@ -25635,6 +26380,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Create Arch Linux packages from Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2doap" = callPackage @@ -25650,6 +26396,7 @@ self: { homepage = "http://gregheartsfield.com/cabal2doap/"; description = "Cabal to Description-of-a-Project (DOAP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2ebuild" = callPackage @@ -25722,6 +26469,7 @@ self: { homepage = "https://fedorahosted.org/cabal2spec/"; description = "Generates RPM Spec files from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalg" = callPackage @@ -25754,6 +26502,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cabalgraph"; description = "Generate pretty graphs of module trees from cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalmdvrpm" = callPackage @@ -25768,6 +26517,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-cabalmdvrpm;a=shortlog;topi=0"; description = "Create mandriva rpm from cabal package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalrpmdeps" = callPackage @@ -25782,6 +26532,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-CabalRpmDeps;a=summary"; description = "Autogenerate rpm dependencies from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalvchk" = callPackage @@ -25869,6 +26620,7 @@ self: { buildDepends = [ base cairo glib gtk ]; description = "A template for building new GUI applications using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cake" = callPackage @@ -25940,6 +26692,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Haskell binding to the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { cal3d = null;}; "cal3d-examples" = callPackage @@ -25954,6 +26707,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Examples for the Cal3d animation library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cal3d-opengl" = callPackage @@ -25966,6 +26720,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "OpenGL rendering for the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calc" = callPackage @@ -25979,6 +26734,7 @@ self: { buildDepends = [ array base harpy haskell98 mtl ]; description = "A small compiler for arithmetic expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calculator" = callPackage @@ -25995,6 +26751,7 @@ self: { homepage = "https://github.com/sumitsahrawat/calculator"; description = "A calculator that operates on string inputs"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caldims" = callPackage @@ -26012,6 +26769,7 @@ self: { ]; description = "Calculation tool and library supporting units"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caledon" = callPackage @@ -26031,6 +26789,7 @@ self: { homepage = "https://github.com/mmirman/caledon"; description = "a logic programming language based on the calculus of constructions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call" = callPackage @@ -26092,6 +26851,7 @@ self: { homepage = "http://github.com/michaelxavier/Campfire"; description = "Haskell implementation of the Campfire API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "canonical-filepath" = callPackage @@ -26128,6 +26888,7 @@ self: { homepage = "https://github.com/klangner/cantor"; description = "Application for analysis of java source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cao" = callPackage @@ -26149,6 +26910,7 @@ self: { homepage = "http://haslab.uminho.pt/mbb/software/cao-domain-specific-language-cryptography"; description = "CAO Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cap" = callPackage @@ -26162,6 +26924,7 @@ self: { buildDepends = [ array base containers haskell98 ]; description = "Interprets and debug the cap language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "capped-list" = callPackage @@ -26212,6 +26975,7 @@ self: { homepage = "https://github.com/Noeda/caramia/"; description = "High-level OpenGL bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carboncopy" = callPackage @@ -26230,6 +26994,7 @@ self: { homepage = "http://github.com/jdevelop/carboncopy"; description = "Drop emails from threads being watched into special CC folder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carettah" = callPackage @@ -26249,6 +27014,7 @@ self: { homepage = "http://carettah.masterq.net/"; description = "A presentation tool written with Haskell"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carray" = callPackage @@ -26290,6 +27056,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "mid-level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "casadi-bindings-control" = callPackage @@ -26306,6 +27073,7 @@ self: { pkgconfigDepends = [ casadi_control ]; description = "low level bindings to casadi-control"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { casadi_control = null;}; "casadi-bindings-core" = callPackage @@ -26320,6 +27088,7 @@ self: { pkgconfigDepends = [ casadi_core ]; description = "low level bindings to casadi-core"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { casadi_core = null;}; "casadi-bindings-internal" = callPackage @@ -26333,6 +27102,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "low level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { casadi_core = null;}; "casadi-bindings-ipopt-interface" = callPackage @@ -26349,6 +27119,7 @@ self: { pkgconfigDepends = [ casadi_ipopt_interface ]; description = "low level bindings to casadi-ipopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { casadi_ipopt_interface = null;}; "casadi-bindings-snopt-interface" = callPackage @@ -26365,6 +27136,7 @@ self: { pkgconfigDepends = [ casadi_snopt_interface ]; description = "low level bindings to casadi-snopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { casadi_snopt_interface = null;}; "cascading" = callPackage @@ -26382,6 +27154,7 @@ self: { jailbreak = true; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "case-conversion" = callPackage @@ -26445,6 +27218,7 @@ self: { homepage = "http://www.cs.st-andrews.ac.uk/~hwloidl/SCIEnce/SymGrid-Par/CASH/"; description = "the Computer Algebra SHell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassandra-cql" = callPackage @@ -26474,6 +27248,7 @@ self: { homepage = "http://cassandra.apache.org/"; description = "thrift bindings to the cassandra database"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassava" = callPackage @@ -26578,6 +27353,7 @@ self: { homepage = "http://github.com/ozataman/cassy"; description = "A high level driver for the Cassandra datastore"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "castle" = callPackage @@ -26604,6 +27380,7 @@ self: { homepage = "https://github.com/erochest/castle"; description = "A tool to manage shared cabal-install sandboxes"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "casui" = callPackage @@ -26618,6 +27395,7 @@ self: { homepage = "http://code.atnnn.com/projects/casui"; description = "Equation Manipulator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "catch-fd" = callPackage @@ -26630,6 +27408,7 @@ self: { homepage = "http://github.com/sonyandy/catch-fd"; description = "MonadThrow and MonadCatch, using functional dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categorical-algebra" = callPackage @@ -26641,6 +27420,7 @@ self: { buildDepends = [ base newtype pointless-haskell void ]; description = "Categorical Monoids and Semirings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categories" = callPackage @@ -26680,6 +27460,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "A meta-package documenting various packages inspired by category theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cautious-file" = callPackage @@ -26750,6 +27531,7 @@ self: { extraLibraries = [ cci ]; description = "Bindings for the CCI networking library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { cci = null;}; "ccnx" = callPackage @@ -26780,6 +27562,7 @@ self: { homepage = "http://bitbucket.org/badi/hs-cctools-workqueue"; description = "High-level interface to CCTools' WorkQueue library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) { dttools = null;}; "cedict" = callPackage @@ -26798,6 +27581,7 @@ self: { jailbreak = true; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cellrenderer-cairo" = callPackage @@ -26812,6 +27596,7 @@ self: { jailbreak = true; description = "Cairo-based CellRenderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk;}; "cereal" = callPackage @@ -26865,6 +27650,7 @@ self: { buildDepends = [ base bytestring cereal enumerator ]; description = "Deserialize things with cereal and enumerator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-ieee754" = callPackage @@ -26878,6 +27664,7 @@ self: { homepage = "http://github.com/jystic/cereal-ieee754"; description = "Floating point support for the 'cereal' serialization library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-plus" = callPackage @@ -26902,6 +27689,7 @@ self: { homepage = "https://github.com/nikita-volkov/cereal-plus"; description = "An extended serialization library on top of \"cereal\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-text" = callPackage @@ -26997,6 +27785,7 @@ self: { homepage = "http://www-ps.informatik.uni-kiel.de/~sebf/projects/cflp.html"; description = "Constraint Functional-Logic Programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cfopu" = callPackage @@ -27014,6 +27803,7 @@ self: { ]; description = "cfopu processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgen" = callPackage @@ -27033,6 +27823,7 @@ self: { homepage = "http://anttisalonen.github.com/cgen"; description = "generates Haskell bindings and C wrappers for C++ libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgi" = callPackage @@ -27052,6 +27843,7 @@ self: { homepage = "https://github.com/cheecheeo/haskell-cgi"; description = "A library for writing CGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgi-undecidable" = callPackage @@ -27063,6 +27855,7 @@ self: { buildDepends = [ base cgi mtl ]; description = "Undecidable instances for the cgi package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgi-utils" = callPackage @@ -27076,6 +27869,7 @@ self: { homepage = "http://github.com/chrisdone/haskell-cgi-utils"; description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgrep" = callPackage @@ -27130,6 +27924,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard"; description = "Combinators for building and processing 2D images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalkboard-viewer" = callPackage @@ -27143,6 +27938,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/chalkboard.php"; description = "OpenGL based viewer for chalkboard rendered images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalmers-lava2000" = callPackage @@ -27201,6 +27997,7 @@ self: { homepage = "https://github.com/soostone/charade"; description = "Rapid prototyping websites with Snap and Heist"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "charset" = callPackage @@ -27313,6 +28110,7 @@ self: { homepage = "http://github.com/creswick/chatter"; description = "A library of simple NLP algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chatty" = callPackage @@ -27406,6 +28204,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Import_modules_properly"; description = "Check whether module and package imports conform to the PVP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checked" = callPackage @@ -27417,6 +28216,7 @@ self: { buildDepends = [ base ]; description = "Bounds-checking integer types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checkers" = callPackage @@ -27497,6 +28297,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "An implementation of concurrency ideas from Communicating Sequential Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-mtl" = callPackage @@ -27510,6 +28311,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "MTL class instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-plus" = callPackage @@ -27527,6 +28329,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-spec" = callPackage @@ -27542,6 +28345,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A mirror implementation of chp that generates a specification of the program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-transformers" = callPackage @@ -27555,6 +28359,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "Transformers instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chronograph" = callPackage @@ -27603,6 +28408,7 @@ self: { homepage = "http://github.com/marcotmarcot/chuchu"; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunked-data" = callPackage @@ -27633,6 +28439,7 @@ self: { homepage = "http://www.wellquite.org/chunks/"; description = "Simple template library with static safety"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunky" = callPackage @@ -27659,6 +28466,7 @@ self: { buildDepends = [ base ]; description = "Removed; please see fmlist"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cil" = callPackage @@ -27672,6 +28480,7 @@ self: { homepage = "http://tomahawkins.org"; description = "An interface to CIL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cinvoke" = callPackage @@ -27685,6 +28494,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/cinvoke"; description = "A binding to cinvoke"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { cinvoke = null;}; "cio" = callPackage @@ -27697,6 +28507,7 @@ self: { homepage = "https://github.com/nikita-volkov/cio"; description = "A monad for concurrent IO on a thread pool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cipher-aes" = callPackage @@ -27872,6 +28683,7 @@ self: { homepage = "https://github.com/nushio3/citation-resolve"; description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "citeproc-hs" = callPackage @@ -27891,6 +28703,7 @@ self: { homepage = "http://gorgias.mine.nu/repos/citeproc-hs/"; description = "A Citation Style Language implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cityhash" = callPackage @@ -27954,6 +28767,7 @@ self: { homepage = "http://clafer.org"; description = "clafer compiles Clafer models to other formats, such as Alloy, XML, HTML, Dot"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferIG" = callPackage @@ -27980,6 +28794,7 @@ self: { homepage = "https://github.com/gsdlab/claferIG"; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferwiki" = callPackage @@ -27999,6 +28814,7 @@ self: { homepage = "http://github.com/gsdlab/claferwiki"; description = "A wiki-based IDE for literate modeling with Clafer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clanki" = callPackage @@ -28033,6 +28849,7 @@ self: { homepage = "http://clash.ewi.utwente.nl/"; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-ghc" = callPackage @@ -28236,6 +29053,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "A secure, reliable content management system (CMS) and blogging platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) cryptopp; inherit (pkgs) openssl;}; "clckwrks-cli" = callPackage @@ -28254,6 +29072,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-dot-com" = callPackage @@ -28278,6 +29097,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "clckwrks.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-bugs" = callPackage @@ -28304,6 +29124,7 @@ self: { homepage = "http://clckwrks.com/"; description = "bug tracking plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-ircbot" = callPackage @@ -28328,6 +29149,7 @@ self: { homepage = "http://clckwrks.com/"; description = "ircbot plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-media" = callPackage @@ -28352,6 +29174,7 @@ self: { homepage = "http://clckwrks.com/"; description = "media plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-page" = callPackage @@ -28378,6 +29201,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "support for CMS/Blogging in clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-theme-bootstrap" = callPackage @@ -28392,6 +29216,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-theme-clckwrks" = callPackage @@ -28406,6 +29231,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-theme-geo-bootstrap" = callPackage @@ -28419,6 +29245,7 @@ self: { homepage = "http://divshot.github.com/geo-bootstrap/"; description = "geo bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cld2" = callPackage @@ -28506,6 +29333,7 @@ self: { jailbreak = true; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clientsession" = callPackage @@ -28557,6 +29385,7 @@ self: { homepage = "http://github.com/spacekitteh/haskell-clifford"; description = "A Clifford algebra library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippard" = callPackage @@ -28582,6 +29411,7 @@ self: { homepage = "https://github.com/chetant/clipper"; description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippings" = callPackage @@ -28604,6 +29434,7 @@ self: { ]; description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clock" = callPackage @@ -28634,6 +29465,7 @@ self: { homepage = "http://patch-tag.com/r/shahn/clocked/home"; description = "timer functionality to clock IO commands"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { QtCore = null;}; "clogparse" = callPackage @@ -28650,6 +29482,7 @@ self: { ]; description = "Parse IRC logs such as the #haskell logs on tunes.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clone-all" = callPackage @@ -28671,6 +29504,7 @@ self: { homepage = "https://github.com/silky/clone-all"; description = "Clone all github repositories from a given user"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "closure" = callPackage @@ -28708,6 +29542,7 @@ self: { homepage = "http://github.com/haskell-distributed/cloud-haskell"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cloudfront-signer" = callPackage @@ -28725,6 +29560,7 @@ self: { homepage = "http://github.com/cdornan/cloudfront-signer"; description = "CloudFront URL signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cloudyfs" = callPackage @@ -28745,6 +29581,7 @@ self: { homepage = "https://github.com/bhickey/cloudyfs"; description = "A cloud in the file system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cltw" = callPackage @@ -28777,6 +29614,7 @@ self: { homepage = "http://zwizwa.be/-/meta"; description = "C to Lua data wrapper generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cluss" = callPackage @@ -28789,6 +29627,7 @@ self: { homepage = "https://github.com/Kinokkory/cluss"; description = "simple alternative to type classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clustertools" = callPackage @@ -28807,6 +29646,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Tools for manipulating sequence clusters"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clutterhs" = callPackage @@ -28822,6 +29662,7 @@ self: { pkgconfigDepends = [ clutter glib pango ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) clutter; inherit (pkgs) glib; inherit (pkgs.gnome) pango;}; @@ -28851,6 +29692,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cmath"; description = "A binding to the standard C math library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmathml3" = callPackage @@ -28869,6 +29711,7 @@ self: { ]; description = "Data model, parser, serialiser and transformations for Content MathML 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmdargs" = callPackage @@ -28907,6 +29750,7 @@ self: { homepage = "http://community.haskell.org/~ndm/cmdargs/"; description = "Helper to enter cmdargs command lines using a web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmdlib" = callPackage @@ -28942,6 +29786,7 @@ self: { homepage = "http://github.com/eli-frey/cmdtheline"; description = "Declarative command-line option parsing and documentation library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cml" = callPackage @@ -28965,6 +29810,7 @@ self: { buildDepends = [ array base ]; description = "A library for C-like programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmu" = callPackage @@ -28999,6 +29845,7 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Compiler/Translator for CnC Specification Files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cndict" = callPackage @@ -29044,6 +29891,7 @@ self: { ]; description = "Cross-platform structure serialisation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codec-mbox" = callPackage @@ -29075,6 +29923,7 @@ self: { homepage = "https://github.com/guillaume-nargeot/codecov-haskell"; description = "Codecov.io support for Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codemonitor" = callPackage @@ -29094,6 +29943,7 @@ self: { homepage = "http://github.com/rickardlindberg/codemonitor"; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codepad" = callPackage @@ -29108,6 +29958,7 @@ self: { homepage = "http://github.com/chrisdone/codepad"; description = "Submit and retrieve paste output from CodePad.org."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codex" = callPackage @@ -29180,6 +30031,7 @@ self: { homepage = "https://github.com/Cognimeta/cognimeta-utils"; description = "Utilities for Cognimeta products (such as perdure). API may change often."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colada" = callPackage @@ -29201,6 +30053,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Colada implements incremental word class class induction using online LDA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colchis" = callPackage @@ -29219,6 +30072,7 @@ self: { jailbreak = true; description = "Rudimentary JSON-RPC 2.0 client over raw TCP."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collada-output" = callPackage @@ -29237,6 +30091,7 @@ self: { jailbreak = true; description = "Generate animated 3d objects in COLLADA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collada-types" = callPackage @@ -29253,6 +30108,7 @@ self: { jailbreak = true; description = "Data exchange between graphic applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collapse-util" = callPackage @@ -29279,6 +30135,7 @@ self: { jailbreak = true; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collections-api" = callPackage @@ -29374,6 +30231,7 @@ self: { homepage = "https://github.com/wellecks/coltrane"; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "com" = callPackage @@ -29384,6 +30242,7 @@ self: { sha256 = "1y6zm63jyigf631f2b0bqw1yhmr6hifaspqivy7qy30brmr5a27m"; description = "Haskell COM support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat" = callPackage @@ -29527,6 +30386,7 @@ self: { ]; description = "Library for working with commoditized amounts and price histories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commsec" = callPackage @@ -29597,6 +30457,7 @@ self: { homepage = "http://github.com/ekmett/comonad-extras/"; description = "Exotic comonad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-random" = callPackage @@ -29609,6 +30470,7 @@ self: { jailbreak = true; description = "Comonadic interface for random values"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-transformers" = callPackage @@ -29644,6 +30506,7 @@ self: { buildDepends = [ array base binary bytestring containers ]; description = "Compact Data.Map implementation using Data.Binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-string" = callPackage @@ -29656,6 +30519,7 @@ self: { homepage = "http://twan.home.fmf.nl/compact-string/"; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-string-fix" = callPackage @@ -29845,6 +30709,7 @@ self: { jailbreak = true; description = "Empirical algorithmic complexity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compose-trans" = callPackage @@ -29897,6 +30762,7 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/compression/"; description = "Common compression algorithms"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "computational-algebra" = callPackage @@ -29916,6 +30782,7 @@ self: { homepage = "https://github.com/konn/computational-algebra"; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concatenative" = callPackage @@ -30002,6 +30869,7 @@ self: { homepage = "https://github.com/vjeranc/concraft-hr"; description = "Part-of-speech tagger for Croatian"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-pl" = callPackage @@ -30142,6 +31010,7 @@ self: { homepage = "https://github.com/joelteon/concurrent-state"; description = "MTL-like library using TVars"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-supply" = callPackage @@ -30200,6 +31069,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "condorcet" = callPackage @@ -30212,6 +31082,7 @@ self: { homepage = "http://neugierig.org/software/darcs/condorcet"; description = "Library for Condorcet voting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-base" = callPackage @@ -30235,6 +31106,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=conductive-clock"; description = "a library for displaying musical time in a terminal-based clock"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-hsc3" = callPackage @@ -30253,6 +31125,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=conductive-hsc3"; description = "a library with examples of using Conductive with hsc3"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-song" = callPackage @@ -30378,6 +31251,7 @@ self: { homepage = "https://github.com/sdroege/conduit-iconv"; description = "Conduit for character encoding conversion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-network-stream" = callPackage @@ -30393,6 +31267,7 @@ self: { ]; description = "A base layer for network protocols using Conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-resumablesink" = callPackage @@ -30409,6 +31284,7 @@ self: { homepage = "http://github.com/A1kmm/conduit-resumablesink"; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conf" = callPackage @@ -30434,6 +31310,7 @@ self: { buildDepends = [ base directory filepath unix vty-menu ]; description = "A small program for swapping out dot files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "configuration" = callPackage @@ -30468,6 +31345,7 @@ self: { homepage = "https://github.com/alephcloud/hs-configuration-tools"; description = "Tools for specifying and parsing configurations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "configurator" = callPackage @@ -30551,6 +31429,7 @@ self: { ]; description = "A BitTorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "connection" = callPackage @@ -30588,6 +31467,7 @@ self: { homepage = "https://github.com/trskop/connection-pool"; description = "Connection pool built on top of resource-pool and streaming-commons"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "consistent" = callPackage @@ -30605,6 +31485,7 @@ self: { testDepends = [ base lifted-async transformers ]; description = "Eventually consistent STM transactions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "console-program" = callPackage @@ -30635,6 +31516,7 @@ self: { homepage = "https://github.com/kfish/const-math-ghc-plugin"; description = "Compiler plugin for constant math elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "constrained-normal" = callPackage @@ -30683,6 +31565,7 @@ self: { jailbreak = true; description = "A library of constructive algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "container-classes" = callPackage @@ -30766,6 +31649,7 @@ self: { homepage = "http://github.com/thinkpad20/context-stack"; description = "An abstraction of a stack and stack-based monadic context"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continue" = callPackage @@ -30783,6 +31667,7 @@ self: { jailbreak = true; description = "Monads with suspension and arbitrary-spot reentry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continued-fractions" = callPackage @@ -30817,6 +31702,7 @@ self: { extraLibraries = [ hyperleveldb ]; jailbreak = true; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { hyperleveldb = null;}; "continuum-client" = callPackage @@ -30831,6 +31717,7 @@ self: { base bytestring cereal containers mtl nanomsg-haskell time ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "contravariant" = callPackage @@ -30871,6 +31758,7 @@ self: { buildDepends = [ base containers stm time ]; description = "Event scheduling system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-attempt" = callPackage @@ -30884,6 +31772,7 @@ self: { homepage = "http://github.com/snoyberg/control-monad-attempt"; description = "Monad transformer for attempt. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-exception" = callPackage @@ -30901,6 +31790,7 @@ self: { homepage = "http://pepeiborra.github.com/control-monad-exception"; description = "Explicitly typed, checked exceptions with stack traces"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-exception-monadsfd" = callPackage @@ -30917,6 +31807,7 @@ self: { homepage = "http://pepeiborra.github.com/control-monad-exception"; description = "Monads-fd instances for the EMT exceptions monad transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-exception-monadstf" = callPackage @@ -30933,6 +31824,7 @@ self: { homepage = "http://pepeiborra.github.com/control-monad-exception"; description = "Monads-tf instances for the EMT exceptions monad transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-exception-mtl" = callPackage @@ -30945,6 +31837,7 @@ self: { homepage = "http://pepeiborra.github.com/control-monad-exception"; description = "MTL instances for the EMT exceptions monad transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-failure" = callPackage @@ -30958,6 +31851,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error. (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-failure-mtl" = callPackage @@ -30971,6 +31865,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-free" = callPackage @@ -31052,6 +31947,7 @@ self: { buildDepends = [ base contstuff monads-tf ]; description = "ContStuff instances for monads-tf transformers (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "contstuff-transformers" = callPackage @@ -31064,6 +31960,7 @@ self: { jailbreak = true; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "converge" = callPackage @@ -31112,6 +32009,7 @@ self: { homepage = "https://github.com/phonohawk/convertible-ascii"; description = "convertible instances for ascii"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible-text" = callPackage @@ -31132,6 +32030,7 @@ self: { homepage = "http://github.com/snoyberg/convertible/tree/text"; description = "Typeclasses and instances for converting between types (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cookbook" = callPackage @@ -31202,6 +32101,7 @@ self: { homepage = "http://leepike.github.com/Copilot/"; description = "A stream DSL for writing embedded C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-c99" = callPackage @@ -31236,6 +32136,7 @@ self: { ]; description = "Copilot interface to a C model-checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-core" = callPackage @@ -31315,6 +32216,7 @@ self: { homepage = "https://github.com/relrod/copr-hs"; description = "Haskell interface to the Fedora Copr system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "core" = callPackage @@ -31340,6 +32242,7 @@ self: { homepage = "https://github.com/happlebao/Core-Haskell"; description = "A subset of Haskell using in UCC for teaching purpose"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "corebot-bliki" = callPackage @@ -31361,6 +32264,7 @@ self: { homepage = "http://github.com/coreyoconnor/corebot-bliki"; description = "A bliki written using yesod. Uses pandoc to process files stored in git."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-enumerator" = callPackage @@ -31387,6 +32291,7 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/coroutine-iteratee"; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-object" = callPackage @@ -31422,6 +32327,7 @@ self: { jailbreak = true; description = "A CouchDB view server for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couchdb-conduit" = callPackage @@ -31453,6 +32359,7 @@ self: { homepage = "https://github.com/akaspin/couchdb-conduit"; description = "Couch DB client library using http-conduit and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couchdb-enumerator" = callPackage @@ -31482,6 +32389,7 @@ self: { homepage = "http://bitbucket.org/wuzzeb/couchdb-enumerator"; description = "Couch DB client library using http-enumerator and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "count" = callPackage @@ -31575,6 +32483,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/court"; description = "Simple and flexible CI system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cplusplus-th" = callPackage @@ -31592,6 +32501,7 @@ self: { homepage = "https://github.com/nicta/cplusplus-th"; description = "C++ Foreign Import Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpphs" = callPackage @@ -31697,6 +32607,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cpuperf"; description = "Modify the cpu frequency on OpenBSD systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpython" = callPackage @@ -31712,6 +32623,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-python/"; description = "Bindings for libpython"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) python3;}; "cql" = callPackage @@ -31756,6 +32668,7 @@ self: { homepage = "https://github.com/twittner/cql-io/"; description = "Cassandra CQL client"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs" = callPackage @@ -31778,6 +32691,7 @@ self: { jailbreak = true; description = "Command-Query Responsibility Segregation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-example" = callPackage @@ -31799,6 +32713,7 @@ self: { jailbreak = true; description = "Example for cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-postgresql" = callPackage @@ -31821,6 +32736,7 @@ self: { jailbreak = true; description = "PostgreSQL backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-sqlite3" = callPackage @@ -31842,6 +32758,7 @@ self: { jailbreak = true; description = "SQLite3 backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-test" = callPackage @@ -31859,6 +32776,7 @@ self: { jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-types" = callPackage @@ -31876,6 +32794,7 @@ self: { jailbreak = true; description = "Command-Query Responsibility Segregation. Modules for the basic types."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cr" = callPackage @@ -31894,6 +32813,7 @@ self: { homepage = "https://github.com/scvalex/cr"; description = "Code review tool"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crack" = callPackage @@ -31906,6 +32826,7 @@ self: { extraLibraries = [ crack ]; description = "A haskell binding to cracklib"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { crack = null;}; "craftwerk" = callPackage @@ -31953,6 +32874,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Gtk UI for Craftwerk"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16" = callPackage @@ -31964,6 +32886,7 @@ self: { buildDepends = [ base bytestring ]; description = "Calculate the crc16-ccitt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16-table" = callPackage @@ -32002,6 +32925,7 @@ self: { homepage = "https://github.com/mhwombat/creatur"; description = "Framework for artificial life experiments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain1" = callPackage @@ -32021,6 +32945,7 @@ self: { homepage = "https://github.com/kawu/crf-chain1"; description = "First-order, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain1-constrained" = callPackage @@ -32058,6 +32983,7 @@ self: { homepage = "https://github.com/kawu/crf-chain2-generic"; description = "Second-order, generic, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-tiers" = callPackage @@ -32153,6 +33079,7 @@ self: { homepage = "https://github.com/nikita-volkov/criterion-plus"; description = "Enhancement of the \"criterion\" benchmarking library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "criterion-to-html" = callPackage @@ -32202,6 +33129,7 @@ self: { homepage = "https://github.com/TomHammersley/HaskellRenderer/"; description = "An offline renderer supporting ray tracing and photon mapping"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cron" = callPackage @@ -32222,6 +33150,7 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cruncher-types" = callPackage @@ -32306,6 +33235,7 @@ self: { homepage = "http://github.com/vincenthz/hs-crypto-cipher"; description = "Generic cryptography cipher benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-cipher-tests" = callPackage @@ -32433,6 +33363,7 @@ self: { homepage = "https://github.com/knsd/crypto-pubkey-openssh"; description = "OpenSSH keys decoder/encoder"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-pubkey-types" = callPackage @@ -32590,6 +33521,7 @@ self: { jailbreak = true; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crystalfontz" = callPackage @@ -32601,6 +33533,7 @@ self: { buildDepends = [ base crc16-table MaybeT serialport ]; description = "Control Crystalfontz LCD displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cse-ghc-plugin" = callPackage @@ -32613,6 +33546,7 @@ self: { homepage = "http://thoughtpolice.github.com/cse-ghc-plugin"; description = "Compiler plugin for common subexpression elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "csound-catalog" = callPackage @@ -32730,6 +33664,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A command line type checker for CSPM files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "css" = callPackage @@ -32860,6 +33795,7 @@ self: { homepage = "http://darcs.imperialviolet.org/ctemplate"; description = "Binding to the Google ctemplate library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { ctemplate = null;}; "ctkl" = callPackage @@ -32871,6 +33807,7 @@ self: { buildDepends = [ array base ]; description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ctpl" = callPackage @@ -32960,6 +33897,7 @@ self: { homepage = "https://github.com/bmsherman/cublas"; description = "FFI bindings to the CUDA CUBLAS and CUSPARSE libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { cublas = null; cusparse = null;}; "cuboid" = callPackage @@ -32989,6 +33927,7 @@ self: { homepage = "https://github.com/tmcdonell/cuda"; description = "FFI binding to the CUDA interface for programming NVIDIA GPUs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cudd" = callPackage @@ -33005,6 +33944,7 @@ self: { homepage = "https://github.com/adamwalker/haskell_cudd"; description = "Bindings to the CUDD binary decision diagrams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { cudd = null; dddmp = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -33019,6 +33959,7 @@ self: { homepage = "http://github.com/robeverest/cufft"; description = "Haskell bindings for the CUFFT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "curl" = callPackage @@ -33057,6 +33998,7 @@ self: { homepage = "https://kkardzis.github.com/curlhs"; description = "bindings to libcurl, the multiprotocol file transfer library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "currency" = callPackage @@ -33098,6 +34040,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Functions for manipulating Curry programs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "curry-frontend" = callPackage @@ -33116,6 +34059,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Compile the functional logic language Curry to several intermediate formats"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cursedcsv" = callPackage @@ -33134,6 +34078,7 @@ self: { ]; description = "Terminal tool for viewing tabular data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "curves" = callPackage @@ -33180,6 +34125,7 @@ self: { ]; description = "Functional Combinators for Computer Vision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cyclotomic" = callPackage @@ -33211,6 +34157,7 @@ self: { jailbreak = true; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "d-bus" = callPackage @@ -33238,6 +34185,7 @@ self: { ]; description = "Permissively licensed D-Bus client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "d3js" = callPackage @@ -33329,6 +34277,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dapi" = callPackage @@ -33349,6 +34298,7 @@ self: { homepage = "http://massysett.github.com/dapi"; description = "Prints a series of dates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs" = callPackage @@ -33404,6 +34354,7 @@ self: { homepage = "http://wiki.darcs.net/Development/Benchmarks"; description = "Comparative benchmark suite for darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-beta" = callPackage @@ -33430,6 +34381,7 @@ self: { homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) curl;}; "darcs-buildpackage" = callPackage @@ -33448,6 +34400,7 @@ self: { ]; description = "Tools to help manage Debian packages with Darcs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-cabalized" = callPackage @@ -33469,6 +34422,7 @@ self: { homepage = "http://darcs.net/"; description = "David's Advanced Version Control System"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) curl; curses = null; inherit (pkgs) zlib;}; "darcs-fastconvert" = callPackage @@ -33489,6 +34443,7 @@ self: { jailbreak = true; description = "Import/export git fast-import streams to/from darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-graph" = callPackage @@ -33508,6 +34463,7 @@ self: { jailbreak = true; description = "Generate graphs of darcs repository activity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-monitor" = callPackage @@ -33524,6 +34480,7 @@ self: { homepage = "http://wiki.darcs.net/RelatedSoftware/DarcsMonitor"; description = "Darcs repository monitor (sends email)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-scripts" = callPackage @@ -33535,6 +34492,7 @@ self: { buildDepends = [ base ]; description = "Shell scripts for support of darcs workflow"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs2dot" = callPackage @@ -33553,6 +34511,7 @@ self: { jailbreak = true; description = "Outputs dependencies of darcs patches in dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcsden" = callPackage @@ -33582,6 +34541,7 @@ self: { homepage = "http://hackage.haskell.org/package/darcsden"; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcswatch" = callPackage @@ -33604,6 +34564,7 @@ self: { homepage = "http://darcswatch.nomeata.de/"; description = "Track application of Darcs patches"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dash-haskell" = callPackage @@ -33937,6 +34898,7 @@ self: { homepage = "http://monoid.at/code"; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-dword" = callPackage @@ -33973,6 +34935,7 @@ self: { homepage = "https://github.com/jcristovao/easy-data"; description = "Consistent set of utility functions for Maybe, Either, List, Monoids"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-endian" = callPackage @@ -33995,6 +34958,7 @@ self: { sha256 = "0py4a3mzqga25y6y1sirvc9369n3b7y5kpm5f9m613yjlypv6pc1"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-filepath" = callPackage @@ -34128,6 +35092,7 @@ self: { buildDepends = [ base containers ]; description = "Write-once variables with concurrency support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-kiln" = callPackage @@ -34200,6 +35165,7 @@ self: { homepage = "https://github.com/dag/data-lens-ixset"; description = "A Lens for IxSet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-lens-light" = callPackage @@ -34273,6 +35239,7 @@ self: { homepage = "http://github.com/glehel/data-nat"; description = "data Nat = Zero | Succ Nat"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object" = callPackage @@ -34304,6 +35271,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-json/tree/master"; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object-yaml" = callPackage @@ -34324,6 +35292,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-yaml"; description = "Serialize data to and from Yaml files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-or" = callPackage @@ -34382,6 +35351,7 @@ self: { buildDepends = [ base ]; description = "Reference cells that need two independent indices to be accessed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-r-tree" = callPackage @@ -34463,6 +35433,7 @@ self: { buildDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-size" = callPackage @@ -34509,6 +35480,7 @@ self: { homepage = "https://github.com/Palmik/data-store"; description = "Type safe, in-memory dictionary with multidimensional keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-stringmap" = callPackage @@ -34619,6 +35591,7 @@ self: { buildDepends = [ base ]; description = "Basic type wrangling types and classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-util" = callPackage @@ -34711,6 +35684,7 @@ self: { ]; description = "An implementation of datalog in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "datapacker" = callPackage @@ -34809,6 +35783,7 @@ self: { homepage = "http://devel.comunidadhaskell.org/dbjava/"; description = "Decompiler Bytecode Java"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbmigrations" = callPackage @@ -34873,6 +35848,7 @@ self: { homepage = "http://john-millikin.com/software/haskell-dbus/"; description = "Monadic and object-oriented interfaces to DBus"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-core" = callPackage @@ -34939,6 +35915,7 @@ self: { jailbreak = true; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dclabel-eci11" = callPackage @@ -35199,6 +36176,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-war" = callPackage @@ -35238,6 +36216,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciple Core language interactive interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dead-simple-json" = callPackage @@ -35254,6 +36233,7 @@ self: { homepage = "http://hub.darcs.net/scravy/dead-simple-json"; description = "Dead simple JSON parser, with some Template Haskell sugar"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "debian" = callPackage @@ -35334,6 +36314,7 @@ self: { jailbreak = true; description = "The categorical dual of transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "decoder-conduit" = callPackage @@ -35347,6 +36328,7 @@ self: { homepage = "https://github.com/hansonkd/decoder-conduit"; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dedukti" = callPackage @@ -35369,6 +36351,7 @@ self: { homepage = "http://www.lix.polytechnique.fr/dedukti"; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deeplearning-hs" = callPackage @@ -35424,6 +36407,7 @@ self: { homepage = "http://fremissant.net/deepseq-bounded"; description = "Bounded deepseq, including support for generic deriving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq-generics" = callPackage @@ -35454,6 +36438,7 @@ self: { jailbreak = true; description = "Template Haskell based deriver for optimised NFData instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepzoom" = callPackage @@ -35465,6 +36450,7 @@ self: { buildDepends = [ base directory filepath hsmagick ]; description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "defargs" = callPackage @@ -35477,6 +36463,7 @@ self: { homepage = "https://github.com/Kinokkory/defargs"; description = "default arguments in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-base" = callPackage @@ -35516,6 +36503,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-graphics" = callPackage @@ -35539,6 +36527,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-parser" = callPackage @@ -35577,6 +36566,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A simple Reactive library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-sound" = callPackage @@ -35597,6 +36587,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package to handle sound and play it back"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deiko-config" = callPackage @@ -35627,6 +36618,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { mpdec = null;}; "deka-tests" = callPackage @@ -35648,6 +36640,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Tests for deka, decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delaunay" = callPackage @@ -35676,6 +36669,7 @@ self: { homepage = "https://github.com/sof/delicious"; description = "Accessing the del.icio.us APIs from Haskell (v2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delimited-text" = callPackage @@ -35738,6 +36732,7 @@ self: { homepage = "http://protempore.net/denominate/"; description = "Functions supporting bulk file and directory name normalization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-map" = callPackage @@ -35838,6 +36833,7 @@ self: { buildDepends = [ base fgl ]; description = "Find derangements of lists"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derivation-trees" = callPackage @@ -35850,6 +36846,7 @@ self: { jailbreak = true; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive" = callPackage @@ -35883,6 +36880,7 @@ self: { homepage = "http://github.com/konn/derive-IG"; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-gadt" = callPackage @@ -35902,6 +36900,7 @@ self: { jailbreak = true; description = "Instance deriving for (a subset of) GADTs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-trie" = callPackage @@ -35938,6 +36937,7 @@ self: { homepage = "http://darcsden.com/kyagrd/derp-lib"; description = "combinators based on parsing with derivatives (derp) package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "descrilo" = callPackage @@ -36023,6 +37023,7 @@ self: { homepage = "https://github.com/kmcallister/dewdrop"; description = "Find gadgets for return-oriented programming on x86"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dfrac" = callPackage @@ -36053,6 +37054,7 @@ self: { ]; description = "Build Debian From Scratch CD/DVD images"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgs" = callPackage @@ -36066,6 +37068,7 @@ self: { homepage = "http://www.dmwit.com/dgs"; description = "Haskell front-end for DGS' bot interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dia-base" = callPackage @@ -36134,6 +37137,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-cairo" = callPackage @@ -36156,6 +37160,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-canvas" = callPackage @@ -36233,6 +37238,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-haddock" = callPackage @@ -36261,6 +37267,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-lib" = callPackage @@ -36302,6 +37309,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "PDF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-postscript" = callPackage @@ -36355,6 +37363,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-svg" = callPackage @@ -36389,6 +37398,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "TikZ backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dice" = callPackage @@ -36420,6 +37430,7 @@ self: { homepage = "http://monoid.at/code"; description = "Cryptographically secure n-sided dice via rejection sampling"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dictparser" = callPackage @@ -36435,6 +37446,7 @@ self: { homepage = "http://github.com/mwotton/dictparser"; description = "Parsec parsers for the DICT format produced by dictfmt -t"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diet" = callPackage @@ -36507,6 +37519,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/diffcabal"; description = "Diff two .cabal files syntactically"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diffdump" = callPackage @@ -36689,6 +37702,7 @@ self: { homepage = "http://src.seereason.com/digestive-functors-hsp"; description = "HSP support for digestive-functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "digestive-functors-scotty" = callPackage @@ -36798,6 +37812,7 @@ self: { jailbreak = true; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-example" = callPackage @@ -36818,6 +37833,7 @@ self: { jailbreak = true; description = "Dingo Example"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-widgets" = callPackage @@ -36837,6 +37853,7 @@ self: { jailbreak = true; description = "Dingo Widgets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diophantine" = callPackage @@ -36890,6 +37907,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Native implementation of the FastCGI protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-http" = callPackage @@ -36934,6 +37952,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Lightweight replacement for Plugins, specific to GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-sqlite" = callPackage @@ -37032,6 +38051,7 @@ self: { unordered-containers ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dirstream" = callPackage @@ -37083,6 +38103,7 @@ self: { homepage = "http://github.com/lightquake/discount"; description = "Haskell bindings to the discount Markdown library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { markdown = null;}; "discrete-space-map" = callPackage @@ -37116,6 +38137,7 @@ self: { homepage = "https://github.com/maxwellsayles/disjoint-set"; description = "Persistent disjoint-sets, a.k.a union-find."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "disjoint-sets-st" = callPackage @@ -37154,6 +38176,7 @@ self: { buildDepends = [ base Cabal directory filepath process ]; description = "Generate/Upload cabal package to Hackage"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process" = callPackage @@ -37203,6 +38226,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-async"; description = "Cloud Haskell Async API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-azure" = callPackage @@ -37227,6 +38251,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process"; description = "Microsoft Azure backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-client-server" = callPackage @@ -37258,6 +38283,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-execution" = callPackage @@ -37291,6 +38317,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-extras" = callPackage @@ -37322,6 +38349,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-monad-control" = callPackage @@ -37391,6 +38419,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-platform"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-registry" = callPackage @@ -37425,6 +38454,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-registry"; description = "Cloud Haskell Extended Process Registry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-simplelocalnet" = callPackage @@ -37477,6 +38507,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-task" = callPackage @@ -37511,6 +38542,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-tests" = callPackage @@ -37535,6 +38567,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-tests"; description = "Tests for distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-static" = callPackage @@ -37579,6 +38612,7 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution-plot"; description = "Easily plot distributions from the distribution package.."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributive" = callPackage @@ -37668,6 +38702,7 @@ self: { homepage = "http://gitorious.org/djinn-th"; description = "Generate executable Haskell code from a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dlist" = callPackage @@ -37734,6 +38769,7 @@ self: { jailbreak = true; description = "Caching DNS resolver library and mass DNS resolver utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dnsrbl" = callPackage @@ -37759,6 +38795,7 @@ self: { homepage = "https://github.com/maxpow4h/dnssd"; description = "DNS service discovery bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { dns_sd = null;}; "doc-review" = callPackage @@ -37785,6 +38822,7 @@ self: { homepage = "https://github.com/j3h/doc-review"; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doccheck" = callPackage @@ -37804,6 +38842,7 @@ self: { homepage = "https://github.com/Fuuzetsu/doccheck"; description = "Checks Haddock comments for pitfalls and version changes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "docidx" = callPackage @@ -37842,6 +38881,7 @@ self: { homepage = "https://github.com/denibertovic/docker-hs"; description = "Haskell wrapper for Docker Remote API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dockercook" = callPackage @@ -37932,6 +38972,7 @@ self: { homepage = "http://github.com/karun012/doctest-discover"; description = "Easy way to run doctests via cabal"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-discover-configurator" = callPackage @@ -37952,6 +38993,7 @@ self: { homepage = "http://github.com/relrod/doctest-discover-noaeson"; description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-prop" = callPackage @@ -38152,6 +39194,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/download"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "download-curl" = callPackage @@ -38184,6 +39227,7 @@ self: { homepage = "http://github.com/jaspervdj/download-media-content"; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-base" = callPackage @@ -38217,6 +39261,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell example programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-base" = callPackage @@ -38235,6 +39280,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-copy" = callPackage @@ -38252,6 +39298,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-vseg" = callPackage @@ -38270,6 +39317,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-par" = callPackage @@ -38281,6 +39329,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-prim-interface" = callPackage @@ -38312,6 +39361,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (production version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-prim-seq" = callPackage @@ -38340,6 +39390,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dpkg" = callPackage @@ -38406,6 +39457,7 @@ self: { homepage = "http://github.com/cakoose/dropbox-sdk-haskell"; description = "A library to access the Dropbox HTTP API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dropsolve" = callPackage @@ -38425,6 +39477,7 @@ self: { jailbreak = true; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ds-kanren" = callPackage @@ -38439,6 +39492,7 @@ self: { testDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A subset of the miniKanren language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc" = callPackage @@ -38457,6 +39511,7 @@ self: { jailbreak = true; description = "DSMC library for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc-tools" = callPackage @@ -38476,6 +39531,7 @@ self: { jailbreak = true; description = "DSMC toolkit for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dson" = callPackage @@ -38517,6 +39573,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/DSP"; description = "Haskell Digital Signal Processing"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dstring" = callPackage @@ -38530,6 +39587,7 @@ self: { homepage = "https://github.com/basvandijk/dstring"; description = "Difference strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtab" = callPackage @@ -38549,6 +39607,7 @@ self: { ]; description = "Harmonix (Guitar Hero, Rock Band) DTA/DTB metadata library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd" = callPackage @@ -38570,6 +39629,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse and render DTD files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-text" = callPackage @@ -38586,6 +39646,7 @@ self: { homepage = "http://github.com/m15k/hs-dtd-text"; description = "Parse and render XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-types" = callPackage @@ -38598,6 +39659,7 @@ self: { homepage = "http://projects.haskell.org/dtd/"; description = "Basic types for representing XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtrace" = callPackage @@ -38674,6 +39736,7 @@ self: { ]; description = "Efficient automatic differentiation and code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dvdread" = callPackage @@ -38687,6 +39750,7 @@ self: { pkgconfigDepends = [ dvdread ]; description = "A monadic interface to libdvdread"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { dvdread = null;}; "dvi-processing" = callPackage @@ -38767,6 +39831,7 @@ self: { buildDepends = [ base Win32 ]; description = "Backend for a binding to the Microsoft DirectX 9 API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dx9d3d" = callPackage @@ -38779,6 +39844,7 @@ self: { extraLibraries = [ d3d9 ]; description = "A binding to the Microsoft DirectX 9 API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { d3d9 = null;}; "dx9d3dx" = callPackage @@ -38791,6 +39857,7 @@ self: { extraLibraries = [ d3dx9 ]; description = "A binding to the Microsoft DirectX 9 D3DX API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { d3dx9 = null;}; "dynamic-cabal" = callPackage @@ -38831,6 +39898,7 @@ self: { homepage = "https://github.com/adamwalker/dynamic-graph"; description = "Draw and update graphs in real time with OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-linker-template" = callPackage @@ -38889,6 +39957,7 @@ self: { ]; description = "Object-oriented programming with duck typing and singleton classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-state" = callPackage @@ -38962,6 +40031,7 @@ self: { homepage = "http://github.com/sanetracker/easy-api"; description = "Utility code for building HTTP API bindings more quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easy-file" = callPackage @@ -39002,6 +40072,7 @@ self: { homepage = "http://hub.darcs.net/scravy/easyplot"; description = "A tiny plotting library, utilizes gnuplot for plotting"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easyrender" = callPackage @@ -39015,6 +40086,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/"; description = "User-friendly creation of EPS, PostScript, and PDF files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ebeats" = callPackage @@ -39063,6 +40135,7 @@ self: { homepage = "https://github.com/singpolyma/ecdsa-haskell"; description = "Basic ECDSA signing implementation"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecma262" = callPackage @@ -39082,6 +40155,7 @@ self: { homepage = "https://github.com/fabianbergmark/ECMA-262"; description = "A ECMA-262 interpreter library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecu" = callPackage @@ -39099,6 +40173,7 @@ self: { jailbreak = true; description = "Tools for automotive ECU development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { canlib = null;}; "ed25519" = callPackage @@ -39112,6 +40187,7 @@ self: { homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eddie" = callPackage @@ -39153,6 +40229,7 @@ self: { homepage = "http://github.com/brendanhay/ede"; description = "Templating language with similar syntax and features to Liquid or Jinja2"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edenmodules" = callPackage @@ -39177,6 +40254,7 @@ self: { buildDepends = [ base edenmodules parallel ]; description = "Semi-explicit parallel programming skeleton library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edentv" = callPackage @@ -39197,6 +40275,7 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "A Tool to Visualize Parallel Functional Program Executions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edge" = callPackage @@ -39216,6 +40295,7 @@ self: { homepage = "http://frigidcode.com/code/edge"; description = "Top view space combat arcade game"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edit-distance" = callPackage @@ -39241,6 +40321,7 @@ self: { buildDepends = [ base containers data-default lattices mtl ]; description = "Symmetric, stateful edit lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edit-lenses-demo" = callPackage @@ -39267,6 +40348,7 @@ self: { homepage = "https://github.com/maxpow4h/editable"; description = "Interactive editors for Generics"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "editline" = callPackage @@ -39281,6 +40363,7 @@ self: { homepage = "http://code.haskell.org/editline"; description = "Bindings to the editline library (libedit)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libedit;}; "effect-handlers" = callPackage @@ -39307,6 +40390,7 @@ self: { buildDepends = [ base ghc-prim type-level-sets ]; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects" = callPackage @@ -39327,6 +40411,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects-mzv" = callPackage @@ -39347,6 +40432,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effects" = callPackage @@ -39421,6 +40507,7 @@ self: { homepage = "https://github.com/xenophobia/Egison-Quote"; description = "A quasi quotes for using Egison expression in Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "egison-tutorial" = callPackage @@ -39461,6 +40548,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/ehaskell/index.xhtml"; description = "like eruby, ehaskell is embedded haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ehs" = callPackage @@ -39493,6 +40581,7 @@ self: { jailbreak = true; description = "EIBd Client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { eibclient = null;}; "eigen" = callPackage @@ -39545,6 +40634,7 @@ self: { sha256 = "069w3qbyghs1w8wqimj54dwblq5rx1ylgflzzc4cwnjn0aqzgs45"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ekg" = callPackage @@ -39718,6 +40808,7 @@ self: { homepage = "http://github.com/singpolyma/elerea-sdl"; description = "Elerea FRP wrapper for SDL"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elevator" = callPackage @@ -39832,6 +40923,7 @@ self: { homepage = "http://github.com/elm-lang/elm-get"; description = "Tool for sharing and using Elm libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elm-make" = callPackage @@ -39903,6 +40995,7 @@ self: { homepage = "http://elm-lang.org"; description = "Interactive development tool for Elm programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elm-repl" = callPackage @@ -39949,6 +41042,7 @@ self: { homepage = "http://elm-lang.org"; description = "Server for developing Elm projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elm-yesod" = callPackage @@ -39966,6 +41060,7 @@ self: { homepage = "http://elm-lang.org"; description = "The Elm language Yesod compatibility module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email" = callPackage @@ -39983,6 +41078,7 @@ self: { jailbreak = true; description = "Sending eMail in Haskell made easy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-header" = callPackage @@ -40021,6 +41117,7 @@ self: { jailbreak = true; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-validate" = callPackage @@ -40078,6 +41175,7 @@ self: { homepage = "https://github.com/nushio3/embeddock"; description = "Embed the values in scope in the haddock documentation of the module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embeddock-example" = callPackage @@ -40090,6 +41188,7 @@ self: { homepage = "https://github.com/nushio3/embeddock-example"; description = "Example of using embeddock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embroidery" = callPackage @@ -40108,6 +41207,7 @@ self: { homepage = "https://ludflu@github.com/ludflu/embroidery.git"; description = "support for embroidery formats in haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "emgm" = callPackage @@ -40132,6 +41232,7 @@ self: { sha256 = "0ap7qby3n5qiwf791z4li05h0l6p6xi899wkmg6x8z6bb8z9q2d9"; description = "Ceci n'est pas une package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enclosed-exceptions" = callPackage @@ -40291,6 +41392,7 @@ self: { homepage = "https://github.com/emc2/enumeration"; description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumerator" = callPackage @@ -40341,6 +41443,7 @@ self: { homepage = "https://github.com/liyang/enumfun"; description = "Finitely represented /total/ EnumMaps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapmap" = callPackage @@ -40363,6 +41466,7 @@ self: { jailbreak = true; description = "Map of maps using Enum types as keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapset" = callPackage @@ -40375,6 +41479,7 @@ self: { homepage = "https://github.com/michalt/enummapset"; description = "IntMap and IntSet with Enum keys/elements"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapset-th" = callPackage @@ -40418,6 +41523,7 @@ self: { homepage = "http://github.com/tel/env-parser"; description = "Pull configuration information from the ENV"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "envparse" = callPackage @@ -40487,6 +41593,7 @@ self: { homepage = "http://github.com/twittner/epoll/"; description = "epoll bindings"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eprocess" = callPackage @@ -40573,6 +41680,7 @@ self: { homepage = "http://ui3.info/d/proj/epubname.html"; description = "Rename epub ebook files based on meta information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eq" = callPackage @@ -40689,6 +41797,7 @@ self: { homepage = "http://github.com/esessoms/haskell-interface"; description = "FFI interface to Erlang"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eros" = callPackage @@ -40719,6 +41828,7 @@ self: { jailbreak = true; description = "DEPRECATED in favor of eros-http"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eros-http" = callPackage @@ -40803,6 +41913,7 @@ self: { homepage = "http://github.com/gcross/error-message"; description = "Composable error messages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "errorcall-eq-instance" = callPackage @@ -40855,6 +41966,7 @@ self: { homepage = "http://github.com/ekmett/ersatz"; description = "A monad for expressing SAT or QSAT problems using observable sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ersatz-toysat" = callPackage @@ -40873,6 +41985,7 @@ self: { homepage = "https://github.com/msakai/ersatz-toysat"; description = "toysat driver as backend for ersatz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ert" = callPackage @@ -40914,6 +42027,7 @@ self: { homepage = "http://www.killersmurf.com/projects/esotericbot"; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "esqueleto" = callPackage @@ -40951,6 +42065,7 @@ self: { homepage = "https://github.com/GaloisInc/estimator"; description = "State-space estimation algorithms such as Kalman Filters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "estimators" = callPackage @@ -40968,6 +42083,7 @@ self: { jailbreak = true; description = "Tool for managing probability estimation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "estreps" = callPackage @@ -40983,6 +42099,7 @@ self: { homepage = "http://blog.malde.org/"; description = "Repeats from ESTs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "etcd" = callPackage @@ -41015,6 +42132,7 @@ self: { ]; description = "everything breaking the Fairbairn threshold"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-client-haskell" = callPackage @@ -41043,6 +42161,7 @@ self: { ]; description = "A Haskell version of an Ethereum client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-merkle-patricia-db" = callPackage @@ -41067,6 +42186,7 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-rlp" = callPackage @@ -41120,6 +42240,7 @@ self: { jailbreak = true; description = "Free foreign exchange/currency feed from the European Central Bank"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event-driven" = callPackage @@ -41179,6 +42300,7 @@ self: { homepage = "http://code.haskell.org/~mokus/event-monad"; description = "Event-graph simulation monad transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventstore" = callPackage @@ -41208,6 +42330,7 @@ self: { homepage = "http://research.microsoft.com/en-us/people/dimitris/pearl.pdf"; description = "A functional pearl on encoding and decoding using question-and-answer strategies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ewe" = callPackage @@ -41225,6 +42348,7 @@ self: { homepage = "http://github.com/jfcmacro/ewe"; description = "An language using in Programming Languages teaching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ex-pool" = callPackage @@ -41384,6 +42508,7 @@ self: { extraLibraries = [ exif ]; description = "A Haskell binding to a subset of libexif"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) exif;}; "exists" = callPackage @@ -41410,6 +42535,7 @@ self: { homepage = "https://github.com/Bodigrim/exp-pairs"; description = "Linear programming over exponent pairs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expand" = callPackage @@ -41422,6 +42548,7 @@ self: { jailbreak = true; description = "Extensible Pandoc"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expat-enumerator" = callPackage @@ -41439,6 +42566,7 @@ self: { homepage = "http://john-millikin.com/software/expat-enumerator/"; description = "Enumerator-based API for Expat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expiring-cache-map" = callPackage @@ -41483,6 +42611,7 @@ self: { homepage = "https://github.com/joelteon/explain"; description = "Show how expressions are parsed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explicit-determinant" = callPackage @@ -41561,6 +42690,7 @@ self: { homepage = "http://sebfisch.github.com/explicit-sharing"; description = "Explicit Sharing of Monadic Effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explore" = callPackage @@ -41575,6 +42705,7 @@ self: { homepage = "http://corsis.sourceforge.net/haskell/explore"; description = "Experimental Plot data Reconstructor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exposed-containers" = callPackage @@ -41594,6 +42725,7 @@ self: { ]; description = "A distribution of the 'containers' package, with all modules exposed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expression-parser" = callPackage @@ -41621,6 +42753,7 @@ self: { ]; description = "Libraries for processing GHC Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extemp" = callPackage @@ -41644,6 +42777,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/extemp"; description = "automated printing for extemp speakers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-categories" = callPackage @@ -41656,6 +42790,7 @@ self: { homepage = "github.com/ian-mi/extended-categories"; description = "Extended Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-reals" = callPackage @@ -41806,6 +42941,7 @@ self: { homepage = "https://github.com/nikita-volkov/ez-couch"; description = "A high level static library for working with CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "faceted" = callPackage @@ -41856,6 +42992,7 @@ self: { homepage = "https://github.com/rudyl313/factual-haskell-driver"; description = "A driver for the Factual API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fad" = callPackage @@ -41934,6 +43071,7 @@ self: { homepage = "http://github.com/tranma/falling-turnip"; description = "Falling sand game/cellular automata simulation using regular parallel arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fallingblocks" = callPackage @@ -41951,6 +43089,7 @@ self: { homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html"; description = "A fun falling blocks game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "family-tree" = callPackage @@ -41969,6 +43108,7 @@ self: { homepage = "https://github.com/Taneb/family-tree"; description = "A family tree library for the Haskell programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-logger" = callPackage @@ -42073,6 +43213,7 @@ self: { extraLibraries = [ fcgi ]; description = "A Haskell library for writing FastCGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) fcgi;}; "fastirc" = callPackage @@ -42089,6 +43230,7 @@ self: { ]; description = "Fast Internet Relay Chat (IRC) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fault-tree" = callPackage @@ -42127,6 +43269,7 @@ self: { homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-base" = callPackage @@ -42139,6 +43282,7 @@ self: { homepage = "https://github.com/faylang/fay/"; description = "The base package for Fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-builder" = callPackage @@ -42154,6 +43298,7 @@ self: { ]; description = "Compile Fay code on cabal install, and ad-hoc recompile during development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-dom" = callPackage @@ -42166,6 +43311,7 @@ self: { homepage = "https://github.com/faylang/fay-dom"; description = "DOM FFI wrapper library for Fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-hsx" = callPackage @@ -42179,6 +43325,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Clientside HTML generation for fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-jquery" = callPackage @@ -42191,6 +43338,7 @@ self: { homepage = "https://github.com/faylang/fay-jquery"; description = "jQuery bindings for Fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-ref" = callPackage @@ -42203,6 +43351,7 @@ self: { homepage = "https://github.com/A1kmm/fay-ref"; description = "Like IORef but for Fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-text" = callPackage @@ -42215,6 +43364,7 @@ self: { homepage = "https://github.com/faylang/fay-text"; description = "Fay Text type represented as JavaScript strings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-uri" = callPackage @@ -42227,6 +43377,7 @@ self: { homepage = "https://github.com/faylang/fay-uri"; description = "Persistent FFI bindings for using jsUri in Fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fb" = callPackage @@ -42305,6 +43456,7 @@ self: { homepage = "https://github.com/Neki/fcd"; description = "A faster way to navigate directories using the command line"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fckeditor" = callPackage @@ -42318,6 +43470,7 @@ self: { homepage = "http://peteg.org/"; description = "Server-Side Integration for FCKeditor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fclabels" = callPackage @@ -42422,6 +43575,7 @@ self: { homepage = "https://github.com/relrod/fedora-packages-hs"; description = "Haskell interface to the Fedora Packages webapp API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed" = callPackage @@ -42472,6 +43626,7 @@ self: { ]; description = "(unsupported)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2twitter" = callPackage @@ -42487,6 +43642,7 @@ self: { homepage = "http://github.com/tomlokhorst/feed2twitter"; description = "Send posts from a feed to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-compiler" = callPackage @@ -42513,6 +43669,7 @@ self: { homepage = "http://feldspar.github.com"; description = "Compiler for the Feldspar language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { gcc_s = null;}; "feldspar-language" = callPackage @@ -42538,6 +43695,7 @@ self: { homepage = "http://feldspar.github.com"; description = "A functional embedded language for DSP and parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fences" = callPackage @@ -42549,6 +43707,7 @@ self: { buildDepends = [ base ]; description = "To be written"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fenfire" = callPackage @@ -42568,6 +43727,7 @@ self: { homepage = "http://fenfire.org/"; description = "Graph-based notetaking system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { raptor = null;}; "fez-conf" = callPackage @@ -42593,6 +43753,7 @@ self: { buildDepends = [ base HTTP json network pretty utf8-string ]; description = "Haskell binding to the FriendFeed API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fficxx" = callPackage @@ -42640,6 +43801,7 @@ self: { jailbreak = true; description = "Minimal bindings to the FFmpeg library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { libavcodec = null; libavformat = null; libavutil = null; libswscale = null;}; @@ -42657,6 +43819,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/ffmpeg-tutorials"; description = "Tutorials on ffmpeg usage to play video/audio"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fft" = callPackage @@ -42675,6 +43838,7 @@ self: { jailbreak = true; description = "Bindings to the FFTW library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { fftw3 = null; fftw3f = null;}; "fgl" = callPackage @@ -42734,6 +43898,7 @@ self: { homepage = "http://github.com/dmpots/fibon/wiki"; description = "Tools for running and analyzing Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fibonacci" = callPackage @@ -42762,6 +43927,7 @@ self: { homepage = "http://github.com/AstraFIN/fields"; description = "First-class record field combinators with infix record field syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fields-json" = callPackage @@ -42790,6 +43956,7 @@ self: { jailbreak = true; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fig" = callPackage @@ -42986,6 +44153,7 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Use system-filepath data types with conduits. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filesystem-enumerator" = callPackage @@ -43056,6 +44224,7 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fingertree" = callPackage @@ -43129,6 +44298,7 @@ self: { homepage = "https://github.com/reinerp/first-class-patterns"; description = "First class patterns and pattern matching, using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "firstify" = callPackage @@ -43147,6 +44317,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/firstify/"; description = "Defunctionalisation for Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fishfood" = callPackage @@ -43185,6 +44356,7 @@ self: { ]; description = "FIT file decoder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fitsio" = callPackage @@ -43198,6 +44370,7 @@ self: { homepage = "http://github.com/esessoms/fitsio"; description = "A library for reading and writing data files in the FITS data format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) cfitsio;}; "fix-imports" = callPackage @@ -43227,6 +44400,7 @@ self: { buildDepends = [ base mmtl ]; description = "Simple fix-expression parser"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fix-symbols-gitit" = callPackage @@ -43238,6 +44412,7 @@ self: { buildDepends = [ base containers gitit ]; description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed" = callPackage @@ -43274,6 +44449,7 @@ self: { jailbreak = true; description = "Binary fixed-point arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector" = callPackage @@ -43286,6 +44462,7 @@ self: { jailbreak = true; description = "Unbox instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector-space" = callPackage @@ -43298,6 +44475,7 @@ self: { jailbreak = true; description = "vector-space instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-precision" = callPackage @@ -43315,6 +44493,7 @@ self: { homepage = "http://github.com/ekmett/fixed-precision"; description = "Fixed Precision Arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-storable-array" = callPackage @@ -43327,6 +44506,7 @@ self: { jailbreak = true; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-vector" = callPackage @@ -43552,6 +44732,7 @@ self: { jailbreak = true; description = "Flexible wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flexiwrap-smallcheck" = callPackage @@ -43564,6 +44745,7 @@ self: { jailbreak = true; description = "SmallCheck (Serial) instances for flexiwrap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flickr" = callPackage @@ -43581,6 +44763,7 @@ self: { ]; description = "Haskell binding to the Flickr API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flippers" = callPackage @@ -43608,6 +44791,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "f-lite compiler, interpreter and libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flo" = callPackage @@ -43706,6 +44890,7 @@ self: { homepage = "https://github.com/brewtown/hs-flowdock"; description = "Flowdock client library for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowdock-api" = callPackage @@ -43737,6 +44922,7 @@ self: { homepage = "https://github.com/gabemc/flowdock-api"; description = "API integration with Flowdock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flower" = callPackage @@ -43756,6 +44942,7 @@ self: { homepage = "http://biohaskell.org/Applications/Flower"; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowsim" = callPackage @@ -43902,6 +45089,7 @@ self: { homepage = "https://github.com/tonyday567/foldl-incremental"; description = "incremental folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "folds" = callPackage @@ -43925,6 +45113,7 @@ self: { homepage = "http://github.com/ekmett/folds"; description = "Beautiful Folding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "folds-common" = callPackage @@ -43938,6 +45127,7 @@ self: { testDepends = [ base containers tasty tasty-quickcheck ]; description = "A playground of common folds for folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "follower" = callPackage @@ -43957,6 +45147,7 @@ self: { homepage = "http://rebworks.net/projects/follower/"; description = "Follow Tweets anonymously"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "font-opengl-basic4x6" = callPackage @@ -43971,6 +45162,7 @@ self: { jailbreak = true; description = "Basic4x6 font for OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foo" = callPackage @@ -43985,6 +45177,7 @@ self: { homepage = "http://sourceforge.net/projects/fooengine/?abmode=1"; description = "Paper soccer, an OpenGL game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "for-free" = callPackage @@ -44002,6 +45195,7 @@ self: { jailbreak = true; description = "Functor, Monad, MonadPlus, etc for free"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "force-layout" = callPackage @@ -44031,6 +45225,7 @@ self: { buildDepends = [ base process transformers ]; description = "Run a command on files with magic substituion support (sequencing and regexp)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foreign-storable-asymmetric" = callPackage @@ -44089,6 +45284,7 @@ self: { jailbreak = true; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format" = callPackage @@ -44161,6 +45357,7 @@ self: { homepage = "http://texodus.github.com/forml"; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets" = callPackage @@ -44179,6 +45376,7 @@ self: { homepage = "http://github.com/chriseidhof/formlets/tree/master"; description = "Formlets implemented in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets-hsp" = callPackage @@ -44195,6 +45393,7 @@ self: { buildTools = [ trhsx ]; description = "HSP support for Formlets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forth-hll" = callPackage @@ -44252,6 +45451,7 @@ self: { homepage = "https://www.fpcomplete.com/page/api"; description = "Simple interface to the FP Complete IDE API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fpipe" = callPackage @@ -44298,6 +45498,7 @@ self: { ]; description = "Example implementations for FPNLA library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fptest" = callPackage @@ -44382,6 +45583,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Frag"; description = "A 3-D First Person Shooter Game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frame" = callPackage @@ -44429,6 +45631,7 @@ self: { buildDepends = [ base ]; description = "A package for configuring and building Haskell software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free" = callPackage @@ -44487,6 +45690,7 @@ self: { homepage = "https://github.com/fumieval/free-game"; description = "Create games for free"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-operational" = callPackage @@ -44503,6 +45707,7 @@ self: { jailbreak = true; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems" = callPackage @@ -44518,6 +45723,7 @@ self: { ]; description = "Automatic generation of free theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-counterexamples" = callPackage @@ -44536,6 +45742,7 @@ self: { ]; description = "Automatically Generating Counterexamples to Naive Free Theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq" = callPackage @@ -44553,6 +45760,7 @@ self: { ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq-webui" = callPackage @@ -44571,6 +45779,7 @@ self: { ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-webui" = callPackage @@ -44589,6 +45798,7 @@ self: { ]; description = "CGI-based web interface for the free-theorems package"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freekick2" = callPackage @@ -44610,6 +45820,7 @@ self: { homepage = "http://github.com/anttisalonen/freekick2"; description = "A soccer game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freenect" = callPackage @@ -44623,6 +45834,7 @@ self: { homepage = "https://github.com/chrisdone/freenect"; description = "Interface to the Kinect device"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { freenect = null; freenect_sync = null;}; "freesect" = callPackage @@ -44642,6 +45854,7 @@ self: { homepage = "http://fremissant.net/freesect"; description = "A Haskell syntax extension for generalised sections"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freesound" = callPackage @@ -44720,6 +45933,7 @@ self: { homepage = "https://github.com/RaphaelJ/friday"; description = "A functional image processing library for Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "friday-devil" = callPackage @@ -44737,6 +45951,7 @@ self: { homepage = "https://github.com/RaphaelJ/friday-devil"; description = "Uses the DevIL C library to read and write images from and to files and memory buffers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libdevil;}; "friendly-time" = callPackage @@ -44791,6 +46006,7 @@ self: { homepage = "http://github.com/nkpart/fs-events"; description = "A haskell binding to the FSEvents API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fsharp" = callPackage @@ -44905,6 +46121,7 @@ self: { jailbreak = true; description = "A thin layer over USB to communicate with FTDI chips"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftp-conduit" = callPackage @@ -44923,6 +46140,7 @@ self: { homepage = "https://github.com/litherum/ftp-conduit"; description = "FTP client package with conduit interface based off http-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftphs" = callPackage @@ -44971,6 +46189,7 @@ self: { jailbreak = true; description = "Shell interface to the FreeTheorems library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fugue" = callPackage @@ -44994,6 +46213,7 @@ self: { homepage = "http://www.agusa.i.is.nagoya-u.ac.jp/person/sydney/full-sessions.html"; description = "a monad for protocol-typed network programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "full-text-search" = callPackage @@ -45014,6 +46234,7 @@ self: { jailbreak = true; description = "In-memory full text search engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fullstop" = callPackage @@ -45033,6 +46254,7 @@ self: { homepage = "http://hub.darcs.net/kowey/fullstop"; description = "Simple sentence segmenter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funcmp" = callPackage @@ -45056,6 +46278,7 @@ self: { buildDepends = [ base data-type ]; description = "Combining functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "function-instances-algebra" = callPackage @@ -45081,6 +46304,7 @@ self: { jailbreak = true; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functor-apply" = callPackage @@ -45092,6 +46316,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "This package has been subsumed by semigroupoids"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functor-combo" = callPackage @@ -45142,6 +46367,7 @@ self: { buildDepends = [ base ]; description = "Data.FunctorM (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functors" = callPackage @@ -45173,6 +46399,7 @@ self: { homepage = "http://github.com/nathanwiegand/funion"; description = "A unioning file-system using HFuse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funpat" = callPackage @@ -45205,6 +46432,7 @@ self: { homepage = "http://github.com/dbueno/funsat"; description = "A modern DPLL-style SAT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "futun" = callPackage @@ -45231,6 +46459,7 @@ self: { homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/future"; description = "Supposed to mimics and enhance proposed C++ \"future\" features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "future-resource" = callPackage @@ -45293,6 +46522,7 @@ self: { buildDepends = [ base cmdargs directory old-time process ]; description = "A 'ten past six' style clock"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fwgl" = callPackage @@ -45325,6 +46555,7 @@ self: { buildDepends = [ base HTTP json ]; description = "Generate Gentoo ebuilds from NodeJS/npm packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gact" = callPackage @@ -45342,6 +46573,7 @@ self: { ]; description = "General Alignment Clustering Tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "game-probability" = callPackage @@ -45378,6 +46610,7 @@ self: { buildDepends = [ base cairo containers glib gtk time ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gamma" = callPackage @@ -45446,6 +46679,7 @@ self: { homepage = "http://www.daneel0yaitskov.000space.com"; description = "planar graph embedding into a plane"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gc-monitoring-wai" = callPackage @@ -45463,6 +46697,7 @@ self: { homepage = "https://github.com/yihuang/gc-monitoring-wai"; description = "a wai application to show GHC.GCStats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gconf" = callPackage @@ -45524,6 +46759,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; description = "Generic diff for the instant-generics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gdiff-th" = callPackage @@ -45544,6 +46780,7 @@ self: { homepage = "https://github.com/jfischoff/gdiff-th"; description = "Generate gdiff GADTs and Instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gearbox" = callPackage @@ -45617,6 +46854,7 @@ self: { homepage = "http://corbinsimpson.com/"; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gencheck" = callPackage @@ -45634,6 +46872,7 @@ self: { homepage = "http://github.com/JacquesCarette/GenCheck"; description = "A testing framework inspired by QuickCheck and SmallCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gender" = callPackage @@ -45728,6 +46967,7 @@ self: { testDepends = [ base HUnit test-framework test-framework-hunit ]; description = "Automatically convert Generic instances to and from church representations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-deepseq" = callPackage @@ -45806,6 +47046,7 @@ self: { jailbreak = true; description = "Generic implementation of Storable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-tree" = callPackage @@ -45829,6 +47070,7 @@ self: { buildDepends = [ base HaXml mtl syb-with-class template-haskell ]; description = "Marshalling Haskell values to/from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generics-sop" = callPackage @@ -45851,6 +47093,7 @@ self: { buildDepends = [ base ]; description = "Serialization library using Data.Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genetics" = callPackage @@ -45864,6 +47107,7 @@ self: { buildDepends = [ base random-fu ]; description = "A Genetic Algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-gui" = callPackage @@ -45885,6 +47129,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "GenI graphical user interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-util" = callPackage @@ -45906,6 +47151,7 @@ self: { homepage = "http://kowey.github.io/GenI"; description = "Companion tools for use with the GenI surface realiser"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geniconvert" = callPackage @@ -45926,6 +47172,7 @@ self: { homepage = "http://wiki.loria.fr/wiki/GenI"; description = "Conversion utility for the GenI generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genifunctors" = callPackage @@ -45969,6 +47216,7 @@ self: { jailbreak = true; description = "Simple HTTP server for GenI results"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genprog" = callPackage @@ -46074,6 +47322,7 @@ self: { homepage = "https://github.com/domdere/hs-geojson"; description = "A thin GeoJSON Layer above the aeson library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getemx" = callPackage @@ -46093,6 +47342,7 @@ self: { homepage = "http://bitbucket.org/kenko/getemx"; description = "Fetch from emusic using .emx files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getflag" = callPackage @@ -46104,6 +47354,7 @@ self: { buildDepends = [ base ]; description = "Command-line parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getopt-simple" = callPackage @@ -46141,6 +47392,7 @@ self: { homepage = "http://www.grammaticalframework.org/"; description = "Grammatical Framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ggtsTC" = callPackage @@ -46191,6 +47443,7 @@ self: { homepage = "http://github.com/vincenthz/ghc-core-html"; description = "Core to HTML display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-datasize" = callPackage @@ -46215,6 +47468,7 @@ self: { jailbreak = true; description = "Explicitly prevent sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-events" = callPackage @@ -46251,6 +47505,7 @@ self: { jailbreak = true; description = "Analyze and visualize event logs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-events-parallel" = callPackage @@ -46298,6 +47553,7 @@ self: { homepage = "https://github.com/alanz/ghc-generic-instances"; description = "Derived instances of GHC.Generic of the GHC AST"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-heap-view" = callPackage @@ -46531,6 +47787,7 @@ self: { sha256 = "1hg5iddlh87hir5vqjby2bihah4xcyarsfcgff3gd8l2h7mqi2dn"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-srcspan-plugin" = callPackage @@ -46556,6 +47813,7 @@ self: { homepage = "http://github.com/nominolo/ghc-syb"; description = "Data and Typeable instances for the GHC API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-syb-utils" = callPackage @@ -46604,6 +47862,7 @@ self: { homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-diagrams" = callPackage @@ -46616,6 +47875,7 @@ self: { jailbreak = true; description = "Display simple diagrams from ghci"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-haskeline" = callPackage @@ -46636,6 +47896,7 @@ self: { homepage = "http://code.haskell.org/~judah/ghci-haskeline"; description = "An implementation of ghci using the Haskeline line-input library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-lib" = callPackage @@ -46669,6 +47930,7 @@ self: { homepage = "https://github.com/hvr/ghci-ng"; description = "Extended GHCi fork"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-pretty" = callPackage @@ -46729,6 +47991,7 @@ self: { buildDepends = [ base glib gtk3 mtl text transformers webkitgtk3 ]; description = "DOM library that supports both GHCJS and WebKitGTK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghcjs-dom-hello" = callPackage @@ -46743,6 +48006,7 @@ self: { homepage = "https://github.com/ghcjs/ghcjs-dom-hello"; description = "GHCJS DOM Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghclive" = callPackage @@ -46768,6 +48032,7 @@ self: { homepage = "http://github.com/shapr/ghclive/"; description = "Interactive Haskell interpreter in a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghczdecode" = callPackage @@ -46802,6 +48067,7 @@ self: { ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gimlh" = callPackage @@ -46836,6 +48102,7 @@ self: { homepage = "http://repetae.net/computer/ginsu/"; description = "Ginsu Gale Client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) openssl;}; "gio" = callPackage @@ -46852,6 +48119,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GIO"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) glib;}; "gist" = callPackage @@ -46869,6 +48137,7 @@ self: { homepage = "http://github.com/simonmichael/gist"; description = "A reliable command-line client for gist.github.com"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-all" = callPackage @@ -46888,6 +48157,7 @@ self: { homepage = "https://github.com/jwiegley/git-all"; description = "Determine which Git repositories need actions to be taken"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-annex" = callPackage @@ -46964,6 +48234,7 @@ self: { homepage = "https://github.com/dougalstanton/git-checklist"; description = "Maintain per-branch checklists in Git"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-date" = callPackage @@ -46982,6 +48253,7 @@ self: { homepage = "https://github.com/singpolyma/git-date-haskell"; description = "Bindings to the date parsing from Git"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-embed" = callPackage @@ -47040,6 +48312,7 @@ self: { homepage = "http://github.com/jwiegley/gitlib"; description = "More intelligent push-to-GitHub utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-monitor" = callPackage @@ -47064,6 +48337,7 @@ self: { homepage = "http://github.com/jwiegley/gitlib"; description = "Passively snapshots working tree changes efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-object" = callPackage @@ -47104,6 +48378,7 @@ self: { homepage = "http://git-repair.branchable.com/"; description = "repairs a damanged git repisitory"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-sanity" = callPackage @@ -47357,6 +48632,7 @@ self: { ]; description = "Run tests between repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-libgit2" = callPackage @@ -47385,6 +48661,7 @@ self: { ]; description = "Libgit2 backend for gitlib"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-s3" = callPackage @@ -47414,6 +48691,7 @@ self: { ]; description = "Gitlib repository backend for storing Git objects in Amazon S3"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-sample" = callPackage @@ -47461,6 +48739,7 @@ self: { ]; description = "Generic utility functions for working with Git repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitson" = callPackage @@ -47484,6 +48763,7 @@ self: { homepage = "https://github.com/myfreeweb/gitson"; description = "A document store library for Git + JSON"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gl" = callPackage @@ -47527,6 +48807,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the glade library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) libglade;}; "gladexml-accessor" = callPackage @@ -47538,6 +48819,7 @@ self: { buildDepends = [ base glade HaXml template-haskell ]; description = "Automagically declares getters for widget handles in specified interface file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glapp" = callPackage @@ -47583,6 +48865,7 @@ self: { homepage = "https://github.com/klangner/glider-nlp"; description = "Natural Language Processing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glintcollider" = callPackage @@ -47676,6 +48959,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss" = callPackage @@ -47706,6 +48990,7 @@ self: { jailbreak = true; description = "Extras to interface Gloss and Accelerate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-algorithms" = callPackage @@ -47763,6 +49048,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Examples using the gloss library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-game" = callPackage @@ -47824,6 +49110,7 @@ self: { jailbreak = true; description = "Parallel rendering of raster images using Accelerate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-rendering" = callPackage @@ -47885,6 +49172,7 @@ self: { buildDepends = [ array AvlTree base COrdering QuickCheck random ]; description = "Composable maps and generic tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gmndl" = callPackage @@ -47904,6 +49192,7 @@ self: { jailbreak = true; description = "Mandelbrot Set explorer using GTK"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-desktop" = callPackage @@ -47917,6 +49206,7 @@ self: { buildDepends = [ base directory gconf glib gtk random ]; description = "Randomly set a picture as the GNOME desktop background"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-keyring" = callPackage @@ -47933,6 +49223,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-gnome-keyring/"; description = "Bindings for libgnome-keyring"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gnome_keyring;}; "gnomevfs" = callPackage @@ -47950,6 +49241,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnuidn" = callPackage @@ -48013,6 +49305,7 @@ self: { buildDepends = [ base directory filepath process ]; description = "GHCi bindings to lambdabot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goatee" = callPackage @@ -48048,6 +49341,7 @@ self: { homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gofer-prelude" = callPackage @@ -48060,6 +49354,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/gofer-prelude"; description = "The Gofer 2.30 standard prelude"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-dictionary" = callPackage @@ -48113,6 +49408,7 @@ self: { jailbreak = true; description = "Google HTML5 Slide generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-mail-filters" = callPackage @@ -48177,6 +49473,7 @@ self: { homepage = "http://github.com/michaelxavier/GooglePlus"; description = "Haskell implementation of the Google+ API v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gopherbot" = callPackage @@ -48194,6 +49491,7 @@ self: { ]; description = "Spidering robot to download files from Gopherspace"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpah" = callPackage @@ -48214,6 +49512,7 @@ self: { ]; description = "Generic Programming Use in Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpcsets" = callPackage @@ -48258,6 +49557,7 @@ self: { jailbreak = true; description = "For manipulating GPS coordinates and trails"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gps2htmlReport" = callPackage @@ -48280,6 +49580,7 @@ self: { homepage = "https://github.com/robstewart57/Gps2HtmlReport"; description = "GPS to HTML Summary Report"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpx-conduit" = callPackage @@ -48297,6 +49598,7 @@ self: { jailbreak = true; description = "Read GPX files using conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graceful" = callPackage @@ -48332,6 +49634,7 @@ self: { homepage = "http://projects.haskell.org/grammar-combinators/"; description = "A parsing library of context-free grammar combinators"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-examples" = callPackage @@ -48412,6 +49715,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "GTK+-based backend for declarative user interface programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-core" = callPackage @@ -48494,6 +49798,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Interactive graph rewriting system implementing various well-known combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-rewriting-gl" = callPackage @@ -48534,6 +49839,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-rewriting-layout" = callPackage @@ -48658,6 +49964,7 @@ self: { homepage = "http://github.com/konn/graph-utils/"; description = "A simple wrapper & quasi quoter for fgl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-visit" = callPackage @@ -48755,6 +50062,7 @@ self: { homepage = "http://github.com/luqui/collada"; description = "Load 3D geometry in the COLLADA format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicsFormats" = callPackage @@ -48766,6 +50074,7 @@ self: { buildDepends = [ base haskell98 OpenGL QuickCheck ]; description = "Classes for renderable objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicstools" = callPackage @@ -48784,6 +50093,7 @@ self: { homepage = "https://yousource.it.jyu.fi/cvlab/pages/GraphicsTools"; description = "Tools for creating graphical UIs, based on wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphmod" = callPackage @@ -48832,6 +50142,7 @@ self: { homepage = "http://github.com/explicitcall/graphtype"; description = "A simple tool to illustrate dependencies between Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphviz" = callPackage @@ -48898,6 +50209,7 @@ self: { homepage = "https://github.com/mhwombat/gray-extended"; description = "Gray encoding schemes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greencard" = callPackage @@ -48940,6 +50252,7 @@ self: { homepage = "http://code.google.com/p/greg/"; description = "A scalable distributed logger with a high-precision global time axis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grid" = callPackage @@ -48957,6 +50270,7 @@ self: { homepage = "https://github.com/mhwombat/grid"; description = "Tools for working with regular grids (graphs, lattices)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grm" = callPackage @@ -48975,6 +50289,7 @@ self: { buildTools = [ happy ]; description = "grm grammar converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groom" = callPackage @@ -49042,6 +50357,7 @@ self: { ]; description = "MySQL backend for the groundhog library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-postgresql" = callPackage @@ -49169,6 +50485,7 @@ self: { homepage = "http://github.com/iand675/growler"; description = "A revised version of the scotty library that attempts to be simpler and more performant"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gruff" = callPackage @@ -49189,6 +50506,7 @@ self: { jailbreak = true; description = "fractal explorer GUI using the ruff library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gruff-examples" = callPackage @@ -49208,6 +50526,7 @@ self: { jailbreak = true; description = "Mandelbrot Set examples using ruff and gruff"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsasl" = callPackage @@ -49232,6 +50551,7 @@ self: { buildDepends = [ base hierarchical-clustering ]; description = "Generic implementation of Gerstein/Sonnhammer/Chothia weighting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsl-random" = callPackage @@ -49244,6 +50564,7 @@ self: { homepage = "http://github.com/patperry/hs-gsl-random"; description = "Bindings the the GSL random number generation facilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsl-random-fu" = callPackage @@ -49256,6 +50577,7 @@ self: { homepage = "http://code.haskell.org/~mokus/gsl-random-fu"; description = "Instances for using gsl-random with random-fu"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsmenu" = callPackage @@ -49275,6 +50597,7 @@ self: { homepage = "http://sigkill.dk/programs/gsmenu"; description = "A visual generic menu"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gstreamer" = callPackage @@ -49297,6 +50620,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GStreamer open source multimedia framework"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) gstreamer; gstreamer-audio = null; gstreamer-base = null; gstreamer-controller = null; gstreamer-dataprotocol = null; gstreamer-net = null; @@ -49331,6 +50655,7 @@ self: { buildDepends = [ base csv directory filepath rowrecord split ]; description = "The General Transit Feed Specification format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk" = callPackage @@ -49349,6 +50674,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) glib; inherit (pkgs.gnome) gtk;}; "gtk-jsinput" = callPackage @@ -49361,6 +50687,7 @@ self: { homepage = "http://github.com/timthelion/gtk-jsinput"; description = "A simple custom form widget for gtk which allows inputing of JSON values"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-largeTreeStore" = callPackage @@ -49375,6 +50702,7 @@ self: { testDepends = [ base containers gtk3 hspec ]; description = "Large TreeStore support for gtk2hs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-mac-integration" = callPackage @@ -49391,6 +50719,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { gtk-mac-integration = null;}; "gtk-serialized-event" = callPackage @@ -49406,6 +50735,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "GTK+ Serialized event"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk;}; "gtk-simple-list-view" = callPackage @@ -49418,6 +50748,7 @@ self: { homepage = "http://github.com/timthelion/gtk-simple-list-view"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of list views"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-toggle-button-list" = callPackage @@ -49430,6 +50761,7 @@ self: { homepage = "http://github.com/timthelion/gtk-toggle-button-list"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of toggle button lists"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-toy" = callPackage @@ -49442,6 +50774,7 @@ self: { jailbreak = true; description = "Convenient Gtk canvas with mouse and keyboard input"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-traymanager" = callPackage @@ -49455,6 +50788,7 @@ self: { homepage = "http://github.com/travitch/gtk-traymanager"; description = "A wrapper around the eggtraymanager library for Linux system trays"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk; inherit (pkgs) x11;}; "gtk2hs-buildtools" = callPackage @@ -49490,6 +50824,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: glade package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-glib" = callPackage @@ -49516,6 +50851,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -49531,6 +50867,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtk package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtkglext" = callPackage @@ -49546,6 +50883,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -49562,6 +50900,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-th" = callPackage @@ -49587,6 +50926,7 @@ self: { homepage = "http://www.haskell.org/hello/"; description = "Gtk2Hs Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-rpn" = callPackage @@ -49599,6 +50939,7 @@ self: { jailbreak = true; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk3" = callPackage @@ -49621,6 +50962,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) glib; gtk3 = null;}; "gtk3-mac-integration" = callPackage @@ -49637,6 +50979,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { gtk-mac-integration = null;}; "gtkglext" = callPackage @@ -49654,6 +50997,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GTK+ OpenGL Extension"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtkglext; inherit (pkgs) pangox_compat;}; @@ -49672,6 +51016,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GtkImageView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) gtkimageview;}; "gtkrsync" = callPackage @@ -49690,6 +51035,7 @@ self: { homepage = "http://hg.complete.org/gtkrsync"; description = "Gnome rsync progress display"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtksourceview2" = callPackage @@ -49706,6 +51052,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtksourceview;}; "gtksourceview3" = callPackage @@ -49722,6 +51069,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtksourceview;}; "guarded-rewriting" = callPackage @@ -49746,6 +51094,7 @@ self: { homepage = "http://code.atnnn.com/project/guess"; description = "Generate simple combinators given their type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gulcii" = callPackage @@ -49761,6 +51110,7 @@ self: { homepage = "http://gitorious.org/maximus/gulcii"; description = "graphical untyped lambda calculus interactive interpreter"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gutenberg-fibonaccis" = callPackage @@ -49793,6 +51143,7 @@ self: { homepage = "https://github.com/Fuuzetsu/h-booru"; description = "Haskell library for retrieving data from various booru image sites"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h-gpgme" = callPackage @@ -49811,6 +51162,7 @@ self: { ]; homepage = "https://github.com/rethab/h-gpgme"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h2048" = callPackage @@ -49830,6 +51182,7 @@ self: { homepage = "https://github.com/Javran/h2048"; description = "a haskell implementation of Game 2048"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hArduino" = callPackage @@ -49870,6 +51223,7 @@ self: { extraLibraries = [ cudd epd mtr st util ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { cudd = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -49886,6 +51240,7 @@ self: { extraLibraries = [ csound64 libsndfile ]; description = "interface to CSound API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { csound64 = null; inherit (pkgs) libsndfile;}; "hDFA" = callPackage @@ -49897,6 +51252,7 @@ self: { buildDepends = [ base containers directory process ]; description = "A simple library for representing and minimising DFAs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hF2" = callPackage @@ -49908,6 +51264,7 @@ self: { buildDepends = [ base cereal vector ]; description = "F(2^e) math for cryptography"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hGelf" = callPackage @@ -49942,6 +51299,7 @@ self: { homepage = "http://github.com/itkovian/hMollom"; description = "Library to interact with the @Mollom anti-spam service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hOpenPGP" = callPackage @@ -50037,6 +51395,7 @@ self: { homepage = "https://github.com/WJWH/hPushover"; description = "Pushover.net API functions."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hR" = callPackage @@ -50048,6 +51407,7 @@ self: { buildDepends = [ array base containers unix ]; description = "R bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hRESP" = callPackage @@ -50097,6 +51457,7 @@ self: { jailbreak = true; description = "Interface to Amazon's SimpleDB service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTalos" = callPackage @@ -50111,6 +51472,7 @@ self: { homepage = "https://github.com/mgajda/hTalos"; description = "Parser, print and manipulate structures in PDB file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTensor" = callPackage @@ -50138,6 +51500,7 @@ self: { homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; description = "Optimal variable selection in chain graphical model"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) blas; lapack = null;}; "haar" = callPackage @@ -50155,6 +51518,7 @@ self: { homepage = "https://github.com/mhwombat/haar"; description = "Haar wavelet transforms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hacanon-light" = callPackage @@ -50197,6 +51561,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-contrib"; description = "Hack contrib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-contrib-press" = callPackage @@ -50214,6 +51579,7 @@ self: { homepage = "http://github.com/bickfordb/hack-contrib-press"; description = "Hack helper that renders Press templates"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-happstack" = callPackage @@ -50231,6 +51597,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "hack-frontend-happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-monadcgi" = callPackage @@ -50242,6 +51609,7 @@ self: { buildDepends = [ base bytestring cgi containers hack ]; description = "Allows programs written against MonadCGI to run with any hack handler. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-cgi" = callPackage @@ -50272,6 +51640,7 @@ self: { homepage = "http://github.com/twittner/hack-handler-epoll/"; description = "hack handler implementation using epoll"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-evhttp" = callPackage @@ -50290,6 +51659,7 @@ self: { homepage = "http://github.com/bickfordb/hack-handler-evhttp"; description = "Hack EvHTTP (libevent) Handler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { event = null;}; "hack-handler-fastcgi" = callPackage @@ -50304,6 +51674,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-fastcgi/tree/master"; description = "Hack handler direct to fastcgi (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) fcgi;}; "hack-handler-happstack" = callPackage @@ -50321,6 +51692,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-happstack"; description = "Hack Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-hyena" = callPackage @@ -50337,6 +51709,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-hyena"; description = "Hyena hack handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-kibro" = callPackage @@ -50349,6 +51722,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "Hack Kibro handler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-simpleserver" = callPackage @@ -50366,6 +51740,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-simpleserver/tree/master"; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-cleanpath" = callPackage @@ -50394,6 +51769,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-clientsession/tree/master"; description = "Middleware for easily keeping session data in client cookies. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-gzip" = callPackage @@ -50422,6 +51798,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-jsonp/tree/master"; description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2" = callPackage @@ -50469,6 +51846,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-contrib"; description = "Hack2 contrib extra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-happstack-server" = callPackage @@ -50487,6 +51865,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-happstack-server"; description = "Hack2 Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-mongrel2-http" = callPackage @@ -50507,6 +51886,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-mongrel2-http"; description = "Hack2 Mongrel2 HTTP handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-snap-server" = callPackage @@ -50542,6 +51922,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-warp"; description = "Hack2 warp handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-interface-wai" = callPackage @@ -50560,6 +51941,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-interface-wai"; description = "Hack2 interface of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-db" = callPackage @@ -50598,6 +51980,7 @@ self: { homepage = "https://github.com/blitzcode/hackage-diff"; description = "Compare the public API of different versions of a Hackage library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-plot" = callPackage @@ -50641,6 +52024,7 @@ self: { homepage = "http://github.com/snoyberg/hackage-proxy"; description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-server" = callPackage @@ -50679,6 +52063,7 @@ self: { jailbreak = true; description = "The Hackage web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-sparks" = callPackage @@ -50698,6 +52083,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage-sparks"; description = "Generate sparkline graphs of hackage statistics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage2hwn" = callPackage @@ -50712,6 +52098,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage2hwn"; description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage2twitter" = callPackage @@ -50726,6 +52113,7 @@ self: { homepage = "http://github.com/tomlokhorst/hackage2twitter"; description = "Send new Hackage releases to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackager" = callPackage @@ -50762,6 +52150,7 @@ self: { testDepends = [ base hspec transformers ]; description = "API for Hacker News"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackertyper" = callPackage @@ -50820,6 +52209,7 @@ self: { homepage = "https://github.com/Forkk/hactor"; description = "Lightweight Erlang-style actors for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hactors" = callPackage @@ -50888,6 +52278,7 @@ self: { homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haddock-library" = callPackage @@ -51036,6 +52427,7 @@ self: { homepage = "http://github.com/tych0/haggis"; description = "A static site generator with blogging/comments support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haha" = callPackage @@ -51163,6 +52555,7 @@ self: { homepage = "https://github.com/tfausak/hairy"; description = "A JSON REST API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakaru" = callPackage @@ -51193,6 +52586,7 @@ self: { homepage = "http://indiana.edu/~ppaml/"; description = "A probabilistic programming embedded DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hake" = callPackage @@ -51224,6 +52618,7 @@ self: { homepage = "https://code.reaktor42.de/projects/hakismet"; description = "Akismet spam protection library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hako" = callPackage @@ -51307,6 +52702,7 @@ self: { jailbreak = true; description = "Blaze templates for Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib" = callPackage @@ -51322,6 +52718,7 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "Extra modules for the hakyll website compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib-hyphenation" = callPackage @@ -51354,6 +52751,7 @@ self: { jailbreak = true; description = "A hakyll library that helps maintain a separate links database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-convert" = callPackage @@ -51387,6 +52785,7 @@ self: { homepage = "https://github.com/maxsnew/hakyll-elm"; description = "Hakyll wrapper for the Elm compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halberd" = callPackage @@ -51413,6 +52812,7 @@ self: { homepage = "http://github.com/haskell-suite/halberd/"; description = "A tool to generate missing import statements for Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "half" = callPackage @@ -51445,6 +52845,7 @@ self: { jailbreak = true; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halipeto" = callPackage @@ -51458,6 +52859,7 @@ self: { homepage = "http://github.com/peti/halipeto"; description = "Haskell Static Web Page Generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haltavista" = callPackage @@ -51513,6 +52915,7 @@ self: { jailbreak = true; description = "Haskell macro preprocessor"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamtmap" = callPackage @@ -51525,6 +52928,7 @@ self: { homepage = "https://github.com/exclipy/pdata"; description = "A purely functional and persistent hash map"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamusic" = callPackage @@ -51545,6 +52949,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/HaMusic"; description = "Library to handle abstract music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "handa-gdata" = callPackage @@ -51594,6 +52999,7 @@ self: { buildDepends = [ base bytestring ]; description = "HandleLike class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hangman" = callPackage @@ -51685,6 +53091,7 @@ self: { jailbreak = true; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { appindicator = null;}; "happindicator3" = callPackage @@ -51700,6 +53107,7 @@ self: { homepage = "https://github.com/mlacorte/happindicator3"; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { appindicator = null;}; "happraise" = callPackage @@ -51713,6 +53121,7 @@ self: { buildDepends = [ base directory filepath ]; description = "A small program for counting the comments in haskell source"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp" = callPackage @@ -51724,6 +53133,7 @@ self: { sha256 = "0l1gb0qhhmld77qyz8qclbqxnv0hvyvjhav78690z50kvpjpqrxx"; buildDepends = [ base bytestring HAppS-Server hsp mtl plugins ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp-template" = callPackage @@ -51740,6 +53150,7 @@ self: { ]; description = "Utilities for using HSP templates in HAppS applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-tutorial" = callPackage @@ -51765,6 +53176,7 @@ self: { jailbreak = true; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack" = callPackage @@ -51800,6 +53212,7 @@ self: { homepage = "http://n-sch.de/happstack-auth"; description = "A Happstack Authentication Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-authenticate" = callPackage @@ -51841,6 +53254,7 @@ self: { homepage = "http://happstack.com"; description = "client-side session data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-contrib" = callPackage @@ -51863,6 +53277,7 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-data" = callPackage @@ -51884,6 +53299,7 @@ self: { homepage = "http://happstack.com"; description = "Happstack data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-dlg" = callPackage @@ -51902,6 +53318,7 @@ self: { homepage = "http://patch-tag.com/r/cdsmith/happstack-dlg"; description = "Cross-request user interactions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-facebook" = callPackage @@ -51929,6 +53346,7 @@ self: { homepage = "http://src.seereason.com/happstack-facebook/"; description = "A package for building Facebook applications using Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fastcgi" = callPackage @@ -51945,6 +53363,7 @@ self: { ]; description = "Happstack extension for use with FastCGI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fay" = callPackage @@ -51962,6 +53381,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fay-ajax" = callPackage @@ -51975,6 +53395,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-foundation" = callPackage @@ -51995,6 +53416,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Glue code for using Happstack with acid-state, web-routes, reform, and HSP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hamlet" = callPackage @@ -52026,6 +53448,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Heist templates in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-helpers" = callPackage @@ -52051,6 +53474,7 @@ self: { homepage = "http://patch-tag.com/r/tphyahoo/HAppSHelpers/home"; description = "Convenience functions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hsp" = callPackage @@ -52068,6 +53492,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using HSP templates in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hstringtemplate" = callPackage @@ -52105,6 +53530,7 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-jmacro" = callPackage @@ -52151,6 +53577,7 @@ self: { ]; description = "monad-peel instances for Happstack types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-plugins" = callPackage @@ -52168,6 +53595,7 @@ self: { homepage = "http://happstack.com"; description = "The haskell application server stack + reload"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-server" = callPackage @@ -52234,6 +53662,7 @@ self: { homepage = "http://happstack.com"; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-static-routing" = callPackage @@ -52273,6 +53702,7 @@ self: { homepage = "http://happstack.com"; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-yui" = callPackage @@ -52295,6 +53725,7 @@ self: { homepage = "http://hub.darcs.net/dag/yui/browse/happstack-yui"; description = "Utilities for using YUI3 with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happy" = callPackage @@ -52346,6 +53777,7 @@ self: { homepage = "https://github.com/cstrahan/happybara"; description = "Acceptance test framework for web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit" = callPackage @@ -52367,6 +53799,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit"; description = "WebKit Happybara driver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit-server" = callPackage @@ -52380,6 +53813,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit-server"; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harchive" = callPackage @@ -52397,6 +53831,7 @@ self: { homepage = "http://www.davidb.org/darcs/harchive/"; description = "Networked content addressed backup and restore software"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) openssl; inherit (pkgs) sqlite;}; "hark" = callPackage @@ -52416,6 +53851,7 @@ self: { homepage = "http://code.google.com/p/hark/"; description = "A Gentoo package query tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haroonga" = callPackage @@ -52433,6 +53869,7 @@ self: { jailbreak = true; description = "Low level bindings for Groonga"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { groonga = null;}; "harp" = callPackage @@ -52462,6 +53899,7 @@ self: { homepage = "http://code.haskell.org/harpy/"; description = "Runtime code generation for x86 machine code"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "has" = callPackage @@ -52476,6 +53914,7 @@ self: { homepage = "http://github.com/nonowarn/has"; description = "Entity based records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "has-th" = callPackage @@ -52488,6 +53927,7 @@ self: { homepage = "http://github.com/chrisdone/has-th"; description = "Template Haskell function for Has records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascal" = callPackage @@ -52503,6 +53943,7 @@ self: { homepage = "http://darcsden.com/mekeor/hascal"; description = "A minimalistic but extensible and precise calculator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat" = callPackage @@ -52522,6 +53963,7 @@ self: { jailbreak = true; description = "Hascat Web Server"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-lib" = callPackage @@ -52540,6 +53982,7 @@ self: { jailbreak = true; description = "Hascat Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-setup" = callPackage @@ -52557,6 +54000,7 @@ self: { ]; description = "Hascat Installation helper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-system" = callPackage @@ -52574,6 +54018,7 @@ self: { jailbreak = true; description = "Hascat System Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hash" = callPackage @@ -52594,6 +54039,7 @@ self: { homepage = "http://github.com/analytics/hash/"; description = "Hashing tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashable" = callPackage @@ -52649,6 +54095,7 @@ self: { homepage = "https://github.com/wowus/hashable-generics"; description = "Automatically generates Hashable instances with GHC.Generics."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashed-storage" = callPackage @@ -52735,6 +54182,7 @@ self: { homepage = "http://huygens.functor.nl/hasim/"; description = "Process-Based Discrete Event Simulation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask" = callPackage @@ -52752,6 +54200,7 @@ self: { homepage = "http://github.com/ekmett/hask"; description = "Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask-home" = callPackage @@ -52771,6 +54220,7 @@ self: { homepage = "http://gregheartsfield.com/hask-home"; description = "Generate homepages for cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskades" = callPackage @@ -52808,6 +54258,7 @@ self: { homepage = "http://github.com/cosbynator/haskakafka"; description = "Kafka bindings for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { rdkafka = null;}; "haskanoid" = callPackage @@ -52828,6 +54279,7 @@ self: { homepage = "http://github.com/ivanperez-keera/haskanoid"; description = "A breakout game written in Yampa using SDL"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskarrow" = callPackage @@ -52845,6 +54297,7 @@ self: { ]; description = "A dialect of haskell with order of execution based on dependency resolution"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskbot-core" = callPackage @@ -52893,6 +54346,7 @@ self: { homepage = "https://github.com/maurotrb/haskdeep"; description = "Computes and audits file hashes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskdogs" = callPackage @@ -52926,6 +54380,7 @@ self: { homepage = "http://www.korgwal.com/haskeem/"; description = "A small scheme interpreter"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskeline_0_7_1_3" = callPackage @@ -52957,6 +54412,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/haskeline-class"; description = "Class interface for working with Haskeline"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-aliyun" = callPackage @@ -52980,6 +54436,7 @@ self: { homepage = "https://github.com/yihuang/haskell-aliyun/"; description = "haskell client of aliyun service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-awk" = callPackage @@ -53010,6 +54467,7 @@ self: { jailbreak = true; description = "Transform text from the command-line using Haskell expressions"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-bcrypt" = callPackage @@ -53022,6 +54480,7 @@ self: { homepage = "http://www.github.com/zbskii/haskell-bcrypt"; description = "A bcrypt implementation for haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-brainfuck" = callPackage @@ -53041,6 +54500,7 @@ self: { jailbreak = true; description = "BrainFuck interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-cnc" = callPackage @@ -53061,6 +54521,7 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-coffee" = callPackage @@ -53120,6 +54581,7 @@ self: { homepage = "http://github.com/chrisdone/haskell-docs"; description = "A program to find and display the docs and type of a name"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-formatter" = callPackage @@ -53146,6 +54608,7 @@ self: { homepage = "https://github.com/evolutics/haskell-formatter"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-ftp" = callPackage @@ -53169,6 +54632,7 @@ self: { homepage = "https://github.com/yihuang/haskell-ftp"; description = "A Haskell ftp server with configurable backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-generate" = callPackage @@ -53228,7 +54692,7 @@ self: { "haskell-mpi" = callPackage ({ mkDerivation, array, base, bytestring, c2hs, cereal - , extensible-exceptions, mpi + , extensible-exceptions, openmpi }: mkDerivation { pname = "haskell-mpi"; @@ -53240,11 +54704,12 @@ self: { array base bytestring cereal extensible-exceptions ]; buildTools = [ c2hs ]; - extraLibraries = [ mpi ]; + extraLibraries = [ openmpi ]; homepage = "http://github.com/bjpop/haskell-mpi"; description = "Distributed parallel programming in Haskell using MPI"; license = stdenv.lib.licenses.bsd3; - }) { mpi = null;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) { inherit (pkgs) openmpi;}; "haskell-names" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers @@ -53301,6 +54766,7 @@ self: { homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-openflow" = callPackage @@ -53314,6 +54780,7 @@ self: { homepage = "https://github.com/brooksbp/haskell-openflow"; description = "OpenFlow protocol in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-packages" = callPackage @@ -53354,6 +54821,7 @@ self: { homepage = "http://michaeldadams.org/projects/haskell-pdf-presenter/"; description = "Tool for presenting PDF-based presentations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-platform-test" = callPackage @@ -53384,6 +54852,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/haskell-platform-test"; description = "A test system for the Haskell Platform environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-plot" = callPackage @@ -53401,6 +54870,7 @@ self: { homepage = "https://github.com/kaizhang/haskell-plot"; description = "A library for generating 2D plots painlessly"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-qrencode" = callPackage @@ -53430,6 +54900,7 @@ self: { ]; description = "Reflect Haskell types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-rules" = callPackage @@ -53441,6 +54912,7 @@ self: { buildDepends = [ base syb ]; description = "A DSL for expressing natural deduction rules in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-spacegoo" = callPackage @@ -53457,6 +54929,7 @@ self: { ]; description = "Client API for Rocket Scissor Spacegoo"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-src" = callPackage @@ -53537,6 +55010,7 @@ self: { jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-token-utils" = callPackage @@ -53561,6 +55035,7 @@ self: { homepage = "https://github.com/alanz/haskell-token-utils"; description = "Utilities to tie up tokens to an AST"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-type-exts" = callPackage @@ -53573,6 +55048,7 @@ self: { homepage = "http://code.haskell.org/haskell-type-exts"; description = "A type checker for Haskell/haskell-src-exts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-typescript" = callPackage @@ -53597,6 +55073,7 @@ self: { homepage = "https://github.com/PeterScott/haskell-tyrant"; description = "Haskell implementation of the Tokyo Tyrant binary protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-updater" = callPackage @@ -53634,6 +55111,7 @@ self: { homepage = "http://patch-tag.com/r/adept/haskell-xmpp/home"; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell2010_1_1_2_0" = callPackage @@ -53789,6 +55267,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the dynamically loaded drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-flat" = callPackage @@ -53842,6 +55321,7 @@ self: { jailbreak = true; description = "HaskellDB support for the HDBC MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hdbc-odbc" = callPackage @@ -53910,6 +55390,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-mysql" = callPackage @@ -53929,6 +55410,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-odbc" = callPackage @@ -53948,6 +55430,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL ODBC driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-oracle" = callPackage @@ -53987,6 +55470,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-sqlite" = callPackage @@ -54026,6 +55510,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL SQLite3 driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-th" = callPackage @@ -54050,6 +55535,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for WXHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskellscrabble" = callPackage @@ -54074,6 +55560,7 @@ self: { homepage = "http://www.github.com/happy0/haskellscrabble"; description = "A scrabble library capturing the core game logic of scrabble"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelm" = callPackage @@ -54102,6 +55589,7 @@ self: { homepage = "http://github.com/JoeyEremondi/haskelm"; description = "Elm to Haskell translation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskgame" = callPackage @@ -54114,6 +55602,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HaskGame"; description = "Haskell game library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskheap" = callPackage @@ -54132,6 +55621,7 @@ self: { homepage = "https://github.com/Raynes/haskheap"; description = "Haskell bindings to refheap"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskhol-core" = callPackage @@ -54148,6 +55638,7 @@ self: { homepage = "haskhol.org"; description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskintex" = callPackage @@ -54185,6 +55676,7 @@ self: { jailbreak = true; description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin" = callPackage @@ -54333,6 +55825,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-wallet"; description = "Implementation of a Bitcoin hierarchical deterministric wallet (BIP32)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon" = callPackage @@ -54350,6 +55843,7 @@ self: { ]; description = "Web Application Abstraction"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-httpspec" = callPackage @@ -54365,6 +55859,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-salvia" = callPackage @@ -54382,6 +55877,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore" = callPackage @@ -54444,6 +55940,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskore back-end for SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-synthesizer" = callPackage @@ -54465,6 +55962,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Music rendering coded in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-vintage" = callPackage @@ -54508,6 +56006,7 @@ self: { buildDepends = [ base mtl old-time QuickCheck time wtk ]; description = "Loan calculator engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasloGUI" = callPackage @@ -54526,6 +56025,7 @@ self: { ]; description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasparql-client" = callPackage @@ -54538,6 +56038,7 @@ self: { homepage = "https://github.com/lhpaladin/HaSparql-Client"; description = "This package enables to write SPARQL queries to remote endpoints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haspell" = callPackage @@ -54575,6 +56076,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql"; description = "A minimalistic general high level API for relational databases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-backend" = callPackage @@ -54592,6 +56094,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-backend"; description = "API for backends of \"hasql\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-postgres" = callPackage @@ -54621,6 +56124,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres"; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-postgres-options" = callPackage @@ -54637,6 +56141,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres-options"; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hastache" = callPackage @@ -54677,6 +56182,7 @@ self: { homepage = "https://github.com/proger/hastache-aeson"; description = "render hastache templates using aeson values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haste" = callPackage @@ -54744,6 +56250,7 @@ self: { homepage = "https://github.com/agocorona/haste-perch"; description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hat" = callPackage @@ -54764,6 +56271,7 @@ self: { homepage = "http://projects.haskell.org/hat/"; description = "The Haskell tracer, generating and viewing Haskell execution traces"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hatex-guide" = callPackage @@ -54780,6 +56288,7 @@ self: { ]; description = "HaTeX User's Guide"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hath" = callPackage @@ -54843,6 +56352,7 @@ self: { homepage = "http://d.hatena.ne.jp/xanxys/20100321/1269137834"; description = "A twitter client for GTK+. Beta version."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxl" = callPackage @@ -54912,6 +56422,7 @@ self: { homepage = "https://github.com/joelteon/haxparse"; description = "Readable HaxBall replays"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxr" = callPackage @@ -54963,6 +56474,7 @@ self: { homepage = "http://github.com/achudnov/haxy"; description = "A simple HTTP proxy server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hayland" = callPackage @@ -54984,6 +56496,7 @@ self: { ]; description = "Haskell bindings for the C Wayland library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { wayland-client = null; wayland-cursor = null; wayland-egl = null; wayland-server = null;}; @@ -55023,6 +56536,7 @@ self: { homepage = "http://hback.googlecode.com/"; description = "N-back memory game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbayes" = callPackage @@ -55060,6 +56574,7 @@ self: { homepage = "https://bitbucket.org/bhris/hbb"; description = "Haskell Busy Bee, a backend for text editors"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbcd" = callPackage @@ -55106,6 +56621,7 @@ self: { homepage = "http://www.dockerz.net/software/hbeat.html"; description = "A simple step sequencer GUI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL; inherit (pkgs) SDL_mixer;}; "hblas" = callPackage @@ -55123,6 +56639,7 @@ self: { homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) blas; lapack = null;}; "hblock" = callPackage @@ -55141,6 +56658,7 @@ self: { jailbreak = true; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro" = callPackage @@ -55204,6 +56722,7 @@ self: { homepage = "http://www.bytelabs.org/hburg.html"; description = "Haskell Bottom Up Rewrite Generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcc" = callPackage @@ -55259,6 +56778,7 @@ self: { homepage = "http://github.com/nfjinjing/hcheat/"; description = "A collection of code cheatsheet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hchesslib" = callPackage @@ -55276,6 +56796,7 @@ self: { homepage = "https://github.com/nablaa/hchesslib"; description = "Chess library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcltest" = callPackage @@ -55298,6 +56819,7 @@ self: { homepage = "http://github.com/bennofs/hcltest/"; description = "A testing library for command line applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcron" = callPackage @@ -55316,6 +56838,7 @@ self: { homepage = "http://github.com/tbh/hcron"; description = "A simple job scheduler, which just runs some IO action at a given time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcube" = callPackage @@ -55343,6 +56866,7 @@ self: { homepage = "https://github.com/ivanperez-keera/hcwiid"; description = "Library to interface with the wiimote"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) { bluetooth = null; cwiid = null;}; "hdaemonize" = callPackage @@ -55375,6 +56899,7 @@ self: { homepage = "http://github.com/madhadron/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbc-postgresql-hstore" = callPackage @@ -55446,6 +56971,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-conduit"; description = "Conduit glue for HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-postgresql" = callPackage @@ -55552,6 +57078,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hdf"; description = "HDF: Uniform Rate Audio Signal Processing in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdigest" = callPackage @@ -55564,6 +57091,7 @@ self: { buildDepends = [ base cgi Crypto network parsec random time ]; description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdirect" = callPackage @@ -55579,6 +57107,7 @@ self: { homepage = "http://www.haskell.org/hdirect/"; description = "An IDL compiler for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdis86" = callPackage @@ -55591,6 +57120,7 @@ self: { homepage = "https://github.com/kmcallister/hdis86"; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdiscount" = callPackage @@ -55605,6 +57135,7 @@ self: { homepage = "https://github.com/jamwt/hdiscount"; description = "Haskell bindings to the Discount markdown library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { markdown = null;}; "hdm" = callPackage @@ -55618,6 +57149,7 @@ self: { buildDepends = [ base directory process unix vty ]; description = "a small display manager"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdocs" = callPackage @@ -55750,6 +57282,7 @@ self: { buildDepends = [ base cereal crypto-api hF2 ]; description = "Elliptic Curve Cryptography for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hedis" = callPackage @@ -55887,6 +57420,7 @@ self: { ]; description = "Use JSON directly from Heist templates"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "heist-async" = callPackage @@ -55921,6 +57455,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { newrelic-collector-client = null; newrelic-common = null; newrelic-transaction = null;}; @@ -55940,6 +57475,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for wai"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "helisp" = callPackage @@ -55996,6 +57532,7 @@ self: { ]; description = "A Haskell shell based on shell-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellage" = callPackage @@ -56016,6 +57553,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hellage"; description = "Distributed hackage mirror"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellnet" = callPackage @@ -56038,6 +57576,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hspawn"; description = "Simple, distributed, anonymous data sharing network"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hello" = callPackage @@ -56076,6 +57615,7 @@ self: { homepage = "http://github.com/switchface/helm"; description = "A functionally reactive game engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "help-esb" = callPackage @@ -56110,6 +57650,7 @@ self: { ]; description = "A module music mixer and player"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hemkay-core" = callPackage @@ -56147,6 +57688,7 @@ self: { homepage = "https://github.com/nh2/haskell-hemokit"; description = "Haskell port of the Emokit EEG project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hen" = callPackage @@ -56167,6 +57709,7 @@ self: { homepage = "https://github.com/selectel/hen"; description = "Haskell bindings to Xen hypervisor interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { xenctrl = null;}; "henet" = callPackage @@ -56179,6 +57722,7 @@ self: { buildDepends = [ base bitset bytestring network typesafe-endian ]; description = "Bindings and high level interface for to ENet v1.3.9"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hepevt" = callPackage @@ -56202,6 +57746,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A lexer for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer-parsec" = callPackage @@ -56213,6 +57758,7 @@ self: { buildDepends = [ base her-lexer parsec transformers ]; description = "Parsec frontend to \"her-lexer\" for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herbalizer" = callPackage @@ -56296,6 +57842,7 @@ self: { ]; description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "heroku" = callPackage @@ -56309,6 +57856,7 @@ self: { homepage = "https://github.com/gregwebs/haskell-heroku"; description = "helpers for deploying to Heroku"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone" = callPackage @@ -56378,6 +57926,7 @@ self: { jailbreak = true; description = "Haskell's embedded SQL"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hetero-map" = callPackage @@ -56405,6 +57954,7 @@ self: { homepage = "http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/Hetris/"; description = "Text Tetris"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { curses = null;}; "heukarya" = callPackage @@ -56418,6 +57968,7 @@ self: { homepage = "https://github.com/t3476/heukarya"; description = "A genetic programming based on tree structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa" = callPackage @@ -56431,6 +57982,7 @@ self: { buildDepends = [ base bytestring cairo filepath haskell98 ]; description = "Genetic Mona Lisa problem in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa-dph" = callPackage @@ -56448,6 +58000,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hex" = callPackage @@ -56519,6 +58072,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hexpat/"; description = "Chunked XML parsing using iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-lens" = callPackage @@ -56569,6 +58123,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-tagsoup" = callPackage @@ -56609,6 +58164,7 @@ self: { ]; description = "Hexadecimal ByteString literals, with placeholders that bind variables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfann" = callPackage @@ -56624,6 +58180,7 @@ self: { pkgconfigDepends = [ fann ]; description = "Haskell binding to the FANN library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { doublefann = null; fann = null;}; "hfd" = callPackage @@ -56643,6 +58200,7 @@ self: { jailbreak = true; description = "Flash debugger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfiar" = callPackage @@ -56658,6 +58216,7 @@ self: { homepage = "http://github.com/elbrujohalcon/hfiar"; description = "Four in a Row in Haskell!!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hflags" = callPackage @@ -56732,6 +58291,7 @@ self: { homepage = "http://github.com/luite/hfsevents"; description = "File/folder watching for OS X"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfusion" = callPackage @@ -56762,6 +58322,7 @@ self: { ]; description = "Tools to help manage Debian packages with Mercurial"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgal" = callPackage @@ -56784,6 +58345,7 @@ self: { buildDepends = [ array base haskell98 mtl ]; description = "Haskell Genetic Algorithm Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgdbmi" = callPackage @@ -56818,6 +58380,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php"; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometric" = callPackage @@ -56830,6 +58393,7 @@ self: { homepage = "ftp://ftp.cs.man.ac.uk/pub/toby/gpc/"; description = "A geometric library with bindings to GPC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometry" = callPackage @@ -56881,6 +58445,7 @@ self: { homepage = "https://github.com/noteed/hgithub"; description = "Haskell bindings to the GitHub API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgl-example" = callPackage @@ -56915,6 +58480,7 @@ self: { homepage = "http://github.com/polux/hgom"; description = "An haskell port of the java version of gom"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgopher" = callPackage @@ -56941,6 +58507,7 @@ self: { homepage = "http://www.harphttp.org"; description = "Binding to libharp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { harp = null;}; "hi" = callPackage @@ -56986,6 +58553,7 @@ self: { homepage = "http://hiccup.googlecode.com/"; description = "Relatively efficient Tcl interpreter with support for basic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hichi" = callPackage @@ -57002,17 +58570,17 @@ self: { }) {}; "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq-generics, udev }: + ({ mkDerivation, base, bytestring, deepseq-generics, systemd }: mkDerivation { pname = "hidapi"; version = "0.1.3"; sha256 = "0ql6avpwi2m89rrglj9zk3fyi8vl91xswagqv8h24b2xgm7pw5i0"; buildDepends = [ base bytestring deepseq-generics ]; - extraLibraries = [ udev ]; + extraLibraries = [ systemd ]; homepage = "https://github.com/vahokif/haskell-hidapi"; description = "Haskell bindings to HIDAPI"; license = stdenv.lib.licenses.mit; - }) { udev = null;}; + }) { inherit (pkgs) systemd;}; "hieraclus" = callPackage ({ mkDerivation, base, containers, HUnit, mtl, multiset }: @@ -57023,6 +58591,7 @@ self: { buildDepends = [ base containers HUnit mtl multiset ]; description = "Automated clustering of arbitrary elements in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-clustering" = callPackage @@ -57036,6 +58605,7 @@ self: { testDepends = [ base hspec HUnit QuickCheck ]; description = "Fast algorithms for single, average/UPGMA and complete linkage clustering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-clustering-diagrams" = callPackage @@ -57054,6 +58624,7 @@ self: { jailbreak = true; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-exceptions" = callPackage @@ -57081,6 +58652,7 @@ self: { homepage = "http://github.com/paolino/hiernotify"; description = "Notification library for a filesystem hierarchy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highWaterMark" = callPackage @@ -57095,6 +58667,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Memory usage statistics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "higher-leveldb" = callPackage @@ -57129,6 +58702,7 @@ self: { buildDepends = [ base ]; description = "Some higher order functions for Bool and []"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highlight-versions" = callPackage @@ -57203,6 +58777,7 @@ self: { homepage = "http://www.bubblycloud.com/hills/"; description = "Generate STL models from SRTM elevation data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "himerge" = callPackage @@ -57242,6 +58817,7 @@ self: { homepage = "http://github.com/Fuuzetsu/himg"; description = "Simple gtk2hs image viewer. Point it at an image and fire away."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "himpy" = callPackage @@ -57265,6 +58841,7 @@ self: { homepage = "https://github.com/pyr/himpy"; description = "multithreaded snmp poller for riemann"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hindent" = callPackage @@ -57313,6 +58890,7 @@ self: { buildDepends = [ base hinduce-missingh layout ]; description = "Interface and utilities for classifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-classifier-decisiontree" = callPackage @@ -57328,6 +58906,7 @@ self: { ]; description = "Decision Tree Classifiers for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-examples" = callPackage @@ -57346,6 +58925,7 @@ self: { ]; description = "Example data for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-missingh" = callPackage @@ -57456,6 +59036,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Space Invaders"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinze-streams" = callPackage @@ -57468,6 +59049,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hinze-streams"; description = "Streams and Unique Fixed Points"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipe" = callPackage @@ -57516,6 +59098,7 @@ self: { ]; description = "IRC client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hirt" = callPackage @@ -57538,6 +59121,7 @@ self: { homepage = "https://people.ksp.sk/~ivan/hirt"; description = "Calculates IRT 2PL and 3PL models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hissmetrics" = callPackage @@ -57555,6 +59139,7 @@ self: { homepage = "https://github.com/prowdsponsor/hissmetrics"; description = "Unofficial API bindings to KISSmetrics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl" = callPackage @@ -57577,6 +59162,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/umbrella"; description = "Umbrella package for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-dawg" = callPackage @@ -57638,6 +59224,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/lmf"; description = "LMF parsing for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-transliter" = callPackage @@ -57720,6 +59307,7 @@ self: { jailbreak = true; description = "Extract the interesting bits from shell history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hit" = callPackage @@ -57775,6 +59363,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Libraries_and_tools/HJS"; description = "JavaScript Parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hjsmin" = callPackage @@ -57861,6 +59450,7 @@ self: { homepage = "http://people.ksp.sk/~ivan/hlbfgsb"; description = "Haskell binding to L-BFGS-B version 3.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) gfortran;}; "hlcm" = callPackage @@ -57880,6 +59470,7 @@ self: { homepage = "http://membres-liglab.imag.fr/termier/HLCM/hlcm.html"; description = "Fast algorithm for mining closed frequent itemsets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger" = callPackage @@ -57932,6 +59523,7 @@ self: { homepage = "http://hledger.org"; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-diff" = callPackage @@ -57947,6 +59539,7 @@ self: { homepage = "https://github.com/gebner/hledger-diff"; description = "Compares the transactions in two ledger files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-interest" = callPackage @@ -57975,6 +59568,7 @@ self: { jailbreak = true; description = "computes the internal rate of return of an investment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-lib" = callPackage @@ -58021,6 +59615,7 @@ self: { homepage = "http://hledger.org"; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-web" = callPackage @@ -58063,6 +59658,7 @@ self: { homepage = "http://github.com/aycanirican/hlibev"; description = "FFI interface to libev"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { ev = null;}; "hlibfam" = callPackage @@ -58075,6 +59671,7 @@ self: { extraLibraries = [ fam ]; description = "FFI interface to libFAM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) fam;}; "hlibgit2" = callPackage @@ -58121,6 +59718,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlongurl" = callPackage @@ -58180,6 +59778,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/hmark"; description = "A tool and library for Markov chains based text generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmarkup" = callPackage @@ -58191,6 +59790,7 @@ self: { buildDepends = [ base containers mtl network parsec xhtml ]; description = "Simple wikitext-like markup format implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix" = callPackage @@ -58223,6 +59823,7 @@ self: { homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { lapack = null;}; "hmatrix-csv" = callPackage @@ -58274,6 +59875,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-gsl-stats"; description = "GSL Statistics interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-mmap" = callPackage @@ -58313,6 +59915,7 @@ self: { jailbreak = true; description = "Bindings to the QuadProg++ quadratic programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { QuadProgpp = null;}; "hmatrix-repa" = callPackage @@ -58355,6 +59958,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-static/"; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-svdlibc" = callPackage @@ -58386,6 +59990,7 @@ self: { homepage = "http://github.com/reinerp/hmatrix-syntax"; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-tests" = callPackage @@ -58439,6 +60044,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hmeap-utils"; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmemdb" = callPackage @@ -58466,6 +60072,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Binding to the OS level MIDI services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmk" = callPackage @@ -58523,6 +60130,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { curses = null;}; "hmpfr" = callPackage @@ -58592,6 +60200,7 @@ self: { jailbreak = true; description = "Interpreter for the MUMPS langugae"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnetcdf" = callPackage @@ -58637,6 +60246,7 @@ self: { homepage = "http://github.com/alpmestan/hnn"; description = "A reasonably fast and simple neural network library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnop" = callPackage @@ -58666,6 +60276,7 @@ self: { ]; description = "A Haskell implementation of OAuth 1.0a protocol."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoauth2" = callPackage @@ -58709,6 +60320,7 @@ self: { homepage = "http://svalaskevicius.github.io/hob/"; description = "A source code editor aiming for the convenience of use"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hobbes" = callPackage @@ -58745,6 +60357,7 @@ self: { jailbreak = true; description = "A library for canonically representing terms with binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoe" = callPackage @@ -58760,6 +60373,7 @@ self: { homepage = "http://github.com/tanakh/hoe"; description = "Haskell One-liner Evaluator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hofix-mtl" = callPackage @@ -58772,6 +60386,7 @@ self: { jailbreak = true; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hog" = callPackage @@ -58790,6 +60405,7 @@ self: { jailbreak = true; description = "Simple IRC logger bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hogg" = callPackage @@ -58823,6 +60439,7 @@ self: { homepage = "http://anttisalonen.github.com/hogre"; description = "Haskell binding to a subset of OGRE"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { OGRE = null; OgreMain = null; cgen-hs = null; grgen = null;}; @@ -58839,6 +60456,7 @@ self: { homepage = "http://github.com/anttisalonen/hogre-examples"; description = "Examples for using Hogre"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { OgreMain = null;}; "hois" = callPackage @@ -58854,6 +60472,7 @@ self: { jailbreak = true; description = "OIS bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { OIS = null;}; "hoist-error" = callPackage @@ -58899,6 +60518,7 @@ self: { sha256 = "13f6f647ykssqgdqw4fp7gnr2ardxbcn41ksgs15v5dx1n1xvan1"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "holy-project" = callPackage @@ -58939,6 +60559,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/homeomorphic/"; description = "Homeomorphic Embedding Test"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage" = callPackage @@ -58950,6 +60571,7 @@ self: { buildDepends = [ array base directory haskell98 random time ]; description = "Haskell Offline Music Manipulation And Generation EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage-ds" = callPackage @@ -58963,6 +60585,7 @@ self: { homepage = "substitut-fuer-feinmotorik/projects/haskellommage"; description = "DirectSound extension (Windows) for the Hommage sound library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "honi" = callPackage @@ -59051,6 +60674,7 @@ self: { jailbreak = true; description = "A small, toy roguelike"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle" = callPackage @@ -59070,6 +60694,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Executable for hoodle"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-builder" = callPackage @@ -59118,6 +60743,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Core library for hoodle"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXi;}; "hoodle-extra" = callPackage @@ -59144,6 +60770,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "extra hoodle tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-parser" = callPackage @@ -59187,6 +60814,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "publish hoodle files as a static web site"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-render" = callPackage @@ -59206,6 +60834,7 @@ self: { ]; description = "Hoodle file renderer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-types" = callPackage @@ -59319,6 +60948,7 @@ self: { homepage = "https://bitbucket.org/pvdbrand/hoovie"; description = "Haskell Media Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hopencc" = callPackage @@ -59337,6 +60967,7 @@ self: { homepage = "https://github.com/MnO2/hopencc"; description = "Haskell binding to libopencc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { opencc = null;}; "hopencl" = callPackage @@ -59357,6 +60988,7 @@ self: { homepage = "https://github.com/merijn/hopencl"; description = "Haskell bindings for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { OpenCL = null;}; "hopenpgp-tools" = callPackage @@ -59426,6 +61058,7 @@ self: { homepage = "https://github.com/imperialhopfield/hopfield"; description = "Hopfield Networks, Boltzmann Machines and Clusters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { MagickCore = null; MagickWand = null;}; "hopfield-networks" = callPackage @@ -59479,6 +61112,7 @@ self: { homepage = "http://github.com/valis/hoq"; description = "A language based on homotopy type theory with an interval type"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hosc" = callPackage @@ -59502,6 +61136,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hosc"; description = "Haskell Open Sound Control"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hosc-json" = callPackage @@ -59519,6 +61154,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hosc-json"; description = "Haskell Open Sound Control JSON Serialisation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hosc-utils" = callPackage @@ -59600,6 +61236,7 @@ self: { homepage = "http://github.com/luqui/hothasktags"; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hotswap" = callPackage @@ -59689,6 +61326,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "A utility to visualise and compare heap profiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2html" = callPackage @@ -59778,6 +61416,7 @@ self: { homepage = "http://haskell.hpage.com"; description = "A scrapbook for Haskell developers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpapi" = callPackage @@ -59790,6 +61429,7 @@ self: { extraLibraries = [ papi ]; description = "Binding for the PAPI library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { papi = null;}; "hpaste" = callPackage @@ -59819,6 +61459,7 @@ self: { homepage = "http://hpaste.org/"; description = "Haskell paste web site"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpasteit" = callPackage @@ -59840,6 +61481,7 @@ self: { homepage = "http://github.com/parcs/hpasteit"; description = "A command-line client for hpaste.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpc_0_6_0_1" = callPackage @@ -59872,6 +61514,7 @@ self: { homepage = "https://github.com/guillaume-nargeot/hpc-coveralls"; description = "Coveralls.io support for Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpc-strobe" = callPackage @@ -59901,6 +61544,7 @@ self: { ]; description = "Tracer with AJAX interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hplayground" = callPackage @@ -59918,6 +61562,7 @@ self: { homepage = "https://github.com/agocorona/hplayground"; description = "monadic, reactive Formlets running in the Web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hplaylist" = callPackage @@ -59931,6 +61576,7 @@ self: { buildDepends = [ base directory filepath process ]; description = "Application for managing playlist files on a music player"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpodder" = callPackage @@ -59952,6 +61598,7 @@ self: { homepage = "http://software.complete.org/hpodder"; description = "Podcast Aggregator (downloader)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpqtypes" = callPackage @@ -59976,6 +61623,7 @@ self: { jailbreak = true; description = "Haskell bindings to libpqtypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) postgresql;}; "hprotoc" = callPackage @@ -60022,6 +61670,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps" = callPackage @@ -60051,6 +61700,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hps-cairo"; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps-kmeans" = callPackage @@ -60091,6 +61741,7 @@ self: { homepage = "https://github.com/davidlazar/hpygments"; description = "Highlight source code using Pygments"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpylos" = callPackage @@ -60105,6 +61756,7 @@ self: { homepage = "http://sourceforge.net/projects/hpylos/"; description = "AI of Pylos game with GLUT interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpyrg" = callPackage @@ -60141,6 +61793,7 @@ self: { homepage = "http://github.com/paulrzcz/hquantlib.git"; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hquery" = callPackage @@ -60171,6 +61824,7 @@ self: { buildDepends = [ base HCL NonEmpty ]; description = "Basic utility for ranking a list of items"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hricket" = callPackage @@ -60203,6 +61857,7 @@ self: { testDepends = [ aeson attoparsec base QuickCheck text vector ]; description = "Embed Ruby in your Haskell program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-GeoIP" = callPackage @@ -60216,6 +61871,7 @@ self: { homepage = "http://github.com/ozataman/hs-GeoIP"; description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { GeoIP = null;}; "hs-bibutils" = callPackage @@ -60289,6 +61945,7 @@ self: { ]; description = "Example Monte Carlo simulations implemented with Carbon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-cdb" = callPackage @@ -60305,6 +61962,7 @@ self: { homepage = "http://github.com/adamsmasher/hs-cdb"; description = "A library for reading CDB (Constant Database) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-dotnet" = callPackage @@ -60317,6 +61975,7 @@ self: { extraLibraries = [ ole32 oleaut32 ]; description = "Pragmatic .NET interop for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { ole32 = null; oleaut32 = null;}; "hs-excelx" = callPackage @@ -60346,6 +62005,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/hs-ffmpeg"; description = "Bindings to FFMPEG library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-fltk" = callPackage @@ -60359,6 +62019,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hs-fltk/"; description = "Binding to GUI library FLTK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { fltk = null; fltk_images = null;}; "hs-gchart" = callPackage @@ -60424,6 +62085,7 @@ self: { ]; description = "Java .class files assembler/disassembler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-json-rpc" = callPackage @@ -60436,6 +62098,7 @@ self: { homepage = "http://patch-tag.com/r/Azel/hs-json-rpc"; description = "JSON-RPC client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-logo" = callPackage @@ -60463,6 +62126,7 @@ self: { homepage = "http://deepakjois.github.com/hs-logo"; description = "Logo interpreter written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-mesos" = callPackage @@ -60483,6 +62147,7 @@ self: { ]; extraLibraries = [ mesos protobuf ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) mesos; inherit (pkgs) protobuf;}; "hs-nombre-generator" = callPackage @@ -60513,6 +62178,7 @@ self: { ]; description = "Programmer's Mine Sweeper in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-php-session" = callPackage @@ -60559,6 +62225,7 @@ self: { homepage = "https://github.com/tazjin/hs-pkpass"; description = "A library for Passbook pass creation & signing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-scrape" = callPackage @@ -60596,6 +62263,7 @@ self: { ]; description = "Haskell binding to the Twitter API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-twitterarchiver" = callPackage @@ -60610,6 +62278,7 @@ self: { homepage = "https://github.com/deepakjois/hs-twitterarchiver"; description = "Commandline Twitter feed archiver"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-vcard" = callPackage @@ -60661,6 +62330,7 @@ self: { homepage = "http://www.xanxys.net/hs2bf/"; description = "Haskell to Brainfuck compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2dot" = callPackage @@ -60680,6 +62350,7 @@ self: { homepage = "http://www.github.com/finnsson/hs2graphviz"; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsConfigure" = callPackage @@ -60709,6 +62380,7 @@ self: { jailbreak = true; description = "Sqlite3 bindings"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsXenCtrl" = callPackage @@ -60723,6 +62395,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HsXenCtrl"; description = "FFI bindings to the Xen Control library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { xenctrl = null;}; "hsay" = callPackage @@ -60771,6 +62444,7 @@ self: { ]; description = "simple utility for rolling filesystem backups"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsbencher" = callPackage @@ -60846,6 +62520,7 @@ self: { jailbreak = true; description = "A preprocessor that helps with writing Haskell bindings to C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3" = callPackage @@ -60865,6 +62540,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3"; description = "Haskell SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-auditor" = callPackage @@ -60878,6 +62554,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-auditor"; description = "Haskell SuperCollider Auditor"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-cairo" = callPackage @@ -60891,6 +62568,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-cairo"; description = "haskell supercollider cairo drawing"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-data" = callPackage @@ -60908,6 +62586,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-data"; description = "haskell supercollider data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-db" = callPackage @@ -60920,6 +62599,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-db"; description = "Haskell SuperCollider Unit Generator Database"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-dot" = callPackage @@ -60932,6 +62612,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-dot"; description = "haskell supercollider graph drawing"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-forth" = callPackage @@ -60951,6 +62632,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-forth"; description = "FORTH SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-graphs" = callPackage @@ -60976,6 +62658,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-graphs"; description = "Haskell SuperCollider Graphs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lang" = callPackage @@ -60996,6 +62679,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lang"; description = "Haskell SuperCollider Language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lisp" = callPackage @@ -61015,6 +62699,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lisp"; description = "LISP SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-plot" = callPackage @@ -61032,6 +62717,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-plot"; description = "Haskell SuperCollider Plotting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-process" = callPackage @@ -61052,6 +62738,7 @@ self: { homepage = "https://github.com/kaoskorobase/hsc3-process"; description = "Create and control scsynth processes"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-rec" = callPackage @@ -61065,6 +62752,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-rec"; description = "Haskell SuperCollider Record Variants"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-rw" = callPackage @@ -61109,6 +62797,7 @@ self: { homepage = "https://github.com/kaoskorobase/hsc3-server"; description = "SuperCollider server resource management and synchronization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-sf" = callPackage @@ -61121,6 +62810,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-sf"; description = "Haskell SuperCollider SoundFile"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-sf-hsndfile" = callPackage @@ -61137,6 +62827,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-sf-hsndfile"; description = "Haskell SuperCollider SoundFile"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-unsafe" = callPackage @@ -61150,6 +62841,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe"; description = "Unsafe Haskell SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-utils" = callPackage @@ -61169,6 +62861,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-utils"; description = "Haskell SuperCollider Utilities"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscamwire" = callPackage @@ -61184,6 +62877,7 @@ self: { jailbreak = true; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { camwire_1394 = null; dc1394_control = null; raw1394 = null;}; @@ -61202,6 +62896,7 @@ self: { homepage = "https://github.com/necrobious/hscassandra"; description = "cassandra database interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscd" = callPackage @@ -61231,6 +62926,7 @@ self: { homepage = "http://haskell.org/gtk2hs/archives/2006/01/26/cairo-eye-candy/"; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscolour" = callPackage @@ -61293,6 +62989,7 @@ self: { homepage = "https://github.com/skogsbaer/hscurses"; description = "NCurses bindings for Haskell"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscurses-fish-ex" = callPackage @@ -61307,6 +63004,7 @@ self: { homepage = "http://ui3.info/darcs/hscurses-fish-ex/"; description = "hscurses swimming fish example"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsdev" = callPackage @@ -61347,6 +63045,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsdif"; description = "Haskell SDIF"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsdip" = callPackage @@ -61465,6 +63164,7 @@ self: { homepage = "https://github.com/tmhedberg/hsenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hserv" = callPackage @@ -61511,6 +63211,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A small and ugly library that emulates the output of the puppet facter program"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsfcsh" = callPackage @@ -61552,6 +63253,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { gcrypt = null; inherit (pkgs) gnutls;}; "hsgnutls-yj" = callPackage @@ -61565,6 +63267,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { gcrypt = null; inherit (pkgs) gnutls;}; "hsgsom" = callPackage @@ -61576,6 +63279,7 @@ self: { buildDepends = [ base containers random stm time ]; description = "An implementation of the GSOM clustering algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsgtd" = callPackage @@ -61624,6 +63328,7 @@ self: { homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsimport" = callPackage @@ -61677,6 +63382,7 @@ self: { buildDepends = [ base Cabal ]; description = "Skeleton for new Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslackbuilder" = callPackage @@ -61703,6 +63409,7 @@ self: { extraLibraries = [ svm ]; description = "A FFI binding to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { svm = null;}; "hslinks" = callPackage @@ -61758,6 +63465,7 @@ self: { homepage = "http://hslogger4j.googlecode.com/"; description = "DEPRECATED hslogger handlers for log4j's XMLLayout"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslogstash" = callPackage @@ -61785,6 +63493,7 @@ self: { homepage = "https://github.com/bartavelle/hslogstash"; description = "A library to work with, or as, a logstash server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslua" = callPackage @@ -61818,6 +63527,7 @@ self: { homepage = "https://github.com/vincentg/hsmagick"; description = "FFI bindings for the GraphicsMagick library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { GraphicsMagick = null; inherit (pkgs) bzip2; freetype2 = null; inherit (pkgs) jasper; inherit (pkgs) lcms; inherit (pkgs) libjpeg; inherit (pkgs) libpng; @@ -61834,6 +63544,7 @@ self: { homepage = "http://code.google.com/p/hsmtpclient/"; description = "Simple SMTP Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile" = callPackage @@ -61860,6 +63571,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.StorableVector interface)"; license = stdenv.lib.licenses.lgpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile-vector" = callPackage @@ -61892,6 +63604,7 @@ self: { homepage = "https://github.com/mrdomino/hsnock/"; description = "Nock 5K interpreter"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnoise" = callPackage @@ -61917,6 +63630,7 @@ self: { buildDepends = [ base network pcap ]; description = "a miniature network sniffer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnsq" = callPackage @@ -61952,6 +63666,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/util/"; description = "Libraries to use SNTP protocol and small client/server implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsoptions" = callPackage @@ -61977,6 +63692,7 @@ self: { homepage = "https://github.com/josercruz01/hsoptions"; description = "Haskell library that supports command-line flag processing"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsp" = callPackage @@ -62001,6 +63717,7 @@ self: { homepage = "http://code.google.com/p/hsp"; description = "Facilitates running Haskell Server Pages web pages as CGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsparklines" = callPackage @@ -62034,6 +63751,7 @@ self: { homepage = "https://github.com/robstewart57/hsparql"; description = "A SPARQL query generator and DSL, and a client to query a SPARQL server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspear" = callPackage @@ -62211,6 +63929,7 @@ self: { homepage = "https://github.com/hspec/hspec-expectations#readme"; description = "hspec-expectations with pretty printing on failure"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-experimental" = callPackage @@ -62224,6 +63943,7 @@ self: { jailbreak = true; description = "An experimental DSL for testing on top of Hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-jenkins" = callPackage @@ -62298,6 +64018,7 @@ self: { buildDepends = [ hspec test-shouldbe ]; description = "Convenience wrapper and utilities for hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-smallcheck" = callPackage @@ -62335,6 +64056,7 @@ self: { homepage = "https://github.com/dbp/hspec-snap"; description = "A library for testing with Hspec and the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-test-framework" = callPackage @@ -62380,6 +64102,7 @@ self: { testDepends = [ base hspec test-sandbox ]; description = "Hspec convenience functions for use with test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-wai" = callPackage @@ -62476,6 +64199,7 @@ self: { ]; description = "A client library for the spread toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspresent" = callPackage @@ -62490,6 +64214,7 @@ self: { jailbreak = true; description = "A terminal presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsprocess" = callPackage @@ -62538,6 +64263,7 @@ self: { extraLibraries = [ mysqlclient ]; description = "MySQL driver for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { mysqlclient = null;}; "hsql-odbc" = callPackage @@ -62594,6 +64320,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Haskell binding for Qt Quick"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { Qt5Core = null; Qt5Gui = null; Qt5Qml = null; Qt5Quick = null; Qt5Widgets = null;}; @@ -62613,6 +64340,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-demo-notes" = callPackage @@ -62627,6 +64355,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Sticky notes example program implemented in HsQML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-demo-samples" = callPackage @@ -62642,6 +64371,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML sample programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-morris" = callPackage @@ -62661,6 +64391,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsshellscript" = callPackage @@ -62726,6 +64457,7 @@ self: { homepage = "http://code.haskell.org/hstatistics"; description = "Statistics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstats" = callPackage @@ -62738,6 +64470,7 @@ self: { homepage = "http://github.com/unmarshal/hstats/"; description = "Statistical Computing in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstatsd" = callPackage @@ -62769,6 +64502,7 @@ self: { homepage = "http://bitbucket.org/dave4420/hstest/wiki/Home"; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstidy" = callPackage @@ -62783,6 +64517,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/hstidy"; description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstorchat" = callPackage @@ -62808,6 +64543,7 @@ self: { jailbreak = true; description = "Distributed instant messaging over Tor"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstradeking" = callPackage @@ -62830,6 +64566,7 @@ self: { jailbreak = true; description = "Tradeking API bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstyle" = callPackage @@ -62848,6 +64585,7 @@ self: { jailbreak = true; description = "Checks Haskell source code for style compliance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstzaar" = callPackage @@ -62868,6 +64606,7 @@ self: { homepage = "http://www.dcc.fc.up.pt/~pbv/stuff/hstzaar"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsubconvert" = callPackage @@ -62890,6 +64629,7 @@ self: { homepage = "https://github.com/jwiegley/hsubconvert"; description = "One-time, faithful conversion of Subversion repositories to Git"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hswip" = callPackage @@ -62902,6 +64642,7 @@ self: { extraLibraries = [ ncurses readline swipl ]; description = "embedding prolog in haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) ncurses; inherit (pkgs) readline; swipl = null;}; @@ -62918,6 +64659,7 @@ self: { homepage = "http://patch-tag.com/r/nibro/hsx"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx-jmacro" = callPackage @@ -62934,6 +64676,7 @@ self: { homepage = "http://www.happstack.com/"; description = "hsp+jmacro support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx-xhtml" = callPackage @@ -62946,6 +64689,7 @@ self: { homepage = "http://code.google.com/hsp"; description = "XHTML utilities to use together with HSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx2hs" = callPackage @@ -62966,6 +64710,7 @@ self: { homepage = "http://hub.darcs.net/nibro/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsyscall" = callPackage @@ -62978,6 +64723,7 @@ self: { homepage = "http://github.com/aycanirican/hsyscall"; description = "FFI to syscalls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsyslog" = callPackage @@ -63003,6 +64749,7 @@ self: { extraLibraries = [ com_err zephyr ]; description = "Simple libzephyr bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { com_err = null; zephyr = null;}; "htags" = callPackage @@ -63165,6 +64912,7 @@ self: { homepage = "http://github.com/tanakh/html2hamlet"; description = "HTML to Hamlet converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htodo" = callPackage @@ -63203,6 +64951,7 @@ self: { homepage = "https://github.com/cies/htoml"; description = "Parser for TOML files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htrace" = callPackage @@ -63435,6 +65184,7 @@ self: { homepage = "https://github.com/spl/http-client-request-modifiers"; description = "Convenient monadic HTTP request modifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-streams" = callPackage @@ -63543,6 +65293,7 @@ self: { homepage = "https://github.com/exbb2/http-conduit-browser"; description = "Browser interface to the http-conduit package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-conduit-downloader" = callPackage @@ -63620,6 +65371,7 @@ self: { homepage = "http://github.com/snoyberg/http-enumerator"; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-kit" = callPackage @@ -63670,6 +65422,7 @@ self: { homepage = "http://github.com/zmthy/http-media"; description = "Processing HTTP Content-Type and Accept headers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-monad" = callPackage @@ -63689,6 +65442,7 @@ self: { jailbreak = true; description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-proxy" = callPackage @@ -63711,6 +65465,7 @@ self: { homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-querystring" = callPackage @@ -63771,6 +65526,7 @@ self: { homepage = "http://code.galois.com/"; description = "A library for writing Haskell web servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-shed" = callPackage @@ -63784,6 +65540,7 @@ self: { buildDepends = [ base network ]; description = "A simple websever with an interact style API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-streams" = callPackage @@ -63817,6 +65574,7 @@ self: { homepage = "http://research.operationaldynamics.com/projects/http-streams/"; description = "An HTTP client using io-streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-test" = callPackage @@ -63934,6 +65692,7 @@ self: { homepage = "https://github.com/fmap/https-everywhere-rules"; description = "High-level access to HTTPS Everywhere rulesets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "https-everywhere-rules-raw" = callPackage @@ -63964,6 +65723,7 @@ self: { ]; description = "Specification of HTTP request/response generators and parsers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htune" = callPackage @@ -63978,6 +65738,7 @@ self: { jailbreak = true; description = "harmonic analyser and tuner for musical instruments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htzaar" = callPackage @@ -63993,6 +65754,7 @@ self: { homepage = "http://tomahawkins.org"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hub" = callPackage @@ -64044,6 +65806,7 @@ self: { jailbreak = true; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) ruby;}; "huffman" = callPackage @@ -64072,6 +65835,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Hugs Front-end to Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hulk" = callPackage @@ -64094,6 +65858,7 @@ self: { jailbreak = true; description = "IRC server written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hums" = callPackage @@ -64118,6 +65883,7 @@ self: { jailbreak = true; description = "Haskell UPnP Media Server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunit-gui" = callPackage @@ -64133,6 +65899,7 @@ self: { homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home"; description = "A GUI testrunner for HUnit"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunit-parsec" = callPackage @@ -64158,6 +65925,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "HUnit support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunp" = callPackage @@ -64192,6 +65960,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Extract function names from Windows DLLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "husk-scheme" = callPackage @@ -64247,6 +66016,7 @@ self: { homepage = "http://github.com/markusle/husky/tree/master"; description = "A simple command line calculator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "huzzy" = callPackage @@ -64258,6 +66028,7 @@ self: { buildDepends = [ base easyplot ]; description = "Fuzzy logic library with support for T1, IT2, GT2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hwall-auth-iitk" = callPackage @@ -64314,6 +66085,7 @@ self: { jailbreak = true; description = "Simple Haskell Web Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hx" = callPackage @@ -64344,6 +66116,7 @@ self: { jailbreak = true; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxournal" = callPackage @@ -64370,6 +66143,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "A pen notetaking program written in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt" = callPackage @@ -64407,6 +66181,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-cache" = callPackage @@ -64504,6 +66279,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-http" = callPackage @@ -64632,6 +66408,7 @@ self: { jailbreak = true; description = "Helper functions for HXT"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxweb" = callPackage @@ -64643,6 +66420,7 @@ self: { buildDepends = [ base cgi fastcgi libxml mtl xslt ]; description = "Minimal webframework using fastcgi, libxml2 and libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyahtzee" = callPackage @@ -64693,6 +66471,7 @@ self: { homepage = "http://repos.mine.nu/davve/darcs/hybrid"; description = "A implementation of a type-checker for Lambda-H"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hybrid-vectors" = callPackage @@ -64720,6 +66499,7 @@ self: { homepage = "https://github.com/mruegenberg/hydra-hs"; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { sixense_x64 = null;}; "hydra-print" = callPackage @@ -64749,6 +66529,7 @@ self: { homepage = "https://github.com/rrnewton/hydra-print"; description = "NCurses interface to view multiple ByteString streams in parallel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen" = callPackage @@ -64888,6 +66669,7 @@ self: { homepage = "https://scravy.de/hydrogen-util/"; description = "Hydrogen Tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-version" = callPackage @@ -64919,6 +66701,7 @@ self: { homepage = "http://github.com/tibbe/hyena"; description = "Simple web application server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylolib" = callPackage @@ -64935,6 +66718,7 @@ self: { jailbreak = true; description = "Tools for hybrid logics related programs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylotab" = callPackage @@ -64949,6 +66733,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyloutils" = callPackage @@ -64962,6 +66747,7 @@ self: { buildDepends = [ base containers hylolib mtl uniplate ]; description = "Very small programs for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperdrive" = callPackage @@ -64981,6 +66767,7 @@ self: { jailbreak = true; description = "a fast, trustworthy HTTP(s) server built"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperloglog" = callPackage @@ -65024,6 +66811,7 @@ self: { homepage = "https://github.com/mkscrg/hyperpublic-haskell"; description = "A thin wrapper for the Hyperpublic API"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyphenate" = callPackage @@ -65072,6 +66860,7 @@ self: { homepage = "http://github.com/dgvncsz0f/hzk"; description = "Haskell client library for Apache Zookeeper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { zookeeper_mt = null;}; "hzulip" = callPackage @@ -65144,6 +66933,7 @@ self: { buildDepends = [ base interleavableIO mtl ]; description = "Version of Control.Exception using InterleavableIO."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iban" = callPackage @@ -65190,6 +66980,7 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Feedback services for intelligent tutoring systems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ideas-math" = callPackage @@ -65207,6 +66998,7 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idempotent" = callPackage @@ -65265,6 +67057,7 @@ self: { ]; description = "ID3v2 (tagging standard for MP3 files) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idna" = callPackage @@ -65288,6 +67081,7 @@ self: { jailbreak = true; description = "Converts Unicode hostnames into ASCII"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idris" = callPackage @@ -65345,6 +67139,7 @@ self: { buildDepends = [ base ]; description = "ieee-utils"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ieee-utils-tempfix" = callPackage @@ -65428,6 +67223,7 @@ self: { homepage = "https://github.com/prowdsponsor/ig"; description = "Bindings to Instagram's API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ige-mac-integration" = callPackage @@ -65445,6 +67241,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { ige-mac-integration = null;}; "igraph" = callPackage @@ -65461,6 +67258,7 @@ self: { homepage = "http://giorgidze.github.com/igraph/"; description = "Bindings to the igraph C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { igraph = null;}; "igrf" = callPackage @@ -65528,6 +67326,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell-Display"; description = "IHaskell display instances for Aeson"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-blaze" = callPackage @@ -65563,6 +67362,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for charts types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-diagrams" = callPackage @@ -65581,6 +67381,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for diagram types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-display" = callPackage @@ -65612,6 +67413,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for bytestrings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihttp" = callPackage @@ -65630,6 +67432,7 @@ self: { ]; description = "Incremental HTTP iteratee"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "illuminate" = callPackage @@ -65650,6 +67453,7 @@ self: { homepage = "http://github.com/jgm/illuminate"; description = "A fast syntax highlighting library built with alex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "image-type" = callPackage @@ -65724,6 +67528,7 @@ self: { homepage = "https://bitbucket.org/balta2ar/imagepaste"; description = "Command-line image paste utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imagesize-conduit" = callPackage @@ -65781,6 +67586,7 @@ self: { jailbreak = true; description = "Minimalistic reference manager"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imgurder" = callPackage @@ -65796,6 +67602,7 @@ self: { buildDepends = [ base curl directory haskell98 hxt hxt-xpath url ]; description = "Uploader for Imgur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imm" = callPackage @@ -65860,6 +67667,7 @@ self: { jailbreak = true; description = "Multi-platform parser analyzer and generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "implicit" = callPackage @@ -65883,6 +67691,7 @@ self: { homepage = "https://github.com/colah/ImplicitCAD"; description = "Math-inspired programmatic 2&3D CAD: CSG, bevels, and shells; gcode export.."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "implicit-params" = callPackage @@ -65943,6 +67752,7 @@ self: { homepage = "https://github.com/adamgundry/inch/"; description = "A type-checker for Haskell with integer constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "include-file" = callPackage @@ -66001,6 +67811,7 @@ self: { ]; description = "type classes for incremental updates to data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indentation" = callPackage @@ -66014,6 +67825,7 @@ self: { homepage = "https://bitbucket.org/mdmkolbe/indentation"; description = "Indentation sensitive parsing combinators for Parsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indentparser" = callPackage @@ -66113,6 +67925,7 @@ self: { buildDepends = [ base gtk HDBC HDBC-sqlite3 ]; description = "Indian Language Font Converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indices" = callPackage @@ -66125,6 +67938,7 @@ self: { testDepends = [ base QuickCheck ]; description = "Multi-dimensional statically bounded indices"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infer-upstream" = callPackage @@ -66144,6 +67958,7 @@ self: { homepage = "https://github.com/silky/infer-upstream"; description = "Find the repository from where a given repo was forked"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infinite-search" = callPackage @@ -66170,6 +67985,7 @@ self: { buildDepends = [ base binary Cabal filepath ghc irc plugins ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infix" = callPackage @@ -66200,6 +68016,7 @@ self: { homepage = "https://github.com/stackbuilders/inflections-hs"; description = "Inflections library for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inflist" = callPackage @@ -66213,6 +68030,7 @@ self: { homepage = "https://bitbucket.org/eegg/inflist"; description = "An infinite list type and operations thereon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "influxdb" = callPackage @@ -66263,6 +68081,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/informative"; description = "A yesod subsite serving a wiki"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ini" = callPackage @@ -66372,6 +68191,7 @@ self: { buildDepends = [ base instant-generics mtl ]; description = "Heterogenous Zipper in Instant Generics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "instinct" = callPackage @@ -66435,6 +68255,7 @@ self: { homepage = "http://projects.haskell.org/~malcolm/integer-pure"; description = "A pure-Haskell implementation of arbitrary-precision Integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "integration" = callPackage @@ -66466,6 +68287,7 @@ self: { homepage = "https://github.com/rrnewton/intel-aes/wiki"; description = "Hardware accelerated AES encryption and Random Number Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { intel_aes = null;}; "interleavableGen" = callPackage @@ -66479,6 +68301,7 @@ self: { buildDepends = [ base directory haskell-src hint mtl ]; description = "Generates a version of a module using InterleavableIO"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleavableIO" = callPackage @@ -66490,6 +68313,7 @@ self: { buildDepends = [ base mtl ]; description = "Use other Monads in functions that asks for an IO Monad"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleave" = callPackage @@ -66548,6 +68372,7 @@ self: { homepage = "http://code.haskell.org/~thielema/internetmarke/"; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpol" = callPackage @@ -66612,6 +68437,7 @@ self: { buildDepends = [ base haskell-src-meta-mwotton template-haskell ]; description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolatedstring-qq-mwotton" = callPackage @@ -66625,6 +68451,7 @@ self: { jailbreak = true; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolation" = callPackage @@ -66676,6 +68503,7 @@ self: { homepage = "http://mbays.freeshell.org/intricacy"; description = "A game of competitive puzzle-design"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "intset" = callPackage @@ -66784,6 +68612,7 @@ self: { buildDepends = [ base ]; description = "An API for generating TIMBER style reactive objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "io-storage" = callPackage @@ -66891,6 +68720,7 @@ self: { homepage = "http://www.cybervisible.fr/ip6addr"; description = "Command-line tools to deal with IPv6 Addresses text representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipatch" = callPackage @@ -66910,6 +68740,7 @@ self: { homepage = "http://darcs.nomeata.de/ipatch"; description = "interactive patch editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipc" = callPackage @@ -66926,6 +68757,7 @@ self: { jailbreak = true; description = "High level inter-process communication library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipcvar" = callPackage @@ -66962,6 +68794,7 @@ self: { pkgconfigDepends = [ ipopt nlopt ]; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) ipopt; inherit (pkgs) nlopt;}; "ipprint" = callPackage @@ -67009,6 +68842,7 @@ self: { jailbreak = true; description = "iptables rules parser/printer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iptadmin" = callPackage @@ -67035,6 +68869,7 @@ self: { homepage = "http://iptadmin.117.su"; description = "web-interface for iptables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipython-kernel" = callPackage @@ -67053,6 +68888,7 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "irc" = callPackage @@ -67142,6 +68978,7 @@ self: { sha256 = "1bn0m9x89pqknz8gn8gk9is6w6px4hznp3fqqb5dxwssmmjm99zm"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ireal" = callPackage @@ -67239,6 +69076,7 @@ self: { buildDepends = [ base gtk3 ]; description = "A program to show the size of image and whether suitable for wallpaper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "islink" = callPackage @@ -67267,6 +69105,7 @@ self: { ]; description = "Advanced ESMTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iso3166-country-codes" = callPackage @@ -67374,6 +69213,7 @@ self: { homepage = "https://github.com/JohnLato/iter-stats"; description = "iteratees for statistical processing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterIO" = callPackage @@ -67394,6 +69234,7 @@ self: { homepage = "http://www.scs.stanford.edu/~dm/iterIO"; description = "Iteratee-based IO with pipe operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) zlib;}; "iterable" = callPackage @@ -67431,6 +69272,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/iteratee"; description = "Iteratee-based I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-compress" = callPackage @@ -67443,6 +69285,7 @@ self: { extraLibraries = [ bzip2 zlib ]; description = "Enumeratees for compressing and decompressing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) bzip2; inherit (pkgs) zlib;}; "iteratee-mtl" = callPackage @@ -67478,6 +69321,7 @@ self: { jailbreak = true; description = "Package allowing parsec parser initeratee"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-stm" = callPackage @@ -67491,6 +69335,7 @@ self: { homepage = "http://www.tiresiaspress.us/~jwlato/haskell/iteratee-stm"; description = "Concurrent iteratees using STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterio-server" = callPackage @@ -67509,6 +69354,7 @@ self: { homepage = "https://github.com/alevy/iterio-server"; description = "Library for building servers with IterIO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivar-simple" = callPackage @@ -67520,6 +69366,7 @@ self: { buildDepends = [ base ]; description = "Write once concurrency primitives"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivor" = callPackage @@ -67536,6 +69383,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/Ivor/"; description = "Theorem proving library based on dependent type theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory" = callPackage @@ -67553,6 +69401,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Safe embedded C programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-backend-c" = callPackage @@ -67573,6 +69422,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory C backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-bitdata" = callPackage @@ -67592,6 +69442,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory bit-data support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-examples" = callPackage @@ -67614,6 +69465,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-hw" = callPackage @@ -67631,6 +69483,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory hardware model (STM32F4)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-opts" = callPackage @@ -67648,6 +69501,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory compiler optimizations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-quickcheck" = callPackage @@ -67661,6 +69515,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "QuickCheck driver for Ivory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-stdlib" = callPackage @@ -67674,6 +69529,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory standard library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivy-web" = callPackage @@ -67716,6 +69572,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/"; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ixmonad" = callPackage @@ -67781,6 +69638,7 @@ self: { ]; description = "CLI (command line interface) to YQL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "j2hs" = callPackage @@ -67802,6 +69660,7 @@ self: { jailbreak = true; description = "j2hs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jack" = callPackage @@ -67835,6 +69694,7 @@ self: { pkgconfigDepends = [ jack2 ]; description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) jack2;}; "jackminimix" = callPackage @@ -67848,6 +69708,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jacobi-roots" = callPackage @@ -67927,6 +69788,7 @@ self: { homepage = "https://github.com/cgo/jalla"; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { cblas = null; f77blas = null; lapack = null; lapacke = null;}; @@ -68038,6 +69900,7 @@ self: { homepage = "https://github.com/tonymorris/javasf"; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javav" = callPackage @@ -68053,6 +69916,7 @@ self: { homepage = "https://github.com/tonymorris/javav"; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jcdecaux-vls" = callPackage @@ -68115,6 +69979,7 @@ self: { homepage = "http://github.com/achudnov/jespresso"; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jmacro" = callPackage @@ -68172,6 +70037,7 @@ self: { homepage = "http://hub.darcs.net/gershomb/jmacro-rpc"; description = "Happstack backend for jmacro-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jmacro-rpc-snap" = callPackage @@ -68215,6 +70081,7 @@ self: { homepage = "https://github.com/gree/haskell-jobqueue"; description = "A job queue library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "join" = callPackage @@ -68227,6 +70094,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/parallel-join-patterns-with-guards-and.html"; description = "Parallel Join Patterns with Guards and Propagation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "joinlist" = callPackage @@ -68256,6 +70124,7 @@ self: { homepage = "http://rawr.mschade.me/jonathanscard/"; description = "An implementation of the Jonathan's Card API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jort" = callPackage @@ -68270,6 +70139,7 @@ self: { jailbreak = true; description = "JP's own ray tracer"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jose" = callPackage @@ -68301,6 +70171,7 @@ self: { homepage = "https://github.com/frasertweedale/hs-jose"; description = "Javascript Object Signing and Encryption and JSON Web Token library"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jose-jwt" = callPackage @@ -68394,6 +70265,7 @@ self: { jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsaddle-hello" = callPackage @@ -68409,6 +70281,7 @@ self: { homepage = "https://github.com/ghcjs/jsaddle-hello"; description = "JSaddle Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsc" = callPackage @@ -68431,6 +70304,7 @@ self: { jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsmw" = callPackage @@ -68443,6 +70317,7 @@ self: { jailbreak = true; description = "Javascript Monadic Writer base package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json" = callPackage @@ -68516,6 +70391,7 @@ self: { homepage = "http://github.com/jsnx/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-builder" = callPackage @@ -68746,6 +70622,7 @@ self: { ]; description = "A collection of JSON tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-types" = callPackage @@ -68773,6 +70650,7 @@ self: { ]; description = "Library provides support for JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-hdbc" = callPackage @@ -68788,6 +70666,7 @@ self: { ]; description = "Support JSON for SQL Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-types" = callPackage @@ -68904,6 +70783,7 @@ self: { ]; description = "Extract substructures from JSON by following a path"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "judy" = callPackage @@ -68920,6 +70800,7 @@ self: { homepage = "http://github.com/mwotton/judy"; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { Judy = null;}; "jukebox" = callPackage @@ -68983,6 +70864,7 @@ self: { homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kan-extensions" = callPackage @@ -69015,6 +70897,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Binary parsing with random access"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-comet" = callPackage @@ -69055,6 +70938,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-cores" = callPackage @@ -69074,6 +70958,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "FPGA Cores Written in Kansas Lava"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-papilio" = callPackage @@ -69092,6 +70977,7 @@ self: { jailbreak = true; description = "Kansas Lava support files for the Papilio FPGA board"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-shake" = callPackage @@ -69107,6 +70993,7 @@ self: { ]; description = "Shake rules for building Kansas Lava projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karakuri" = callPackage @@ -69124,6 +71011,7 @@ self: { homepage = "https://github.com/fumieval/karakuri"; description = "Good stateful automata"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karver" = callPackage @@ -69246,6 +71134,7 @@ self: { jailbreak = true; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keter" = callPackage @@ -69299,6 +71188,7 @@ self: { ]; description = "a dAmn ↔ IRC proxy"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keyring" = callPackage @@ -69382,6 +71272,7 @@ self: { sha256 = "0yfyx4jyz0n3p2w6pca3nxc72s01240n3siy5sx883ldz706adls"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kicad-data" = callPackage @@ -69404,6 +71295,7 @@ self: { homepage = "http://github.com/kasbah/haskell-kicad-data"; description = "Parser and writer for KiCad files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickass-torrents-dump-parser" = callPackage @@ -69422,6 +71314,7 @@ self: { jailbreak = true; description = "Parses kat.ph torrent dumps"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickchan" = callPackage @@ -69458,6 +71351,7 @@ self: { ]; description = "Process KIF iOS test logs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kinds" = callPackage @@ -69491,6 +71385,7 @@ self: { homepage = "http://github.com/nkpart/kit"; description = "A dependency manager for Xcode (Objective-C) projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans" = callPackage @@ -69519,6 +71414,7 @@ self: { ]; description = "Sequential and parallel implementations of Lloyd's algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans-vector" = callPackage @@ -69563,6 +71459,7 @@ self: { jailbreak = true; description = "Khovanov homology computations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "koellner-phonetic" = callPackage @@ -69575,6 +71472,7 @@ self: { testDepends = [ base HUnit ]; description = "\"map German words to code representing pronunciation\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kontrakcja-templates" = callPackage @@ -69631,6 +71529,7 @@ self: { homepage = "http://blog.malde.org/"; description = "The Korfu ORF Utility"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kqueue" = callPackage @@ -69645,6 +71544,7 @@ self: { homepage = "http://github.com/hesselink/kqueue"; description = "A binding to the kqueue event library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "krpc" = callPackage @@ -69704,6 +71604,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/kure.php"; description = "Generator for Boilerplate KURE Combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kyotocabinet" = callPackage @@ -69729,6 +71630,7 @@ self: { homepage = "http://nonempty.org/software/haskell-l-bfgs-b"; description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { lbfgsb = null;}; "labeled-graph" = callPackage @@ -69740,6 +71642,7 @@ self: { buildDepends = [ base labeled-tree ]; description = "Labeled graph structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labeled-tree" = callPackage @@ -69772,6 +71675,7 @@ self: { homepage = "https://github.com/lucasdicioccio/laborantin-hs"; description = "an experiment management framework"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth" = callPackage @@ -69795,6 +71699,7 @@ self: { homepage = "https://github.com/koterpillar/labyrinth"; description = "A complicated turn-based game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth-server" = callPackage @@ -69830,6 +71735,7 @@ self: { homepage = "https://github.com/koterpillar/labyrinth-server"; description = "A complicated turn-based game - Web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lagrangian" = callPackage @@ -69874,6 +71780,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/LambdaBridge"; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-canvas" = callPackage @@ -69910,6 +71817,7 @@ self: { homepage = "http://github.com/alios/lambda-devs"; description = "a Paralell-DEVS implementaion based on distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-placeholders" = callPackage @@ -69936,6 +71844,7 @@ self: { homepage = "http://scravy.de/blog/2012-02-20/a-lambda-toolbox-in-haskell.htm"; description = "An application to work with the lambda calculus (for learning)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda2js" = callPackage @@ -69974,6 +71883,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/lambdaFeed/"; description = "RSS 2.0 feed generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaLit" = callPackage @@ -70025,6 +71935,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot is a development tool and advanced IRC bot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-utils" = callPackage @@ -70044,6 +71955,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Utility libraries for the advanced IRC bot, Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacat" = callPackage @@ -70063,6 +71975,7 @@ self: { homepage = "http://github.com/baldo/lambdacat"; description = "Webkit Browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacms-core" = callPackage @@ -70115,6 +72028,7 @@ self: { buildDepends = [ base editline mtl pretty ]; description = "A simple lambda cube type checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-bullet" = callPackage @@ -70127,6 +72041,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Example for combining LambdaCube and Bullet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-core" = callPackage @@ -70182,6 +72097,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "3D rendering engine written entirely in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-examples" = callPackage @@ -70196,6 +72112,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Examples for LambdaCube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-gl" = callPackage @@ -70264,6 +72181,7 @@ self: { homepage = "http://github.com/ashyisme/lambdatwit"; description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdiff" = callPackage @@ -70283,6 +72201,7 @@ self: { homepage = "https://github.com/jamwt/lambdiff.git"; description = "Diff Viewer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lame-tester" = callPackage @@ -70300,6 +72219,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A strange and unnecessary selective test-running library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-asn1" = callPackage @@ -70347,6 +72267,7 @@ self: { homepage = "https://bitbucket.org/nadiapolikarpova/boogaloo"; description = "Interpreter and language infrastructure for Boogie"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c" = callPackage @@ -70378,6 +72299,7 @@ self: { homepage = "http://github.com/ghulette/language-c-comments"; description = "Extracting comments from C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-inline" = callPackage @@ -70522,6 +72444,7 @@ self: { homepage = "https://github.com/scottgw/language-eiffel"; description = "Parser and pretty printer for the Eiffel language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-fortran" = callPackage @@ -70576,6 +72499,7 @@ self: { jailbreak = true; description = "A library for analysis and synthesis of Go code"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-guess" = callPackage @@ -70636,6 +72560,7 @@ self: { ]; description = "Parser for Java .class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-javascript" = callPackage @@ -70671,6 +72596,7 @@ self: { homepage = "http://github.com/osa1/language-lua"; description = "Lua parser and pretty-printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-mixal" = callPackage @@ -70772,6 +72698,7 @@ self: { homepage = "http://lpuppet.banquise.net/"; description = "Tools to parse and evaluate the Puppet DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-python" = callPackage @@ -70803,6 +72730,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/"; description = "Generate coloured XHTML for Python code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sh" = callPackage @@ -70817,6 +72745,7 @@ self: { homepage = "http://code.haskell.org/shsh/"; description = "A package for parsing shell scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-slice" = callPackage @@ -70855,6 +72784,7 @@ self: { homepage = "https://github.com/bitonic/language-spelling"; description = "Various tools to detect/correct mistakes in words"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sqlite" = callPackage @@ -70871,6 +72801,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Full parser and generator for SQL as implemented by SQLite3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-typescript" = callPackage @@ -70921,6 +72852,7 @@ self: { jailbreak = true; description = "Tool to track security alerts on LWN"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latest-npm-version" = callPackage @@ -70948,6 +72880,7 @@ self: { homepage = "https://github.com/passy/latest-npm-version"; description = "Find the latest version of a package on npm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latex" = callPackage @@ -70986,6 +72919,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "High and low-level interface to the Novation Launchpad midi controller"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lax" = callPackage @@ -71010,6 +72944,7 @@ self: { homepage = "http://github.com/duairc/layers"; description = "Modular type class machinery for monad transformer stacks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layers-game" = callPackage @@ -71028,6 +72963,7 @@ self: { ]; description = "A prototypical 2d platform game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout" = callPackage @@ -71039,6 +72975,7 @@ self: { buildDepends = [ base convertible hinduce-missingh ]; description = "Turn values into pretty text or markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout-bootstrap" = callPackage @@ -71051,6 +72988,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/layout-bootstrap"; description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazy-csv" = callPackage @@ -71088,6 +73026,7 @@ self: { buildDepends = [ array base ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazyio" = callPackage @@ -71136,6 +73075,7 @@ self: { buildDepends = [ array base ]; description = "L-BFGS optimization"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lca" = callPackage @@ -71197,6 +73137,7 @@ self: { homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaf" = callPackage @@ -71233,6 +73174,7 @@ self: { homepage = "http://www.fremissant.net/leaky"; description = "Robust space leak, and its strictification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leankit-api" = callPackage @@ -71282,6 +73224,7 @@ self: { jailbreak = true; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learn-physics-examples" = callPackage @@ -71300,6 +73243,7 @@ self: { jailbreak = true; description = "examples for learn-physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learning-hmm" = callPackage @@ -71368,6 +73312,7 @@ self: { homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leksah-server" = callPackage @@ -71399,6 +73344,7 @@ self: { homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lens" = callPackage @@ -71538,6 +73484,7 @@ self: { homepage = "http://github.com/ekmett/lens/"; description = "QuickCheck properties for lens"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lens-sop" = callPackage @@ -71660,6 +73607,7 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) leveldb;}; "levmar" = callPackage @@ -71672,6 +73620,7 @@ self: { homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "levmar-chart" = callPackage @@ -71687,6 +73636,7 @@ self: { jailbreak = true; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lgtk" = callPackage @@ -71712,6 +73662,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "Lens GUI Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lha" = callPackage @@ -71745,6 +73696,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lhae"; description = "Simple spreadsheet program"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhc" = callPackage @@ -71771,6 +73723,7 @@ self: { homepage = "http://lhc.seize.it/"; description = "LHC Haskell Compiler"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhe" = callPackage @@ -71868,6 +73821,7 @@ self: { homepage = "http://trac.loria.fr/~geni"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libarchive-conduit" = callPackage @@ -71882,6 +73836,7 @@ self: { extraLibraries = [ archive ]; description = "Read many archive formats with libarchive and conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { archive = null;}; "libcspm" = callPackage @@ -71902,6 +73857,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A library providing a parser, type checker and evaluator for CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libexpect" = callPackage @@ -71914,6 +73870,7 @@ self: { extraLibraries = [ expect tcl ]; description = "Library for interacting with console applications via pseudoterminals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) expect; inherit (pkgs) tcl;}; "libffi" = callPackage @@ -71975,6 +73932,7 @@ self: { homepage = "https://bitbucket.org/bhris/libhbb"; description = "Backend for text editors to provide better Haskell editing support"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libjenkins" = callPackage @@ -72002,6 +73960,7 @@ self: { ]; description = "Jenkins API interface"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "liblastfm" = callPackage @@ -72055,6 +74014,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~mainland/projects/libffi"; description = "FFI interface to libltdl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libmpd" = callPackage @@ -72089,6 +74049,7 @@ self: { extraLibraries = [ libnotify ]; description = "Bindings to libnotify library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libnotify;}; "libnvvm" = callPackage @@ -72108,6 +74069,7 @@ self: { homepage = "https://github.com/nvidia-compiler-sdk/hsnvvm"; description = "FFI binding to libNVVM, a compiler SDK component from NVIDIA"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { nvvm = null;}; "liboleg" = callPackage @@ -72124,6 +74086,7 @@ self: { homepage = "http://okmij.org/ftp/"; description = "An evolving collection of Oleg Kiselyov's Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libpq" = callPackage @@ -72137,6 +74100,7 @@ self: { homepage = "http://github.com/tnarg/haskell-libpq"; description = "libpq binding for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) postgresql;}; "librandomorg" = callPackage @@ -72204,6 +74168,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/libssh2-hs"; description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libstackexchange" = callPackage @@ -72240,6 +74205,7 @@ self: { pkgconfigDepends = [ libsystemd-daemon ]; description = "Haskell bindings for libsystemd-daemon"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage @@ -72274,6 +74240,7 @@ self: { homepage = "https://patch-tag.com/r/AndyStewart/libtagc/home"; description = "Binding to TagLib C library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { tag_c = null; taglib_c = null;}; "libvirt-hs" = callPackage @@ -72288,6 +74255,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/libvirt-hs"; description = "FFI bindings to libvirt virtualization API (http://libvirt.org)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { virt = null;}; "libvorbis" = callPackage @@ -72312,6 +74280,7 @@ self: { extraLibraries = [ libxml2 ]; description = "Binding to libxml2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libxml2;}; "libxml-enumerator" = callPackage @@ -72356,6 +74325,7 @@ self: { jailbreak = true; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { xslt = null;}; "life" = callPackage @@ -72427,6 +74397,7 @@ self: { homepage = "http://icfpcontest2012.wordpress.com/"; description = "A boulderdash-like game and solution validator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ligature" = callPackage @@ -72467,6 +74438,7 @@ self: { buildTools = [ alex happy ]; description = "Lighttpd configuration file tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lighttpd-conf-qq" = callPackage @@ -72483,6 +74455,7 @@ self: { ]; description = "A QuasiQuoter for lighttpd configuration files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lilypond" = callPackage @@ -72517,6 +74490,7 @@ self: { homepage = "https://github.com/amosr/limp"; description = "representation of Integer Linear Programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "limp-cbc" = callPackage @@ -72531,6 +74505,7 @@ self: { homepage = "https://github.com/amosr/limp-cbc"; description = "bindings for integer linear programming solver Coin/CBC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lin-alg" = callPackage @@ -72623,6 +74598,7 @@ self: { homepage = "http://github.com/cartazio/hs-cblas"; description = "A linear algebra library with bindings to BLAS and LAPACK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-maps" = callPackage @@ -72637,6 +74613,7 @@ self: { jailbreak = true; description = "Finite maps for linear use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-opengl" = callPackage @@ -72696,6 +74673,7 @@ self: { homepage = "http://github.com/jwiegley/linearscan"; description = "Linear scan register allocator, formally verified in Coq"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linebreak" = callPackage @@ -72735,6 +74713,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/linkchk/"; description = "linkchk is a network interface link ping monitor"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkcore" = callPackage @@ -72748,6 +74727,7 @@ self: { buildDepends = [ base containers extcore filepath process ]; description = "Combines multiple GHC Core modules into a single module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkedhashmap" = callPackage @@ -72803,6 +74783,7 @@ self: { jailbreak = true; description = "Linux libblkid"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { blkid = null;}; "linux-cgroup" = callPackage @@ -72865,6 +74846,7 @@ self: { homepage = "https://github.com/tensor5/linux-kmod"; description = "Linux kernel modules support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { libkmod = null;}; "linux-mount" = callPackage @@ -72925,6 +74907,7 @@ self: { jailbreak = true; description = "Wrapping of Linux' ptrace(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-xattr" = callPackage @@ -72984,6 +74967,7 @@ self: { ]; description = "Labeled IO library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lio-fs" = callPackage @@ -73021,6 +75005,7 @@ self: { homepage = "http://simple.cx"; description = "LIO support for the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "liquid-fixpoint" = callPackage @@ -73181,6 +75166,7 @@ self: { homepage = "https://github.com/nikita-volkov/list-t"; description = "ListT done right"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-tries" = callPackage @@ -73209,6 +75195,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/listlike-instances"; description = "Extra instances of the ListLike class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lists" = callPackage @@ -73263,6 +75250,7 @@ self: { buildDepends = [ base ]; description = "Non-overloaded functions for concrete literals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "live-sequencer" = callPackage @@ -73290,6 +75278,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer"; description = "Live coding of MIDI music"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ll-picosat" = callPackage @@ -73301,6 +75290,7 @@ self: { buildDepends = [ base ]; extraLibraries = [ picosat ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) picosat;}; "llrbtree" = callPackage @@ -73334,6 +75324,7 @@ self: { homepage = "http://wiki.secondlife.com/wiki/LLSD"; description = "An implementation of the LLSD data system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm" = callPackage @@ -73351,6 +75342,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-analysis" = callPackage @@ -73378,6 +75370,7 @@ self: { ]; description = "A Haskell library for analyzing LLVM bitcode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base" = callPackage @@ -73391,6 +75384,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) llvm;}; "llvm-base-types" = callPackage @@ -73422,6 +75416,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Utilities for bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-data-interop" = callPackage @@ -73442,6 +75437,7 @@ self: { buildTools = [ c2hs ]; description = "A low-level data interoperability binding for LLVM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-extra" = callPackage @@ -73461,6 +75457,7 @@ self: { homepage = "http://code.haskell.org/~thielema/llvm-extra/"; description = "Utility functions for the llvm interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-general" = callPackage @@ -73488,6 +75485,7 @@ self: { doCheck = false; description = "General purpose LLVM bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { llvm-config = null;}; "llvm-general-pure" = callPackage @@ -73510,6 +75508,7 @@ self: { doCheck = false; description = "Pure Haskell LLVM functionality (no FFI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-general-quote" = callPackage @@ -73535,6 +75534,7 @@ self: { homepage = "https://github.com/tvh/llvm-general-quote"; description = "QuasiQuoting llvm code for llvm-general"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ht" = callPackage @@ -73551,6 +75551,7 @@ self: { homepage = "http://darcs.serpentine.com/llvm/"; description = "Bindings to the LLVM compiler toolkit with some custom extensions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-pkg-config" = callPackage @@ -73619,6 +75620,7 @@ self: { jailbreak = true; description = "Bindings to the LLVM compiler toolkit using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-tools" = callPackage @@ -73643,6 +75645,7 @@ self: { jailbreak = true; description = "Useful tools built on llvm-analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lmdb" = callPackage @@ -73656,6 +75659,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-lmdb"; description = "Lightning MDB bindings"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) { lmdb = null;}; "load-env" = callPackage @@ -73724,6 +75728,7 @@ self: { ]; description = "Human exchangable identifiers and locators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loch" = callPackage @@ -73737,6 +75742,7 @@ self: { buildDepends = [ base ]; description = "Support for precise error locations in source files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loch-th" = callPackage @@ -73793,6 +75799,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "Michael and Scott lock-free queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "log-domain" = callPackage @@ -73834,6 +75841,7 @@ self: { homepage = "https://github.com/ibotty/log-effect"; description = "An extensible log effect using extensible-effects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "log2json" = callPackage @@ -73879,6 +75887,7 @@ self: { homepage = "https://github.com/wdanilo/haskell-logger"; description = "Fast & extensible logging framework"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logging" = callPackage @@ -73967,6 +75976,7 @@ self: { homepage = "http://src.seereason.com/logic-classes"; description = "Framework for propositional and first order logic, theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logicst" = callPackage @@ -74012,6 +76022,7 @@ self: { jailbreak = true; description = "Useful utilities for the Lojban language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanParser" = callPackage @@ -74070,6 +76081,7 @@ self: { homepage = "http://github.com/nfjinjing/loli"; description = "A minimum web dev DSL in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loop" = callPackage @@ -74140,6 +76152,7 @@ self: { homepage = "http://www.esc.cam.ac.uk/people/research-students/emily-king"; description = "Find all biological feedback loops within an ecosystem graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lord" = callPackage @@ -74173,6 +76186,7 @@ self: { homepage = "https://github.com/rnons/lord"; description = "A command line interface to online radios"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loris" = callPackage @@ -74187,6 +76201,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/loris"; description = "interface to Loris API"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) { loris = null;}; "loshadka" = callPackage @@ -74224,6 +76239,7 @@ self: { homepage = "http://www.ncc.up.pt/~pbv/stuff/lostcities"; description = "An implementation of an adictive two-player card game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lrucache" = callPackage @@ -74256,6 +76272,7 @@ self: { homepage = "https://github.com/roelvandijk/ls-usb"; description = "List USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lscabal" = callPackage @@ -74274,6 +76291,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/lscabal"; description = "List exported modules from a set of .cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lss" = callPackage @@ -74310,6 +76328,7 @@ self: { buildDepends = [ base haskell98 uu-parsinglib wx wxcore ]; description = "Paint an L-System Grammar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ltk" = callPackage @@ -74327,6 +76346,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah tool kit"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ltl" = callPackage @@ -74372,6 +76392,7 @@ self: { jailbreak = true; description = "Library functions for reading and writing Lua chunks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luautils" = callPackage @@ -74457,6 +76478,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lucienne"; description = "Server side feed aggregator/reader"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luhn" = callPackage @@ -74483,6 +76505,7 @@ self: { ]; description = "Purely FunctionaL User Interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luka" = callPackage @@ -74496,6 +76519,7 @@ self: { homepage = "https://github.com/nfjinjing/luka"; description = "Simple ObjectiveC runtime binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { objc = null;}; "lushtags" = callPackage @@ -74511,6 +76535,7 @@ self: { homepage = "https://github.com/bitc/lushtags"; description = "Create ctags compatible tags files for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luthor" = callPackage @@ -74551,6 +76576,7 @@ self: { ]; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmlib" = callPackage @@ -74611,6 +76637,7 @@ self: { ]; description = "A Lilypond-compiling music box"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lz4" = callPackage @@ -74827,6 +76854,7 @@ self: { homepage = "http://www.scannedinavian.com/~shae/mage-1.0pre35.tar.gz"; description = "Rogue-like"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { curses = null;}; "magic" = callPackage @@ -74839,6 +76867,7 @@ self: { extraLibraries = [ magic ]; description = "Interface to C file/magic library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { magic = null;}; "magma" = callPackage @@ -74871,6 +76900,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/mahoro"; description = "ImageBoards to XMPP gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maid" = callPackage @@ -74935,6 +76965,7 @@ self: { homepage = "https://github.com/mietek/mailchimp-subscribe/"; description = "MailChimp subscription request handler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mailgun" = callPackage @@ -74989,6 +77020,7 @@ self: { jailbreak = true; description = "Majordomo protocol for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "majority" = callPackage @@ -75083,6 +77115,7 @@ self: { jailbreak = true; description = "The Haskell/Gtk+ Integrated Live Environment"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-all" = callPackage @@ -75107,6 +77140,7 @@ self: { ]; description = "Virtual package to install all Manatee packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-anything" = callPackage @@ -75128,6 +77162,7 @@ self: { jailbreak = true; description = "Multithread interactive input/search framework for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-browser" = callPackage @@ -75147,6 +77182,7 @@ self: { jailbreak = true; description = "Browser extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-core" = callPackage @@ -75171,6 +77207,7 @@ self: { jailbreak = true; description = "The core of Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-curl" = callPackage @@ -75193,6 +77230,7 @@ self: { jailbreak = true; description = "Download Manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-editor" = callPackage @@ -75213,6 +77251,7 @@ self: { jailbreak = true; description = "Editor extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-filemanager" = callPackage @@ -75233,6 +77272,7 @@ self: { jailbreak = true; description = "File manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-imageviewer" = callPackage @@ -75253,6 +77293,7 @@ self: { jailbreak = true; description = "Image viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-ircclient" = callPackage @@ -75277,6 +77318,7 @@ self: { jailbreak = true; description = "IRC client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-mplayer" = callPackage @@ -75298,6 +77340,7 @@ self: { jailbreak = true; description = "Mplayer client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-pdfviewer" = callPackage @@ -75318,6 +77361,7 @@ self: { jailbreak = true; description = "PDF viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-processmanager" = callPackage @@ -75337,6 +77381,7 @@ self: { jailbreak = true; description = "Process manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-reader" = callPackage @@ -75357,6 +77402,7 @@ self: { jailbreak = true; description = "Feed reader extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-template" = callPackage @@ -75377,6 +77423,7 @@ self: { jailbreak = true; description = "Template code to create Manatee application"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-terminal" = callPackage @@ -75396,6 +77443,7 @@ self: { jailbreak = true; description = "Terminal Emulator extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-welcome" = callPackage @@ -75416,6 +77464,7 @@ self: { jailbreak = true; description = "Welcome module to help user play Manatee quickly"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mancala" = callPackage @@ -75471,6 +77520,7 @@ self: { homepage = "http://gitorious.org/maximus/mandulia"; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mangopay" = callPackage @@ -75508,6 +77558,7 @@ self: { homepage = "https://github.com/prowdsponsor/mangopay"; description = "Bindings to the MangoPay API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "map-syntax" = callPackage @@ -75545,6 +77596,7 @@ self: { homepage = "https://github.com/paolino/marionetta"; description = "A study of marionetta movements"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown" = callPackage @@ -75590,6 +77642,7 @@ self: { homepage = "https://github.com/joelteon/markdown-kate"; description = "Convert Markdown to HTML, with XSS protection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-pap" = callPackage @@ -75601,6 +77654,7 @@ self: { buildDepends = [ base monads-tf papillon ]; description = "markdown parser with papillon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-unlit" = callPackage @@ -75637,6 +77691,7 @@ self: { ]; description = "markdown to svg converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marked-pretty" = callPackage @@ -75687,6 +77742,7 @@ self: { testDepends = [ assertions base bifunctors memoize random ]; description = "Hidden Markov processes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markup" = callPackage @@ -75723,6 +77779,7 @@ self: { jailbreak = true; description = "A simple markup document preview (markdown, textile, reStructuredText)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marmalade-upload" = callPackage @@ -75770,6 +77827,7 @@ self: { ]; description = "Markup language preprocessor for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "masakazu-bot" = callPackage @@ -75794,6 +77852,7 @@ self: { homepage = "https://github.com/minamiyama1994/chomado-bot-on-haskell/tree/minamiyama1994"; description = "@minamiyama1994_bot on haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mastermind" = callPackage @@ -75861,6 +77920,7 @@ self: { jailbreak = true; description = "A program for creating and managing a static weblog with LaTeX math and function graphs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mathgenealogy" = callPackage @@ -75897,6 +77957,7 @@ self: { homepage = "http://community.haskell.org/~TracyWadleigh/mathlink"; description = "Write Mathematica packages in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "matlab" = callPackage @@ -75913,6 +77974,7 @@ self: { jailbreak = true; description = "Matlab bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { eng = null; matlab = null; mx = null;}; "matrices" = callPackage @@ -75981,6 +78043,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "ncurses XMPP client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maude" = callPackage @@ -76019,6 +78082,7 @@ self: { homepage = "https://github.com/jfischoff/maxent"; description = "Compute Maximum Entropy Distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maximal-cliques" = callPackage @@ -76052,6 +78116,7 @@ self: { homepage = "http://rochel.info/maxsharing/"; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maybench" = callPackage @@ -76071,6 +78136,7 @@ self: { homepage = "http://code.google.com/p/maybench/"; description = "Automated benchmarking tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mbox" = callPackage @@ -76101,6 +78167,7 @@ self: { homepage = "https://github.com/np/mbox-tools"; description = "A collection of tools to process mbox files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmaster-gloss-examples" = callPackage @@ -76130,6 +78197,7 @@ self: { ]; description = "Combinators for MCMC sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmc-synthesis" = callPackage @@ -76184,6 +78252,7 @@ self: { homepage = "http://github.com/tanakh/hsmecab"; description = "A Haskell binding to MeCab"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { mecab = null;}; "mecha" = callPackage @@ -76213,6 +78282,7 @@ self: { buildDepends = [ base HTTP mime network pretty utf8-string xml ]; description = "Interfacing with the MediaWiki API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mediawiki2latex" = callPackage @@ -76238,6 +78308,7 @@ self: { homepage = "http://sourceforge.net/projects/wb2pdf/"; description = "Convert MediaWiki text to LaTeX"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meep" = callPackage @@ -76276,6 +78347,7 @@ self: { homepage = "https://github.com/snoyberg/mega-sdist"; description = "Handles uploading to Hackage from mega repos (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meldable-heap" = callPackage @@ -76309,6 +78381,7 @@ self: { jailbreak = true; description = "A functional scripting language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memcache" = callPackage @@ -76385,6 +78458,7 @@ self: { homepage = "https://gitorious.org/memo-sqlite"; description = "memoize functions using SQLite3 database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memoize" = callPackage @@ -76410,6 +78484,7 @@ self: { homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/memscript"; description = "Command line utility for memorizing scriptures or any other text"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mersenne-random" = callPackage @@ -76518,6 +78593,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Support for integrated Accelerate computations within Meta-par"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metadata" = callPackage @@ -76531,6 +78607,7 @@ self: { homepage = "http://github.com/cutsea110/metadata"; description = "metadata library for semantic web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metamorphic" = callPackage @@ -76554,6 +78631,7 @@ self: { buildDepends = [ base Cabal filepath ghc haskell98 ]; description = "a tiny ghc api wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metric" = callPackage @@ -76570,6 +78648,7 @@ self: { ]; description = "Metric spaces"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metrics" = callPackage @@ -76591,6 +78670,7 @@ self: { ]; description = "High-performance application metric tracking"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metricsd-client" = callPackage @@ -76614,6 +78694,7 @@ self: { buildDepends = [ base data-lens data-lens-template hosc stm ]; description = "Time Synchronized execution"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mi" = callPackage @@ -76721,6 +78802,7 @@ self: { homepage = "http://www.youtube.com/watch?v=cOlR73h2uII"; description = "A Memory-like (Concentration, Pairs, ...) game for tones"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "midisurface" = callPackage @@ -76737,6 +78819,7 @@ self: { jailbreak = true; description = "A control midi surface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd" = callPackage @@ -76757,6 +78840,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "Simple Web Server in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd2" = callPackage @@ -76947,6 +79031,7 @@ self: { jailbreak = true; description = "Minesweeper game which is always solvable without guessing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniball" = callPackage @@ -76959,6 +79044,7 @@ self: { homepage = "http://nonempty.org/software/haskell-miniball"; description = "Bindings to Miniball, a smallest enclosing ball library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minimal-configuration" = callPackage @@ -77000,6 +79086,7 @@ self: { buildDepends = [ base GLUT haskell98 unix ]; description = "Shows how to run grabber on Mac OS X"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minions" = callPackage @@ -77046,6 +79133,7 @@ self: { jailbreak = true; description = "simple 1-to-N interprocess communication"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minirotate" = callPackage @@ -77067,6 +79155,7 @@ self: { homepage = "http://tener.github.com/haskell-minirotate/"; description = "Minimalistic file rotation utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minisat" = callPackage @@ -77098,6 +79187,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Ministg"; description = "an interpreter for an operational semantics for the STG machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniutter" = callPackage @@ -77135,6 +79225,7 @@ self: { homepage = "https://github.com/minamiyama1994/mirror-tweet"; description = "Tweet mirror"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "misfortune" = callPackage @@ -77179,6 +79270,7 @@ self: { homepage = "https://github.com/domdere/missing-py2"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mix-arrows" = callPackage @@ -77190,6 +79282,7 @@ self: { buildDepends = [ base ]; description = "Mixing effects of one arrow into another one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mixed-strategies" = callPackage @@ -77218,6 +79311,7 @@ self: { buildDepends = [ base directory filepath haskell98 ]; description = "Makes an OS X .app bundle from a binary."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mkcabal" = callPackage @@ -77237,6 +79331,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/mkcabal"; description = "Generate cabal files for a Haskell project"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ml-w" = callPackage @@ -77262,6 +79357,7 @@ self: { homepage = "http://haskell.org/haskellwiki/mlist"; description = "Monadic List alternative to lazy I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmap" = callPackage @@ -77297,6 +79393,7 @@ self: { buildDepends = [ base ]; description = "Modular Monad transformer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmtl-base" = callPackage @@ -77308,6 +79405,7 @@ self: { buildDepends = [ base mmtl ]; description = "MonadBase type-class for mmtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moan" = callPackage @@ -77326,6 +79424,7 @@ self: { homepage = "https://github.com/vjeranc/moan"; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modbus-tcp" = callPackage @@ -77377,6 +79476,7 @@ self: { ]; description = "Haskell source splitter driven by special comments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-arithmetic" = callPackage @@ -77420,6 +79520,7 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "Reifying ClassyPrelude a la ModularPrelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "module-management" = callPackage @@ -77447,6 +79548,7 @@ self: { homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modulespection" = callPackage @@ -77465,6 +79567,7 @@ self: { homepage = "https://github.com/jfischoff/modulespection"; description = "Template Haskell for introspecting a module's declarations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modulo" = callPackage @@ -77522,6 +79625,7 @@ self: { homepage = "http://code.haskell.org/mohws/"; description = "Modular Haskell Web Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-abort-fd" = callPackage @@ -77539,6 +79643,7 @@ self: { homepage = "https://github.com/mvv/monad-abort-fd"; description = "A better error monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-atom" = callPackage @@ -77573,6 +79678,7 @@ self: { buildDepends = [ base ]; description = "This package has been removed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-codec" = callPackage @@ -77630,6 +79736,7 @@ self: { jailbreak = true; description = "Exstensible monadic exceptions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-extras" = callPackage @@ -77681,6 +79788,7 @@ self: { homepage = "http://github.com/patperry/monad-interleave"; description = "Monads with an unsaveInterleaveIO-like operation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-journal" = callPackage @@ -77778,6 +79886,7 @@ self: { homepage = "https://github.com/bjin/monad-lrs"; description = "a monad to calculate linear recursive sequence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-memo" = callPackage @@ -77903,6 +80012,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/monad-peel/"; description = "Lift control operations like exception catching through monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-primitive" = callPackage @@ -77939,6 +80049,7 @@ self: { jailbreak = true; description = "Fast monads and monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-resumption" = callPackage @@ -78131,6 +80242,7 @@ self: { buildDepends = [ base ]; description = "The Acme and AcmeT monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadbi" = callPackage @@ -78195,6 +80307,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadiccp-gecode" = callPackage @@ -78212,6 +80325,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { gecodeint = null; gecodekernel = null; gecodesearch = null; gecodeset = null; gecodesupport = null;}; @@ -78332,6 +80446,7 @@ self: { homepage = "https://github.com/notogawa/monarch"; description = "Monadic interface for TokyoTyrant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongoDB" = callPackage @@ -78373,6 +80488,7 @@ self: { homepage = "https://github.com/docmunch/haskell-mongodb-queue"; description = "message queue using MongoDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongrel2-handler" = callPackage @@ -78391,6 +80507,7 @@ self: { jailbreak = true; description = "Mongrel2 Handler Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monitor" = callPackage @@ -78528,6 +80645,7 @@ self: { jailbreak = true; description = "Extra classes/functions about monoids"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoids" = callPackage @@ -78624,6 +80742,7 @@ self: { homepage = "http://github.com/patperry/hs-monte-carlo"; description = "A monad and transformer for Monte Carlo calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moo" = callPackage @@ -78646,6 +80765,7 @@ self: { homepage = "http://www.github.com/astanin/moo/"; description = "Genetic algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "morfette" = callPackage @@ -78681,6 +80801,7 @@ self: { homepage = "https://github.com/kawu/morfeusz"; description = "Bindings to the morphological analyser Morfeusz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { morfeusz = null;}; "morte" = callPackage @@ -78712,6 +80833,7 @@ self: { buildDepends = [ base bytestring ]; description = "Mounts and umounts filesystems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mp3decoder" = callPackage @@ -78726,6 +80848,7 @@ self: { homepage = "http://www.bjrn.se/mp3dec"; description = "MP3 decoder for teaching"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpdmate" = callPackage @@ -78740,6 +80863,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "MPD/PowerMate executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpppc" = callPackage @@ -78786,6 +80910,7 @@ self: { ]; description = "Simple equational reasoning for a Haskell-ish language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mps" = callPackage @@ -78805,6 +80930,7 @@ self: { homepage = "http://github.com/nfjinjing/mps/"; description = "simply oo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpvguihs" = callPackage @@ -78824,6 +80950,7 @@ self: { homepage = "https://github.com/sebadoom/mpvguihs"; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mqtt-hs" = callPackage @@ -78889,6 +81016,7 @@ self: { homepage = "http://msgpack.org/"; description = "An IDL Compiler for MessagePack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msgpack-rpc" = callPackage @@ -78909,6 +81037,7 @@ self: { homepage = "http://msgpack.org/"; description = "A MessagePack-RPC Implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mstate" = callPackage @@ -78920,6 +81049,7 @@ self: { buildDepends = [ base monad-peel mtl stm ]; description = "MState: A consistent State monad for concurrent applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msu" = callPackage @@ -78965,6 +81095,7 @@ self: { jailbreak = true; description = "Library to communicate with Mt.Gox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl" = callPackage @@ -79019,6 +81150,7 @@ self: { homepage = "https://github.com/nikita-volkov/mtl-prelude"; description = "Reexports of most definitions from \"mtl\" and \"transformers\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl-tf" = callPackage @@ -79030,6 +81162,7 @@ self: { buildDepends = [ base ]; description = "Monad transformer library using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtlparse" = callPackage @@ -79053,6 +81186,7 @@ self: { buildDepends = [ base mtl QuickCheck ]; description = "Monad transformer library with type indexes, providing 'free' copies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtp" = callPackage @@ -79066,6 +81200,7 @@ self: { jailbreak = true; description = "Bindings to libmtp"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { mtp = null;}; "mtree" = callPackage @@ -79109,6 +81244,7 @@ self: { jailbreak = true; description = "Continuous deployment server for use with GitHub"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mueval" = callPackage @@ -79179,6 +81315,7 @@ self: { ]; description = "Bidirectional Two-level Transformation of XML Schemas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multimap" = callPackage @@ -79221,6 +81358,7 @@ self: { homepage = "http://github.com/ekmett/multipass/"; description = "Folding data with multiple named passes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplate" = callPackage @@ -79245,6 +81383,7 @@ self: { jailbreak = true; description = "Shorter, more generic functions for Multiplate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplicity" = callPackage @@ -79287,6 +81426,7 @@ self: { jailbreak = true; description = "Alternative multirec instances deriver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multirec-binary" = callPackage @@ -79299,6 +81439,7 @@ self: { jailbreak = true; description = "Generic Data.Binary instances using MultiRec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiset" = callPackage @@ -79333,6 +81474,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/multi-set-rewrite-rules-with-guards-and.html"; description = "Multi-set rewrite rules with guards and a parallel execution scheme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multistate" = callPackage @@ -79386,6 +81528,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murmur-hash" = callPackage @@ -79472,6 +81615,7 @@ self: { jailbreak = true; description = "Diagrams-based visualization of musical data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-parts" = callPackage @@ -79489,6 +81633,7 @@ self: { jailbreak = true; description = "Musical instruments, parts and playing techniques"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-pitch" = callPackage @@ -79507,6 +81652,7 @@ self: { jailbreak = true; description = "Musical pitch representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-pitch-literal" = callPackage @@ -79545,6 +81691,7 @@ self: { jailbreak = true; description = "Some useful preludes for the Music Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-score" = callPackage @@ -79587,6 +81734,7 @@ self: { jailbreak = true; description = "Interaction with Sibelius"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-suite" = callPackage @@ -79605,6 +81753,7 @@ self: { ]; description = "A set of libraries for composition, analysis and manipulation of music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-util" = callPackage @@ -79653,6 +81802,7 @@ self: { homepage = "http://github.com/metabrainz/mass-mail"; description = "Send an email to all MusicBrainz editors"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml" = callPackage @@ -79668,6 +81818,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/MusicXML"; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml2" = callPackage @@ -79761,6 +81912,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/mutable-iter"; description = "iteratees based upon mutable buffers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mute-unmute" = callPackage @@ -79827,6 +81979,7 @@ self: { jailbreak = true; description = "Client library for metaverse systems like Second Life"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mwc-random" = callPackage @@ -79884,6 +82037,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mybitcoin-sci" = callPackage @@ -79895,6 +82049,7 @@ self: { buildDepends = [ base cgi curl directory mtl process split ]; description = "Binding to mybitcoin.com's Shopping Cart Interface."; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession" = callPackage @@ -79912,6 +82067,7 @@ self: { jailbreak = true; description = "Sessions and continuations for Snap web apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession-example" = callPackage @@ -79931,6 +82087,7 @@ self: { jailbreak = true; description = "Example projects using mysnapsession"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql" = callPackage @@ -79945,6 +82102,7 @@ self: { homepage = "https://github.com/bos/mysql"; description = "A low-level MySQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { mysqlConfig = null; inherit (pkgs) zlib;}; "mysql-effect" = callPackage @@ -79962,6 +82120,7 @@ self: { homepage = "https://github.com/ibotty/mysql-effect"; description = "An extensible mysql effect using extensible-effects and mysql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple" = callPackage @@ -79980,6 +82139,7 @@ self: { homepage = "https://github.com/bos/mysql-simple"; description = "A mid-level MySQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple-quasi" = callPackage @@ -79995,6 +82155,7 @@ self: { ]; description = "Quasi-quoter for use with mysql-simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple-typed" = callPackage @@ -80012,6 +82173,7 @@ self: { homepage = "https://github.com/tolysz/mysql-simple-typed"; description = "Typed extension to mysql simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mzv" = callPackage @@ -80024,6 +82186,7 @@ self: { homepage = "http://github.com/ifigueroap/mzv"; description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "n-m" = callPackage @@ -80101,6 +82264,7 @@ self: { homepage = "http://github.com/nominolo/named-lock"; description = "A named lock that is created on demand"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "named-records" = callPackage @@ -80147,6 +82311,7 @@ self: { homepage = "http://github.com/chowells79/nano-cryptr"; description = "A threadsafe binding to glibc's crypt_r function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nano-hmac" = callPackage @@ -80160,6 +82325,7 @@ self: { homepage = "http://www.jasani.org/search/label/nano-hmac"; description = "Bindings to OpenSSL HMAC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) openssl;}; "nano-md5" = callPackage @@ -80173,6 +82339,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/nano-md5"; description = "Efficient, ByteString bindings to OpenSSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) openssl;}; "nanoAgda" = callPackage @@ -80191,6 +82358,7 @@ self: { jailbreak = true; description = "A toy dependently-typed language"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nanocurses" = callPackage @@ -80204,6 +82372,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "Simple Curses binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { curses = null;}; "nanomsg" = callPackage @@ -80272,6 +82441,7 @@ self: { homepage = "http://ezrakilty.net/projects/narc"; description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nat" = callPackage @@ -80332,6 +82502,7 @@ self: { jailbreak = true; description = "Natural numbers tagged with a type-level representation of the number"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-numbers" = callPackage @@ -80418,6 +82589,7 @@ self: { homepage = "https://github.com/nilcons/nc-indicators"; description = "CPU load and memory usage indicators for i3bar"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ncurses" = callPackage @@ -80435,6 +82607,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-ncurses/"; description = "Modernised bindings to GNU ncurses"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) ncurses;}; "neat" = callPackage @@ -80586,6 +82759,7 @@ self: { homepage = "https://github.com/kawu/nerf"; description = "Nerf, the named entity recognition tool based on linear-chain CRFs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nested-sets" = callPackage @@ -80628,6 +82802,7 @@ self: { homepage = "http://netclock.slab.org/"; description = "Netclock protocol"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netcore" = callPackage @@ -80656,6 +82831,7 @@ self: { homepage = "http://frenetic-lang.org"; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlines" = callPackage @@ -80673,6 +82849,7 @@ self: { ]; description = "Enumerator tools for text-based network protocols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlink" = callPackage @@ -80750,6 +82927,7 @@ self: { homepage = "http://github.com/DanBurton/netspec"; description = "Simplify static Networking tasks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netstring-enumerator" = callPackage @@ -80803,6 +82981,7 @@ self: { jailbreak = true; description = "FRP for controlling networks of OpenFlow switches"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-netkit" = callPackage @@ -80818,6 +82997,7 @@ self: { ]; description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-openflow" = callPackage @@ -80834,6 +83014,7 @@ self: { ]; description = "OpenFlow protocol messages, binary formats, and servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netwire" = callPackage @@ -80915,6 +83096,7 @@ self: { homepage = "http://github.com/sebnow/haskell-network-address"; description = "IP data structures and textual representation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-api-support" = callPackage @@ -80966,6 +83148,7 @@ self: { homepage = "http://github.com/tibbe/network-bytestring"; description = "Fast, memory-efficient, low-level networking"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-carbon" = callPackage @@ -81029,6 +83212,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-connection"; description = "A wrapper around a generic stream-like connection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-data" = callPackage @@ -81195,6 +83379,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-minihttp"; description = "A ByteString based library for writing HTTP(S) servers and clients"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-msg" = callPackage @@ -81283,6 +83468,7 @@ self: { ]; description = "A cross-platform RPC library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-server" = callPackage @@ -81296,6 +83482,7 @@ self: { buildDepends = [ base network unix ]; description = "A light abstraction over sockets & co. for servers"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-service" = callPackage @@ -81344,6 +83531,7 @@ self: { homepage = "https://github.com/jdnavarro/network-simple-sockaddr"; description = "network-simple for resolved addresses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-simple-tls" = callPackage @@ -81362,6 +83550,7 @@ self: { homepage = "https://github.com/k0001/network-simple-tls"; description = "Simple interface to TLS secured network sockets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-socket-options" = callPackage @@ -81414,6 +83603,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "A few network topic model implementations for bayes-stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport" = callPackage @@ -81533,6 +83723,7 @@ self: { homepage = "http://github.com/michaelmelanson/network-websocket"; description = "WebSocket library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "networked-game" = callPackage @@ -81563,6 +83754,7 @@ self: { homepage = "http://www.b7j0c.org/content/haskell-newports.html"; description = "List ports newer than N days on a FreeBSD system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newsynth" = callPackage @@ -81579,6 +83771,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/newsynth/"; description = "Exact and approximate synthesis of quantum circuits"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newt" = callPackage @@ -81601,6 +83794,7 @@ self: { jailbreak = true; description = "A trivially simple app to create things from simple templates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newtype" = callPackage @@ -81721,6 +83915,7 @@ self: { ]; description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nicify" = callPackage @@ -81755,6 +83950,7 @@ self: { homepage = "http://www.codemanic.com/uwe"; description = "Command line utility publishes Nike+ runs on blogs and Twitter"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nimber" = callPackage @@ -81780,6 +83976,7 @@ self: { homepage = "http://haskell.gonitro.io"; description = "Haskell bindings for Nitro"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nixos-types" = callPackage @@ -81791,6 +83988,7 @@ self: { homepage = "http://hackage.haskell.org/package/cabal2nix"; description = "this package is obsolete; see cabal2nix instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nkjp" = callPackage @@ -81810,6 +84008,7 @@ self: { homepage = "https://github.com/kawu/nkjp"; description = "Manipulating the National Corpus of Polish (NKJP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nlp-scores" = callPackage @@ -81852,6 +84051,7 @@ self: { pkgconfigDepends = [ glib libnm-glib ]; description = "Network Manager, binding to libnm-glib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { g = null; inherit (pkgs) glib; libnm-glib = null; nm-glib = null;}; @@ -81865,6 +84065,7 @@ self: { homepage = "https://github.com/singpolyma/NME-Haskell"; description = "Bindings to the Nyctergatis Markup Engine"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nntp" = callPackage @@ -81915,6 +84116,7 @@ self: { homepage = "http://github.com/brow/noise"; description = "A friendly language for graphic design"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "non-empty" = callPackage @@ -82043,6 +84245,7 @@ self: { buildDepends = [ base GLUT OpenGLRaw spatial-math time ]; description = "Painless 3D graphics, no affiliation with gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-gloss-examples" = callPackage @@ -82060,6 +84263,7 @@ self: { ]; description = "examples for not-gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-in-base" = callPackage @@ -82103,6 +84307,7 @@ self: { extraLibraries = [ glib gmime notmuch nsl talloc xapian zlib ]; description = "Binding for notmuch MUA library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) glib; inherit (pkgs) gmime; inherit (pkgs) notmuch; nsl = null; inherit (pkgs) talloc; inherit (pkgs) xapian; inherit (pkgs) zlib;}; @@ -82142,6 +84347,7 @@ self: { homepage = "https://bitbucket.org/wuzzeb/notmuch-web"; description = "A web interface to the notmuch email indexer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "np-extras" = callPackage @@ -82170,6 +84376,7 @@ self: { jailbreak = true; description = "Linear algebra for the numeric-prelude framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nptools" = callPackage @@ -82211,6 +84418,7 @@ self: { sha256 = "1qi1wq7wbnp3sv3c2v4185mnq80646vcsnqq16mqlshiy164wsly"; buildDepends = [ base type-level ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ntp-control" = callPackage @@ -82247,6 +84455,7 @@ self: { homepage = "https://github.com/Tener/null-canvas"; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numbering" = callPackage @@ -82323,6 +84532,7 @@ self: { homepage = "https://github.com/roelvandijk/numerals-base"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numeric-extras" = callPackage @@ -82381,6 +84591,7 @@ self: { homepage = "https://github.com/nikita-volkov/numeric-qq"; description = "Quasi-quoters for numbers of different bases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numeric-quest" = callPackage @@ -82428,6 +84639,7 @@ self: { sha256 = "0bbl7f3qd26sa92k73qni3r1jwxxrfq5k19hcvh5rgdh5ig9d6v8"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numtype" = callPackage @@ -82465,6 +84677,7 @@ self: { buildDepends = [ base bytestring mtl ncurses text ]; description = "Bored? Nyan cat!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nymphaea" = callPackage @@ -82483,6 +84696,7 @@ self: { jailbreak = true; description = "An interactive GUI for manipulating L-systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oauthenticated" = callPackage @@ -82534,6 +84748,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "Oberon0 Compiler"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "obj" = callPackage @@ -82553,6 +84768,7 @@ self: { ]; description = "Reads and writes obj models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "objectid" = callPackage @@ -82572,6 +84788,7 @@ self: { homepage = "https://github.com/tsuraan/objectid"; description = "Rather unique identifier for things that need to be stored"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "objective" = callPackage @@ -82611,11 +84828,12 @@ self: { homepage = "https://github.com/Zankoku-Okuno/octopus/"; description = "Lisp with more dynamism, more power, more simplicity"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oculus" = callPackage - ({ mkDerivation, base, either, libX11, mesa, monads-tf, ovr - , transformers, udev, vect-floating, Xinerama + ({ mkDerivation, base, either, libX11, libXinerama, mesa, monads-tf + , ovr, systemd, transformers, vect-floating }: mkDerivation { pname = "oculus"; @@ -82624,13 +84842,15 @@ self: { buildDepends = [ base either monads-tf transformers vect-floating ]; - extraLibraries = [ libX11 mesa ovr udev Xinerama ]; + extraLibraries = [ libX11 libXinerama mesa ovr systemd ]; jailbreak = true; homepage = "http://github.com/cpdurham/oculus"; description = "Oculus Rift ffi providing head tracking data"; license = stdenv.lib.licenses.bsd3; - }) { Xinerama = null; inherit (pkgs.xlibs) libX11; - inherit (pkgs) mesa; ovr = null; udev = null;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) { inherit (pkgs.xlibs) libX11; + inherit (pkgs.xlibs) libXinerama; inherit (pkgs) mesa; + ovr = null; inherit (pkgs) systemd;}; "oeis" = callPackage ({ mkDerivation, base, HTTP, HUnit, network, network-uri @@ -82692,6 +84912,7 @@ self: { homepage = "https://github.com/fthomas/ohloh-hs"; description = "Interface to the Ohloh API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oi" = callPackage @@ -82720,6 +84941,7 @@ self: { jailbreak = true; description = "wrapper for OIS input manager for use with hogre"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { OIS = null;}; "old-locale_1_0_0_7" = callPackage @@ -82763,6 +84985,7 @@ self: { jailbreak = true; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omaketex" = callPackage @@ -82782,6 +85005,7 @@ self: { homepage = "https://github.com/pcapriotti/omaketex"; description = "A simple tool to generate OMakefile for latex files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omega" = callPackage @@ -82818,6 +85042,7 @@ self: { jailbreak = true; description = "data encoding and decoding command line utilities"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "on-a-horse" = callPackage @@ -82837,6 +85062,7 @@ self: { homepage = "http://haskell.on-a-horse.org"; description = "\"Haskell on a Horse\" - A combinatorial web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "on-demand-ssh-tunnel" = callPackage @@ -82912,6 +85138,7 @@ self: { buildDepends = [ base smallcheck ]; description = "Code for the Haskell course taught at the Odessa National University in 2012"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oo-prototypes" = callPackage @@ -82969,6 +85196,7 @@ self: { homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "open-typerep" = callPackage @@ -82996,6 +85224,7 @@ self: { homepage = "https://github.com/RobotGymnast/open-union"; description = "Extensible, type-safe unions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "open-witness" = callPackage @@ -83008,6 +85237,7 @@ self: { jailbreak = true; description = "open witnesses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opencv-raw" = callPackage @@ -83022,6 +85252,7 @@ self: { homepage = "www.github.com/arjuncomar/opencv-raw.git"; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -83051,6 +85282,7 @@ self: { homepage = "https://github.com/singpolyma/openexchangerates-haskell"; description = "Fetch exchange rates from OpenExchangeRates.org"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opengles" = callPackage @@ -83068,6 +85300,7 @@ self: { extraLibraries = [ EGL GLESv2 ]; description = "OpenGL ES 2.0 and 3.0 with EGL 1.4"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { EGL = null; GLESv2 = null;}; "openid" = callPackage @@ -83086,6 +85319,7 @@ self: { homepage = "http://github.com/elliottt/hsopenid"; description = "An implementation of the OpenID-2.0 spec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp" = callPackage @@ -83129,6 +85363,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-Crypto"; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp-asciiarmor" = callPackage @@ -83176,6 +85411,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-CryptoAPI"; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opensoundcontrol-ht" = callPackage @@ -83192,6 +85428,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell OpenSoundControl utilities"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openssl-createkey" = callPackage @@ -83233,6 +85470,7 @@ self: { buildDepends = [ base opentheory-primitive QuickCheck random ]; description = "The Haskell base"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opentheory-char" = callPackage @@ -83251,6 +85489,7 @@ self: { ]; description = "Unicode characters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opentheory-parser" = callPackage @@ -83268,6 +85507,7 @@ self: { ]; description = "Stream parsers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opentheory-prime" = callPackage @@ -83285,6 +85525,7 @@ self: { ]; description = "Prime numbers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opentheory-primitive" = callPackage @@ -83298,6 +85539,7 @@ self: { buildDepends = [ base QuickCheck random ]; description = "Haskell primitives used by OpenTheory packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "operational" = callPackage @@ -83361,6 +85603,7 @@ self: { homepage = "https://github.com/tsuraan/optimal-blocks"; description = "Optimal Block boundary determination for rsync-like behaviours"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "optimization" = callPackage @@ -83398,6 +85641,7 @@ self: { homepage = "http://optimusprime.posterous.com/"; description = "A supercompiler for f-lite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "optional" = callPackage @@ -83511,6 +85755,7 @@ self: { ]; description = "An API client for http://orchestrate.io/."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid" = callPackage @@ -83531,6 +85776,7 @@ self: { jailbreak = true; description = "Haskell Wiki Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid-demo" = callPackage @@ -83550,6 +85796,7 @@ self: { jailbreak = true; description = "Haskell Wiki Demo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ord-adhoc" = callPackage @@ -83650,6 +85897,7 @@ self: { jailbreak = true; description = "A parser and writer for org-mode flavored documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "os-release" = callPackage @@ -83681,6 +85929,7 @@ self: { ]; description = "Show keys pressed with an on-screen display (Linux only)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "osm-download" = callPackage @@ -83703,6 +85952,7 @@ self: { jailbreak = true; description = "Download Open Street Map tiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "osx-ar" = callPackage @@ -83735,6 +85985,7 @@ self: { homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ottparse-pretty" = callPackage @@ -83779,6 +86030,7 @@ self: { jailbreak = true; description = "Haskell Package Versioning Tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packdeps" = callPackage @@ -83833,6 +86085,7 @@ self: { jailbreak = true; description = "(Deprecated) Packed Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packer" = callPackage @@ -83903,6 +86156,7 @@ self: { homepage = "https://github.com/fumieval/padKONTROL"; description = "Controlling padKONTROL native mode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pagerduty" = callPackage @@ -83928,6 +86182,7 @@ self: { homepage = "http://github.com/brendanhay/pagerduty"; description = "Client library for PagerDuty Integration and REST APIs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "palette" = callPackage @@ -83987,6 +86242,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Panda"; description = "A simple static blog engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc" = callPackage @@ -84095,6 +86351,7 @@ self: { buildDepends = [ base pandoc ]; description = "Literate Haskell support for GitHub's Markdown flavor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pango" = callPackage @@ -84113,6 +86370,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) cairo; inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -84132,6 +86390,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; description = "packrat parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pappy" = callPackage @@ -84179,6 +86438,7 @@ self: { jailbreak = true; description = "Paragon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parallel" = callPackage @@ -84244,6 +86504,7 @@ self: { homepage = "http://code.haskell.org/parameterized-data"; description = "Parameterized data library implementing lightweight dependent types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco" = callPackage @@ -84255,6 +86516,7 @@ self: { buildDepends = [ base mtl ]; description = "Generalised parser combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-attoparsec" = callPackage @@ -84266,6 +86528,7 @@ self: { buildDepends = [ attoparsec base mtl parco ]; description = "Generalised parser combinators - Attoparsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-parsec" = callPackage @@ -84277,6 +86540,7 @@ self: { buildDepends = [ base mtl parco parsec ]; description = "Generalised parser combinators - Parsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parcom-lib" = callPackage @@ -84320,6 +86584,7 @@ self: { jailbreak = true; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parport" = callPackage @@ -84361,6 +86626,7 @@ self: { homepage = "http://github.com/gregwebs/cmdargs-help"; description = "generate command line arguments from a --help output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parseargs" = callPackage @@ -84543,6 +86809,7 @@ self: { buildDepends = [ base mtl parsec ]; homepage = "http://naesten.dyndns.org:8080/repos/parsely"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser-helper" = callPackage @@ -84557,6 +86824,7 @@ self: { jailbreak = true; description = "Prints Haskell parse trees in JSON"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parsergen" = callPackage @@ -84684,6 +86952,7 @@ self: { jailbreak = true; description = "Haskell 98 Partial Lenses"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "partial-uri" = callPackage @@ -84718,6 +86987,7 @@ self: { homepage = "https://github.com/startling/partly"; description = "Inspect, create, and alter MBRs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "passage" = callPackage @@ -84757,6 +87027,7 @@ self: { buildDepends = [ base HTTP network ]; description = "Interface to the past.is URL shortening service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pasty" = callPackage @@ -84771,6 +87042,7 @@ self: { homepage = "http://github.com/markusle/pasty/tree/master"; description = "A simple command line pasting utility"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "patch-combinators" = callPackage @@ -84804,6 +87076,7 @@ self: { homepage = "http://code.haskell.org/~thielema/patch-image/"; description = "Compose a big image from overlapping parts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "path-pieces" = callPackage @@ -84829,6 +87102,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A toy pathfinding library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pathtype" = callPackage @@ -84895,6 +87169,7 @@ self: { homepage = "http://github.com/toschoo/mom"; description = "Common patterns in message-oriented applications"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paymill" = callPackage @@ -84925,6 +87200,7 @@ self: { homepage = "http://projects.haskell.org/paypal-api/"; description = "PayPal API, currently supporting \"ButtonManager\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pb" = callPackage @@ -84938,6 +87214,7 @@ self: { buildDepends = [ base containers HTTP network process ]; description = "pastebin command line application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pbc4hs" = callPackage @@ -85170,6 +87447,7 @@ self: { homepage = "https://github.com/Yuras/pdf-toolbox"; description = "Simple pdf viewer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pdf2line" = callPackage @@ -85230,6 +87508,7 @@ self: { ]; description = "pdynload is polymorphic dynamic linking library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peakachu" = callPackage @@ -85246,6 +87525,7 @@ self: { jailbreak = true; description = "Experiemental library for composable interactive programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peano-inf" = callPackage @@ -85276,6 +87556,7 @@ self: { ]; description = "pec embedded compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pecoff" = callPackage @@ -85384,6 +87665,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Extensible double-entry accounting system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-bin" = callPackage @@ -85404,6 +87686,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-lib" = callPackage @@ -85427,6 +87710,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peparser" = callPackage @@ -85439,6 +87723,7 @@ self: { homepage = "https://github.com/igraves/peparser-haskell"; description = "A parser for PE object files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perceptron" = callPackage @@ -85476,6 +87761,7 @@ self: { homepage = "https://github.com/Cognimeta/perdure"; description = "Robust persistence for acyclic immutable data"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perm" = callPackage @@ -85493,6 +87779,7 @@ self: { homepage = "https://github.com/sonyandy/perm"; description = "permutation Applicative and Monad with many mtl instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "permutation" = callPackage @@ -85516,6 +87803,7 @@ self: { buildDepends = [ base mtl ]; description = "Generalised permutation parser combinator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistable-record" = callPackage @@ -85605,6 +87893,7 @@ self: { ]; description = "Declare Persistent entities using SQL SELECT query syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-map" = callPackage @@ -85623,6 +87912,7 @@ self: { homepage = "http://darcs.monoid.at/persistent-map"; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-mongoDB" = callPackage @@ -85661,6 +87951,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using MySQL database server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-odbc" = callPackage @@ -85721,6 +88012,7 @@ self: { homepage = "https://github.com/mstone/persistent-protobuf"; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-redis" = callPackage @@ -85758,6 +88050,7 @@ self: { homepage = "https://github.com/acfoltzer/persistent-refs"; description = "Haskell references backed by an IntMap for persistence and reversibility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-sqlite" = callPackage @@ -85821,6 +88114,7 @@ self: { homepage = "https://github.com/travitch/persistent-vector"; description = "A persistent sequence based on array mapped tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-zookeeper" = callPackage @@ -85850,6 +88144,7 @@ self: { ]; description = "Backend for persistent library using Zookeeper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persona" = callPackage @@ -85867,6 +88162,7 @@ self: { homepage = "https://github.com/frasertweedale/hs-persona"; description = "Persona (BrowserID) library"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pesca" = callPackage @@ -85881,6 +88177,7 @@ self: { homepage = "http://www.cs.chalmers.se/~aarne/pesca/"; description = "Proof Editor for Sequent Calculus"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peyotls" = callPackage @@ -85908,6 +88205,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pez" = callPackage @@ -85926,6 +88224,7 @@ self: { homepage = "http://brandon.si/code/pez-zipper-library-released/"; description = "A Pretty Extraordinary Zipper library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness" = callPackage @@ -86002,6 +88301,7 @@ self: { homepage = "http://github.com/glehel/phasechange"; description = "Freezing, thawing, and copy elision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phash" = callPackage @@ -86040,6 +88340,7 @@ self: { homepage = "https://github.com/gurgeh/haskell-phone-push"; description = "Push notifications for Android and iOS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phonetic-code" = callPackage @@ -86067,6 +88368,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Phooey"; description = "Functional user interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "photoname" = callPackage @@ -86089,6 +88391,7 @@ self: { homepage = "http://ui3.info/d/proj/photoname.html"; description = "Rename JPEG photo files based on shoot date"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phraskell" = callPackage @@ -86104,6 +88407,7 @@ self: { homepage = "https://github.com/skypers/phraskell"; description = "A fractal viewer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phybin" = callPackage @@ -86133,6 +88437,7 @@ self: { homepage = "http://www.cs.indiana.edu/~rrnewton/projects/phybin/"; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pi-calculus" = callPackage @@ -86154,6 +88459,7 @@ self: { homepage = "https://github.com/renzyq19/pi-calculus"; description = "Applied pi-calculus interpreter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pianola" = callPackage @@ -86176,6 +88482,7 @@ self: { ]; description = "Remotely controlling Java Swing applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "picologic" = callPackage @@ -86190,6 +88497,7 @@ self: { homepage = "https://github.com/sdiehl/picologic"; description = "Utilities for symbolic predicate logic expressions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "picoparsec" = callPackage @@ -86237,6 +88545,7 @@ self: { buildDepends = [ array base containers Imlib mtl ]; description = "A Piet interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "piki" = callPackage @@ -86251,6 +88560,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/piki/"; description = "Yet another text-to-html converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes" = callPackage @@ -86377,6 +88687,7 @@ self: { homepage = "https://github.com/nikita-volkov/pipes-cereal-plus"; description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-concurrency" = callPackage @@ -86402,6 +88713,7 @@ self: { homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Conduit adapters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-core" = callPackage @@ -86576,6 +88888,7 @@ self: { homepage = "https://github.com/k0001/pipes-network-tls"; description = "TLS-secured network connections support for pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-p2p" = callPackage @@ -86594,6 +88907,7 @@ self: { homepage = "https://github.com/jdnavarro/pipes-p2p"; description = "P2P network nodes with pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-p2p-examples" = callPackage @@ -86613,6 +88927,7 @@ self: { homepage = "https://github.com/jdnavarro/pipes-p2p-examples"; description = "Examples using pipes-p2p"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-parse" = callPackage @@ -86791,6 +89106,7 @@ self: { jailbreak = true; description = "A dependently typed core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pit" = callPackage @@ -86811,6 +89127,7 @@ self: { homepage = "https://github.com/chiro/haskell-pit"; description = "Account management tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pkcs1" = callPackage @@ -86836,6 +89153,7 @@ self: { buildDepends = [ base Cabal split ]; description = "Package dependency graph for installed packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pktree" = callPackage @@ -86877,6 +89195,7 @@ self: { homepage = "https://secure.plaimi.net/works/plailude"; description = "plaimi's prelude"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "planar-graph" = callPackage @@ -86925,6 +89244,7 @@ self: { homepage = "https://github.com/pjones/playlists"; description = "Library and executable for working with playlist files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plist" = callPackage @@ -86956,6 +89276,7 @@ self: { homepage = "https://github.com/singpolyma/plivo-haskell"; description = "Plivo API wrapper for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot" = callPackage @@ -86972,6 +89293,7 @@ self: { homepage = "http://github.com/amcphail/plot"; description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot-gtk" = callPackage @@ -86984,6 +89306,7 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot-gtk3" = callPackage @@ -86996,6 +89319,7 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK3 plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot-lab" = callPackage @@ -87010,6 +89334,7 @@ self: { homepage = "https://github.com/sumitsahrawat/plot-lab"; description = "A plotting tool with Mathematica like Manipulation abilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plotserver-api" = callPackage @@ -87054,6 +89379,7 @@ self: { testDepends = [ base directory process ]; description = "Automatic recompilation and reloading of haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plugins-multistage" = callPackage @@ -87110,6 +89436,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/png-file"; description = "read/write png file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pngload" = callPackage @@ -87123,6 +89450,7 @@ self: { buildDepends = [ array base bytestring haskell98 mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pngload-fixed" = callPackage @@ -87134,6 +89462,7 @@ self: { buildDepends = [ array base bytestring mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pnm" = callPackage @@ -87250,6 +89579,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Lenses"; description = "Pointless Lenses library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointless-rewrite" = callPackage @@ -87265,6 +89595,7 @@ self: { ]; description = "Pointless Rewrite library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poker-eval" = callPackage @@ -87309,6 +89640,7 @@ self: { homepage = "https://github.com/kawu/polh/tree/master/lexicon"; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polimorf" = callPackage @@ -87401,6 +89733,7 @@ self: { ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polysoup" = callPackage @@ -87425,6 +89758,7 @@ self: { buildDepends = [ base ]; description = "Typeable for polymorphic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polytypeable-utils" = callPackage @@ -87436,6 +89770,7 @@ self: { buildDepends = [ base haskell98 polytypeable ]; description = "Utilities for polytypeable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ponder" = callPackage @@ -87469,6 +89804,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-mediaserver/"; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xmpp" = callPackage @@ -87506,6 +89842,7 @@ self: { homepage = "https://github.com/pontarius/pontarius-xmpp/"; description = "An XMPP client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xpmn" = callPackage @@ -87523,6 +89860,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-xpmn/"; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pony" = callPackage @@ -87551,6 +89889,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Thread-safe resource pools. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pool-conduit" = callPackage @@ -87567,6 +89906,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Resource pool allocations via ResourceT. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pooled-io" = callPackage @@ -87605,6 +89945,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/popenhs/"; description = "popenhs is a popen-like library for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poppler" = callPackage @@ -87623,6 +89964,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) cairo; inherit (pkgs) gdk_pixbuf; inherit (pkgs) glib; inherit (pkgs.gnome) gtk; inherit (pkgs.gnome) pango; popplerGlib = null;}; @@ -87701,6 +90043,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/ports/"; description = "The Haskell Ports Library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "positive" = callPackage @@ -87713,6 +90056,7 @@ self: { jailbreak = true; description = "Positive integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "posix-acl" = callPackage @@ -87732,6 +90076,7 @@ self: { homepage = "https://github.com/tensor5/posix-acl"; description = "Support for Posix ACL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) acl;}; "posix-escape" = callPackage @@ -87780,6 +90125,7 @@ self: { homepage = "https://bitbucket.org/merijnv/posix-pty"; description = "Pseudo terminal interaction with subprocesses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "posix-realtime" = callPackage @@ -87815,6 +90161,7 @@ self: { buildDepends = [ base unix ]; description = "Low-level wrapping of POSIX waitpid(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "possible" = callPackage @@ -87872,6 +90219,7 @@ self: { homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-copy-escape" = callPackage @@ -87991,6 +90339,7 @@ self: { homepage = "https://github.com/tolysz/postgresql-simple-typed"; description = "Typed extension for PostgreSQL simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-typed" = callPackage @@ -88012,6 +90361,7 @@ self: { homepage = "https://github.com/dylex/postgresql-typed"; description = "A PostgreSQL access library with compile-time SQL type inference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postie" = callPackage @@ -88072,6 +90422,7 @@ self: { homepage = "http://github.com/peti/postmaster"; description = "Postmaster ESMTP Server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) adns; inherit (pkgs) openssl;}; "powermate" = callPackage @@ -88084,6 +90435,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "PowerMate bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "powerpc" = callPackage @@ -88121,6 +90473,7 @@ self: { homepage = "http://hub.darcs.net/shelarcy/pqc"; description = "Parallel batch driver for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pqueue" = callPackage @@ -88148,6 +90501,7 @@ self: { jailbreak = true; description = "Fully encapsulated monad transformers with queuelike functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "practice-room" = callPackage @@ -88164,6 +90518,7 @@ self: { homepage = "http://github.com/nfjinjing/practice-room"; description = "Practice Room"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "precis" = callPackage @@ -88184,6 +90539,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Diff Cabal packages"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "predicates" = callPackage @@ -88281,6 +90637,7 @@ self: { jailbreak = true; description = "A library for building a prefork-style server quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pregame" = callPackage @@ -88412,6 +90769,7 @@ self: { homepage = "http://github.com/bickfordb/text-press"; description = "Text template library targeted at the web / HTML generation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prettify" = callPackage @@ -88593,6 +90951,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "ImageBoard on Happstack and HSP"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-bot" = callPackage @@ -88612,6 +90971,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "printf-mauke" = callPackage @@ -88655,6 +91015,7 @@ self: { homepage = "http://code.haskell.org/~mokus/priority-queue"; description = "Simple implementation of a priority queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "priority-sync" = callPackage @@ -88807,6 +91168,7 @@ self: { homepage = "https://github.com/garious/process-iterio"; description = "IterIO Process Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-leksah" = callPackage @@ -88819,6 +91181,7 @@ self: { jailbreak = true; description = "Process libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-listlike" = callPackage @@ -88849,6 +91212,7 @@ self: { homepage = "https://src.seereason.com/process-progress"; description = "Run a process and do reportsing on its progress"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-qq" = callPackage @@ -88867,6 +91231,7 @@ self: { homepage = "http://github.com/tanakh/process-qq"; description = "Quasi-Quoters for exec process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-streaming" = callPackage @@ -88926,6 +91291,7 @@ self: { buildDepends = [ base procrastinating-variable ]; description = "Pure structures that can be incrementally created in impure code"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procrastinating-variable" = callPackage @@ -88938,6 +91304,7 @@ self: { homepage = "http://github.com/gcross/procrastinating-variable"; description = "Haskell values that cannot be evaluated immediately"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procstat" = callPackage @@ -88951,6 +91318,7 @@ self: { homepage = "http://closure.ath.cx/procstat"; description = "get information on processes in Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proctest" = callPackage @@ -88998,6 +91366,7 @@ self: { homepage = "http://antiope.com/downloads.html"; description = "Convert GHC profiles into GraphViz's dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prof2pretty" = callPackage @@ -89048,6 +91417,7 @@ self: { homepage = "http://github.com/ekmett/profunctor-extras/"; description = "This package has been absorbed into profunctors 4.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "profunctors" = callPackage @@ -89076,6 +91446,7 @@ self: { buildDepends = [ base time ]; description = "Simple progress tracking & projection library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressbar" = callPackage @@ -89089,6 +91460,7 @@ self: { buildDepends = [ base io-reactive ]; description = "Progressbar API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progression" = callPackage @@ -89107,6 +91479,7 @@ self: { homepage = "http://chplib.wordpress.com/2010/02/04/progression-supporting-optimisation-in-haskell/"; description = "Automates the recording and graphing of criterion benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressive" = callPackage @@ -89127,6 +91500,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/progression"; description = "Multilabel classification model which learns sequentially (online)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proj4-hs-bindings" = callPackage @@ -89139,6 +91513,7 @@ self: { extraLibraries = [ proj ]; description = "Haskell bindings for the Proj4 C dynamic library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) proj;}; "project-template" = callPackage @@ -89210,6 +91585,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A command line tool to visualize query resolution in Prolog"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prolog-graph-lib" = callPackage @@ -89222,6 +91598,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "Generating images of resolution trees for Prolog queries"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "promise" = callPackage @@ -89249,6 +91626,7 @@ self: { ]; description = "Functional synthesis of images and animations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "propellor" = callPackage @@ -89314,6 +91692,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/proplang/"; description = "A library for functional GUI development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "props" = callPackage @@ -89374,6 +91753,7 @@ self: { homepage = "https://github.com/nicta/protobuf-native"; description = "Protocol Buffers via C++"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) protobuf;}; "protocol-buffers" = callPackage @@ -89469,6 +91849,7 @@ self: { homepage = "https://github.com/prove-everywhere/server"; description = "The server for ProveEverywhere"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proxy-kindness" = callPackage @@ -89482,6 +91863,7 @@ self: { homepage = "https://github.com/jberryman/proxy-kindness"; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pseudomacros" = callPackage @@ -89532,6 +91914,7 @@ self: { jailbreak = true; description = "Pipe stdin to a redis pub/sub channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "publicsuffixlist" = callPackage @@ -89571,6 +91954,7 @@ self: { homepage = "https://github.com/litherum/publicsuffixlist"; description = "Create the publicsuffixlist package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pubnub" = callPackage @@ -89621,6 +92005,7 @@ self: { homepage = "http://projects.haskell.org/pubsub/"; description = "A library for Google/SixApart pubsub hub interaction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puffytools" = callPackage @@ -89682,6 +92067,7 @@ self: { homepage = "http://pugscode.org/"; description = "DrIFT with pugs-specific rules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugs-HsSyck" = callPackage @@ -89693,6 +92079,7 @@ self: { buildDepends = [ base bytestring ]; description = "Fast, lightweight YAML loader and dumper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugs-compat" = callPackage @@ -89711,6 +92098,7 @@ self: { ]; description = "Portable Haskell/POSIX layer for Pugs"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugs-hsregex" = callPackage @@ -89723,6 +92111,7 @@ self: { homepage = "http://repetae.net/john/computer/haskell/hsregex/"; description = "Haskell PCRE binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pulse-simple" = callPackage @@ -89735,6 +92124,7 @@ self: { extraLibraries = [ pulse-simple ]; description = "binding to Simple API of pulseaudio"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { pulse-simple = null;}; "punkt" = callPackage @@ -89754,6 +92144,7 @@ self: { homepage = "https://github.com/bryant/punkt"; description = "Multilingual unsupervised sentence tokenization with Punkt"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "punycode" = callPackage @@ -89790,6 +92181,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A program that displays the puppet resources associated to a node given .pp files."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pure-cdb" = callPackage @@ -89945,6 +92337,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending push notifications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-ccs" = callPackage @@ -89965,6 +92358,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-general" = callPackage @@ -89984,6 +92378,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A general library for sending/receiving push notif. through dif. services."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pushme" = callPackage @@ -90008,6 +92403,7 @@ self: { homepage = "https://github.com/jwiegley/pushme"; description = "Tool to synchronize multiple directories with rsync, zfs or git-annex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "putlenses" = callPackage @@ -90024,6 +92420,7 @@ self: { ]; description = "Put-based lens library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw" = callPackage @@ -90049,6 +92446,7 @@ self: { ]; description = "Creating graphics for pencil puzzles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw-cmdline" = callPackage @@ -90068,6 +92466,7 @@ self: { jailbreak = true; description = "Creating graphics for pencil puzzles, command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pvd" = callPackage @@ -90088,6 +92487,7 @@ self: { homepage = "http://code.haskell.org/pvd"; description = "A photo viewer daemon application with remote controlling abilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) libdevil;}; "pwstore-cli" = callPackage @@ -90231,6 +92631,7 @@ self: { extraLibraries = [ qd ]; description = "double-double and quad-double number type via libqd"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { qd = null;}; "qd-vec" = callPackage @@ -90242,6 +92643,7 @@ self: { buildDepends = [ base qd Vec ]; description = "'Vec' instances for 'qd' types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qhull-simple" = callPackage @@ -90255,6 +92657,7 @@ self: { homepage = "http://nonempty.org/software/haskell-qhull-simple"; description = "Simple bindings to Qhull, a library for computing convex hulls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) qhull;}; "qrcode" = callPackage @@ -90353,6 +92756,7 @@ self: { homepage = "https://github.com/jstepien/qudb"; description = "Quite Useless DB"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "querystring-pickle" = callPackage @@ -90370,6 +92774,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from query strings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "questioner" = callPackage @@ -90384,6 +92789,7 @@ self: { homepage = "https://github.com/yamadapc/haskell-questioner.git"; description = "A package for prompting values from the command-line"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "queue" = callPackage @@ -90407,6 +92813,7 @@ self: { buildDepends = [ array base containers mtl stateful-mtl ]; description = "A library of queuelike data structures, both functional and stateful"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quick-generator" = callPackage @@ -90475,6 +92882,7 @@ self: { ]; description = "Automating QuickCheck for polymorphic and overlaoded properties"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-properties" = callPackage @@ -90530,6 +92938,7 @@ self: { homepage = "http://github.com/audreyt/quickcheck-regex/"; description = "Generate regex-constrained strings for QuickCheck"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-relaxng" = callPackage @@ -90546,6 +92955,7 @@ self: { homepage = "http://github.com/audreyt/quickcheck-relaxng/"; description = "Generate RelaxNG-constrained XML documents for QuickCheck"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-rematch" = callPackage @@ -90560,6 +92970,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "QuickCheck support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-script" = callPackage @@ -90642,6 +93053,7 @@ self: { buildDepends = [ base vector vector-algorithms ]; description = "Very fast and memory-compact query-only set and map structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickspec" = callPackage @@ -90672,6 +93084,7 @@ self: { homepage = "https://github.com/davidsiegel/quicktest"; description = "A reflective batch tester for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickwebapp" = callPackage @@ -90707,6 +93120,7 @@ self: { homepage = "https://github.com/talw/quoridor-hs"; description = "A Quoridor implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rabocsv2qif" = callPackage @@ -90765,6 +93179,7 @@ self: { homepage = "https://github.com/klangner/radium"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radium-formula-parser" = callPackage @@ -90780,6 +93195,7 @@ self: { homepage = "https://github.com/klangner/radium-formula-parser"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rados-haskell" = callPackage @@ -90818,6 +93234,7 @@ self: { homepage = "https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14"; description = "Compiler and editor for the esolang rail"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbow" = callPackage @@ -90882,6 +93299,7 @@ self: { homepage = "http://github.com/YoEight/rakhana"; description = "Stream based PDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ralist" = callPackage @@ -90905,6 +93323,7 @@ self: { homepage = "http://github.com/moonmaster9000/rallod"; description = "'$' in reverse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rand-vars" = callPackage @@ -90969,6 +93388,7 @@ self: { jailbreak = true; description = "A simple random generator library for extensible-effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-effin" = callPackage @@ -91052,6 +93472,7 @@ self: { buildDepends = [ base binary bytestring random ]; description = "An infinite stream of random data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "randomgen" = callPackage @@ -91112,6 +93533,7 @@ self: { jailbreak = true; description = "This has a bunch of code for specifying and managing ranges in your code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "range-set-list" = callPackage @@ -91148,6 +93570,7 @@ self: { homepage = "https://github.com/JohnLato/range-space"; description = "A Range type with vector-space instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rangemin" = callPackage @@ -91159,6 +93582,7 @@ self: { buildDepends = [ base containers primitive vector ]; description = "Linear range-min algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ranges" = callPackage @@ -91272,6 +93696,7 @@ self: { homepage = "http://bitbucket.org/dpwiz/raven-haskell"; description = "Sentry http interface for Scotty web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raw-strings-qq" = callPackage @@ -91314,6 +93739,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Mask nucleotide (EST) sequences in Fasta format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rclient" = callPackage @@ -91355,6 +93781,7 @@ self: { homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdioh" = callPackage @@ -91373,6 +93800,7 @@ self: { ]; description = "A Haskell wrapper for Rdio's API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdtsc" = callPackage @@ -91457,6 +93885,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive"; description = "Push-pull functional reactive programming"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-bacon" = callPackage @@ -91470,6 +93899,7 @@ self: { homepage = "http://github.com/raimohanska/reactive-bacon"; description = "FRP (functional reactive programming) framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-balsa" = callPackage @@ -91492,6 +93922,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa"; description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana" = callPackage @@ -91531,6 +93962,7 @@ self: { homepage = "https://github.com/JPMoresmau/reactive-banana-sdl"; description = "Reactive Banana bindings for SDL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-threepenny" = callPackage @@ -91546,6 +93978,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using threepenny-gui"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-wx" = callPackage @@ -91561,6 +93994,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-fieldtrip" = callPackage @@ -91578,6 +94012,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-fieldtrip"; description = "Connect Reactive and FieldTrip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-glut" = callPackage @@ -91592,6 +94027,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-glut"; description = "Connects Reactive and GLUT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-haskell" = callPackage @@ -91629,6 +94065,7 @@ self: { homepage = "https://github.com/strager/reactive-thread"; description = "Reactive programming via imperative threads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactor" = callPackage @@ -91647,6 +94084,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reactor - task parallel reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "read-bounded" = callPackage @@ -91682,6 +94120,7 @@ self: { buildDepends = [ base process ]; description = "An interface to the GNU readline library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "readline-statevar" = callPackage @@ -91693,6 +94132,7 @@ self: { buildDepends = [ base readline StateVar ]; description = "Readline with variables (setX/getY) wrapped in state vars"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "readpyc" = callPackage @@ -91720,6 +94160,7 @@ self: { homepage = "http://website-ckkashyap.rhcloud.com"; description = "A really simple XML parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-lens" = callPackage @@ -91774,6 +94215,7 @@ self: { homepage = "github.com/lassoinc/records-th"; description = "Template Haskell declarations for the records package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "recursion-schemes" = callPackage @@ -91804,6 +94246,7 @@ self: { homepage = "https://github.com/joeyadams/haskell-recursive-line-count"; description = "Count lines in files and display them hierarchically"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "redHandlers" = callPackage @@ -91822,6 +94265,7 @@ self: { jailbreak = true; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "redis" = callPackage @@ -91968,6 +94412,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ref-fd" = callPackage @@ -92075,6 +94520,7 @@ self: { homepage = "https://github.com/Raynes/refh"; description = "A command-line tool for pasting to https://www.refheap.com"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflection" = callPackage @@ -92101,6 +94547,7 @@ self: { homepage = "http://github.com/jfischoff/reflection-extras"; description = "Utilities for the reflection package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflection-without-remorse" = callPackage @@ -92178,6 +94625,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Add support for using HSP with Reform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-applicative" = callPackage @@ -92250,6 +94698,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-regex-deriv/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-dfa" = callPackage @@ -92262,6 +94711,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-easy" = callPackage @@ -92296,6 +94746,7 @@ self: { homepage = "https://github.com/audreyt/regex-genex"; description = "From a regex, generate all possible strings it can match"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-parsec" = callPackage @@ -92308,6 +94759,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-pcre" = callPackage @@ -92352,6 +94804,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-posix" = callPackage @@ -92469,6 +94922,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) tre;}; "regex-xmlschema" = callPackage @@ -92482,6 +94936,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; description = "A regular expression library for W3C XML Schema regular expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexchar" = callPackage @@ -92531,6 +94986,7 @@ self: { homepage = "http://github.com/baldo/regexp-tries"; description = "Regular Expressions on Tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexpr" = callPackage @@ -92568,6 +95024,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/regexqq"; description = "A quasiquoter for PCRE regexes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regional-pointers" = callPackage @@ -92582,6 +95039,7 @@ self: { homepage = "https://github.com/basvandijk/regional-pointers/"; description = "Regional memory pointers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions" = callPackage @@ -92599,6 +95057,7 @@ self: { homepage = "https://github.com/basvandijk/regions/"; description = "Provides the region monad for safely opening and working with scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadsfd" = callPackage @@ -92615,6 +95074,7 @@ self: { jailbreak = true; description = "Monads-fd instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadstf" = callPackage @@ -92632,6 +95092,7 @@ self: { homepage = "https://github.com/basvandijk/regions-monadstf/"; description = "Monads-tf instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-mtl" = callPackage @@ -92645,6 +95106,7 @@ self: { homepage = "https://github.com/basvandijk/regions-mtl/"; description = "mtl instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular" = callPackage @@ -92668,6 +95130,7 @@ self: { jailbreak = true; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-web" = callPackage @@ -92685,6 +95148,7 @@ self: { homepage = "http://github.com/chriseidhof/regular-web"; description = "Generic programming for the web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-xmlpickler" = callPackage @@ -92712,6 +95176,7 @@ self: { homepage = "https://github.com/mrVanDalo/reheat"; description = "to make notes and reduce impact on idle time on writing other programms"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rehoo" = callPackage @@ -92757,6 +95222,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Serialize data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reinterpret-cast" = callPackage @@ -92813,6 +95279,7 @@ self: { homepage = "https://github.com/yuga/haskell-relational-record-driver-postgresql8"; description = "PostgreSQL v8.x driver for haskell-relational-record"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "relational-query" = callPackage @@ -92835,6 +95302,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Typeful, Modular, Relational, algebraic query engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "relational-query-HDBC" = callPackage @@ -92854,6 +95322,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "HDBC instance of relational join and typed query for HDBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "relational-record" = callPackage @@ -92866,6 +95335,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Meta package of Relational Record"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "relational-record-examples" = callPackage @@ -92885,6 +95355,7 @@ self: { ]; description = "Examples of Haskell Relationa Record"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "relational-schemas" = callPackage @@ -92902,6 +95373,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "RDBMSs' schema templates for relational-query"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "relative-date" = callPackage @@ -92938,6 +95410,7 @@ self: { testDepends = [ base hspec HUnit ]; description = "A simple api for matchers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rematch-text" = callPackage @@ -92950,6 +95423,7 @@ self: { testDepends = [ base hspec HUnit rematch text ]; description = "`rematch` matchers for Data.Text"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote" = callPackage @@ -92981,6 +95455,7 @@ self: { homepage = "https://github.com/octomarat/HaskellDebugger"; description = "Interface to ghci debugger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remotion" = callPackage @@ -93015,6 +95490,7 @@ self: { homepage = "https://github.com/nikita-volkov/remotion"; description = "A library for client-server applications based on custom protocols"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reord" = callPackage @@ -93042,6 +95518,7 @@ self: { jailbreak = true; description = "Define compound types that do not depend on member order"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa" = callPackage @@ -93084,6 +95561,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-devil" = callPackage @@ -93132,6 +95610,7 @@ self: { testDepends = [ base repa tasty tasty-hunit tasty-quickcheck ]; description = "Perform fft with repa via FFTW"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-io" = callPackage @@ -93163,6 +95642,7 @@ self: { jailbreak = true; description = "Data Flow Fusion GHC Plugin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-series" = callPackage @@ -93175,6 +95655,7 @@ self: { jailbreak = true; description = "Series Expressionss API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-sndfile" = callPackage @@ -93212,6 +95693,7 @@ self: { homepage = "https://github.com/cgo/hsimage"; description = "Provides high-level access to webcams"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl" = callPackage @@ -93225,6 +95707,7 @@ self: { homepage = "https://github.com/mikeplus64/repl"; description = "IRC friendly REPL library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl-toolkit" = callPackage @@ -93243,6 +95726,7 @@ self: { homepage = "https://github.com/ombocomp/repl-toolkit"; description = "Toolkit for quickly whipping up command-line interfaces"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repline" = callPackage @@ -93255,6 +95739,7 @@ self: { jailbreak = true; description = "Haskeline wrapper for GHCi-like REPL interfaces"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repo-based-blog" = callPackage @@ -93299,6 +95784,7 @@ self: { homepage = "https://github.com/basvandijk/repr"; description = "Render overloaded expressions to their textual representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr-tree-syb" = callPackage @@ -93332,6 +95818,7 @@ self: { homepage = "http://github.com/ekmett/representable-functors/"; description = "Representable functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "representable-profunctors" = callPackage @@ -93344,6 +95831,7 @@ self: { homepage = "http://github.com/ekmett/representable-profunctors/"; description = "This package has been absorbed into profunctor-extras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "representable-tries" = callPackage @@ -93363,6 +95851,7 @@ self: { homepage = "http://github.com/ekmett/representable-tries/"; description = "Tries from representations of polynomial functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "request-monad" = callPackage @@ -93376,6 +95865,7 @@ self: { homepage = "http://github.com/nahiluhmot/request-monad"; description = "A transformer for generic requests"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reroute" = callPackage @@ -93507,6 +95997,7 @@ self: { jailbreak = true; description = "Allocate resources which are guaranteed to be released"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resourcet" = callPackage @@ -93552,6 +96043,7 @@ self: { homepage = "https://github.com/raptros/respond"; description = "process and route HTTP requests and generate responses on top of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-client" = callPackage @@ -93745,6 +96237,7 @@ self: { jailbreak = true; homepage = "https://github.com/ozataman/restful-snap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restricted-workers" = callPackage @@ -93765,6 +96258,7 @@ self: { homepage = "https://github.com/co-dan/interactive-diagrams/wiki/Restricted-Workers"; description = "Running worker processes under system resource restrictions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restyle" = callPackage @@ -93835,6 +96329,7 @@ self: { homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; description = "Client driver for RethinkDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rethinkdb-wereHamster" = callPackage @@ -93969,6 +96464,7 @@ self: { homepage = "http://www.github.com/massysett/rewrite"; description = "open file and rewrite it with new contents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rewriting" = callPackage @@ -94015,6 +96511,7 @@ self: { jailbreak = true; description = "Github resume generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rfc3339" = callPackage @@ -94026,6 +96523,7 @@ self: { buildDepends = [ base old-locale time ]; description = "Parse and display time according to RFC3339"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rfc5051" = callPackage @@ -94147,6 +96645,7 @@ self: { homepage = "http://modeemi.fi/~tuomov/riot/"; description = "Riot is an Information Organisation Tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) ncurses;}; "ripple" = callPackage @@ -94167,6 +96666,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-haskell"; description = "Ripple payment system library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ripple-federation" = callPackage @@ -94185,6 +96685,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-federation-haskell"; description = "Utilities and types to work with the Ripple federation protocol"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "risc386" = callPackage @@ -94202,6 +96703,7 @@ self: { homepage = "http://www2.tcs.ifi.lmu.de/~abel/"; description = "Reduced instruction set i386 simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rivers" = callPackage @@ -94231,6 +96733,7 @@ self: { ]; description = "Restricted monad library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rncryptor" = callPackage @@ -94274,6 +96777,7 @@ self: { homepage = "https://github.com/lfairy/robot"; description = "Simulate keyboard and mouse events"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "robots-txt" = callPackage @@ -94309,6 +96813,7 @@ self: { homepage = "http://github.com/agrafix/rocksdb-haskell"; description = "Haskell bindings to RocksDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { rocksdb = null;}; "roguestar" = callPackage @@ -94349,6 +96854,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Backend."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-gl" = callPackage @@ -94368,6 +96874,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client library."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-glut" = callPackage @@ -94383,6 +96890,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rollbar" = callPackage @@ -94504,6 +97012,7 @@ self: { ]; description = "Query the namecoin blockchain"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosezipper" = callPackage @@ -94546,6 +97055,7 @@ self: { homepage = "http://github.com/acowley/roshask"; description = "Haskell support for the ROS robotics framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosso" = callPackage @@ -94557,6 +97067,7 @@ self: { buildDepends = [ base containers deepseq ]; description = "General purpose utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rot13" = callPackage @@ -94600,6 +97111,7 @@ self: { homepage = "http://patch-tag.com/r/ekmett/rounding"; description = "Explicit floating point rounding mode wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip" = callPackage @@ -94647,6 +97159,7 @@ self: { ]; description = "Bidirectional (de-)serialization for XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-generator" = callPackage @@ -94661,6 +97174,7 @@ self: { homepage = "http://github.com/singpolyma/route-generator"; description = "Utility to generate routes for use with yesod-routes"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-planning" = callPackage @@ -94678,6 +97192,7 @@ self: { homepage = "https://github.com/tonymorris/route"; description = "A library and utilities for creating a route"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rowrecord" = callPackage @@ -94689,6 +97204,7 @@ self: { buildDepends = [ base containers template-haskell ]; description = "Build records from lists of strings, as from CSV files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc" = callPackage @@ -94705,6 +97221,7 @@ self: { ]; description = "type safe rpcs provided as basic IO actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc-framework" = callPackage @@ -94724,6 +97241,7 @@ self: { homepage = "http://github.com/mmirman/rpc-framework"; description = "a remote procedure call framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpf" = callPackage @@ -94756,6 +97274,7 @@ self: { buildDepends = [ base directory filepath HaXml process ]; description = "Cozy little project to question unruly rpm packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl" = callPackage @@ -94777,6 +97296,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-frp" = callPackage @@ -94794,6 +97314,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-math" = callPackage @@ -94812,6 +97333,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rss" = callPackage @@ -94850,6 +97372,7 @@ self: { homepage = "http://hackage.haskell.org/package/rss2irc"; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtld" = callPackage @@ -94876,6 +97399,7 @@ self: { homepage = "https://github.com/adamwalker/hrtlsdr"; description = "Bindings to librtlsdr"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { rtlsdr = null;}; "rtorrent-rpc" = callPackage @@ -94928,6 +97452,7 @@ self: { homepage = "https://github.com/mtolly/rubberband"; description = "Binding to the C++ audio stretching library Rubber Band"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) rubberband;}; "ruby-qq" = callPackage @@ -94958,6 +97483,7 @@ self: { homepage = "https://gitorious.org/ruff"; description = "relatively useful fractal functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ruler" = callPackage @@ -94994,6 +97520,7 @@ self: { ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rungekutta" = callPackage @@ -95005,6 +97532,7 @@ self: { buildDepends = [ base ]; description = "A collection of explicit Runge-Kutta methods of various orders"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "runghc" = callPackage @@ -95123,6 +97651,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/safe-access"; description = "A simple environment to control access to data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-failure" = callPackage @@ -95146,6 +97675,7 @@ self: { buildDepends = [ base control-monad-exception safe-failure ]; description = "control-monad-exception Instances for safe-failure"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-freeze" = callPackage @@ -95159,6 +97689,7 @@ self: { homepage = "https://github.com/reinerp/safe-freeze"; description = "Support for safely freezing multiple arrays in the ST monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-globals" = callPackage @@ -95170,6 +97701,7 @@ self: { buildDepends = [ base stm template-haskell ]; description = "Safe top-level mutable variables which scope like ordinary values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-lazy-io" = callPackage @@ -95182,6 +97714,7 @@ self: { buildDepends = [ base extensible-exceptions parallel strict-io ]; description = "A library providing safe lazy IO features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-plugins" = callPackage @@ -95197,6 +97730,7 @@ self: { ]; description = "A small wrapper over hs-plugins to allow loading safe plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safecopy" = callPackage @@ -95236,6 +97770,7 @@ self: { ]; description = "overflow-checked Int type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles" = callPackage @@ -95254,6 +97789,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles/"; description = "Type-safe file handling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-bytestring" = callPackage @@ -95272,6 +97808,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-bytestring/"; description = "Extends safer-file-handles with ByteString operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-text" = callPackage @@ -95289,6 +97826,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-text/"; description = "Extends safer-file-handles with Text operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saferoute" = callPackage @@ -95354,6 +97892,7 @@ self: { jailbreak = true; description = "Modular web application framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-demo" = callPackage @@ -95375,6 +97914,7 @@ self: { jailbreak = true; description = "Demo Salvia servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-extras" = callPackage @@ -95396,6 +97936,7 @@ self: { jailbreak = true; description = "Collection of non-fundamental handlers for the Salvia web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-protocol" = callPackage @@ -95413,6 +97954,7 @@ self: { jailbreak = true; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-sessions" = callPackage @@ -95431,6 +97973,7 @@ self: { jailbreak = true; description = "Session support for the Salvia webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-websocket" = callPackage @@ -95448,6 +97991,7 @@ self: { jailbreak = true; description = "Websocket implementation for the Salvia Webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sample-frame" = callPackage @@ -95543,6 +98087,7 @@ self: { ]; description = "Iteratee interface to SamTools library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sandi" = callPackage @@ -95603,6 +98148,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/sasl/wiki"; description = "SASL implementation using simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat" = callPackage @@ -95617,6 +98163,7 @@ self: { homepage = "http://tcana.info/sat.html"; description = "CNF SATisfier"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat-micro-hs" = callPackage @@ -95634,6 +98181,7 @@ self: { ]; description = "A minimal SAT solver"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo" = callPackage @@ -95666,6 +98214,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "driver for external satchmo backends"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-examples" = callPackage @@ -95684,6 +98233,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "examples that show how to use satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-funsat" = callPackage @@ -95700,6 +98250,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "funsat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-minisat" = callPackage @@ -95712,6 +98263,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "minisat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-toysat" = callPackage @@ -95757,6 +98309,7 @@ self: { homepage = "http://rd.slavepianos.org/t/sc3-rdu"; description = "Haskell bindings to sc3-rdu (sc3 rd ugens)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalable-server" = callPackage @@ -95836,6 +98389,7 @@ self: { testDepends = [ array base HUnit ]; description = "An implementation of the Scan Vector Machine instruction set in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scat" = callPackage @@ -95860,6 +98414,7 @@ self: { homepage = "https://github.com/redelmann/scat"; description = "Generates unique passwords for various websites from a single password"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scc" = callPackage @@ -95888,6 +98443,7 @@ self: { homepage = "http://trac.haskell.org/SCC/"; description = "Streaming component combinators"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scenegraph" = callPackage @@ -95906,6 +98462,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SceneGraph"; description = "Scene Graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scgi" = callPackage @@ -95921,6 +98478,7 @@ self: { ]; description = "A Haskell library for writing SCGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "schedevr" = callPackage @@ -96151,6 +98709,7 @@ self: { homepage = "http://github.com/nominolo/scion"; description = "Haskell IDE library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scion-browser" = callPackage @@ -96180,6 +98739,7 @@ self: { homepage = "http://github.com/JPMoresmau/scion-class-browser"; description = "Command-line interface for browsing and searching packages documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scons2dot" = callPackage @@ -96211,6 +98771,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scope-cairo" = callPackage @@ -96229,6 +98790,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scottish" = callPackage @@ -96302,6 +98864,7 @@ self: { buildDepends = [ base blaze-builder blaze-html mtl scotty wai ]; description = "blaze-html integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-cookie" = callPackage @@ -96343,6 +98906,7 @@ self: { jailbreak = true; description = "Fay integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-hastache" = callPackage @@ -96431,6 +98995,7 @@ self: { jailbreak = true; description = "Scrabble play generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scrobble" = callPackage @@ -96492,6 +99057,7 @@ self: { homepage = "http://github.com/wereHamster/scrz"; description = "Process management and supervision daemon"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scyther-proof" = callPackage @@ -96512,6 +99078,7 @@ self: { jailbreak = true; description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sde-solver" = callPackage @@ -96531,6 +99098,7 @@ self: { homepage = "https://github.com/davnils/sde-solver"; description = "Distributed SDE solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sdl2" = callPackage @@ -96558,6 +99126,7 @@ self: { jailbreak = true; description = "Haskell binding to sdl2-image"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; "sdl2-ttf" = callPackage @@ -96572,6 +99141,7 @@ self: { extraLibraries = [ SDL2 SDL2_ttf ]; description = "Binding to libSDL2-ttf"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) SDL2; SDL2_ttf = null;}; "seacat" = callPackage @@ -96597,6 +99167,7 @@ self: { homepage = "https://github.com/Barrucadu/lambdadelta"; description = "Small web framework using Warp and WAI"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seal-module" = callPackage @@ -96652,6 +99223,7 @@ self: { homepage = "http://github.com/pgavin/secdh"; description = "SECDH Machine Simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seclib" = callPackage @@ -96682,6 +99254,7 @@ self: { homepage = "https://github.com/rodrigosetti/secret-santa"; description = "Secret Santa game assigner using QR-Codes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-sharing" = callPackage @@ -96703,6 +99276,7 @@ self: { homepage = "http://monoid.at/code"; description = "Information-theoretic secure secret sharing"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secrm" = callPackage @@ -96717,6 +99291,7 @@ self: { jailbreak = true; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secure-sockets" = callPackage @@ -96761,20 +99336,20 @@ self: { extraLibraries = [ sedna ]; description = "Sedna C API XML Binding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { sedna = null;}; "select" = callPackage - ({ mkDerivation, base, rt }: + ({ mkDerivation, base }: mkDerivation { pname = "select"; version = "0.4.0.1"; sha256 = "180cj5m0bap1lb19s68icpn1dvk2s395cmlcc6dnwz3mpbj5alj0"; buildDepends = [ base ]; - extraLibraries = [ rt ]; homepage = "http://nonempty.org/software/haskell-select"; description = "Wrap the select(2) POSIX function"; license = stdenv.lib.licenses.bsd3; - }) { rt = null;}; + }) {}; "selectors" = callPackage ({ mkDerivation, alex, array, base, containers, happy @@ -96791,6 +99366,7 @@ self: { homepage = "http://github.com/rcallahan/selectors"; description = "CSS Selectors for DOM traversal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium" = callPackage @@ -96802,6 +99378,7 @@ self: { buildDepends = [ base HTTP HUnit mtl network pretty ]; description = "Test web applications through a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium-server" = callPackage @@ -96823,6 +99400,7 @@ self: { homepage = "https://github.com/joelteon/selenium-server.git"; description = "Run the selenium standalone server for usage with webdriver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selfrestart" = callPackage @@ -96848,6 +99426,7 @@ self: { homepage = "https://github.com/luite/selinux"; description = "SELinux bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { selinux = null;}; "semaphore-plus" = callPackage @@ -96886,6 +99465,7 @@ self: { homepage = "http://github.com/ekmett/semigroupoid-extras"; description = "This package has been absorbed into semigroupoids 4.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroupoids" = callPackage @@ -96955,6 +99535,7 @@ self: { homepage = "http://github.com/ppetr/semigroups-actions/"; description = "Semigroups actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring" = callPackage @@ -97033,6 +99614,7 @@ self: { homepage = "https://github.com/rossdylan/sensenet"; description = "Distributed sensor network for the raspberry pi"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sentry" = callPackage @@ -97054,6 +99636,7 @@ self: { homepage = "https://github.com/noteed/sentry"; description = "Process monitoring tool written and configured in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "senza" = callPackage @@ -97064,6 +99647,7 @@ self: { sha256 = "0pl7dcs9w4dzzajlfnkrjl5kgsx8zdzzl5hvikh9v9djsmw2290h"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "separated" = callPackage @@ -97103,6 +99687,7 @@ self: { homepage = "http://www.fremissant.net/seqaid"; description = "Dynamic strictness control, including space leak repair"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seqid" = callPackage @@ -97170,6 +99755,7 @@ self: { homepage = "http://www.ingolia-lab.org/seqloc-datafiles-tutorial.html"; description = "Read and write BED and GTF format genome annotations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequence" = callPackage @@ -97245,6 +99831,7 @@ self: { homepage = "http://github.com/sanetracker/serf"; description = "Interact with Serf via Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "serial" = callPackage @@ -97398,6 +99985,7 @@ self: { homepage = "http://github.com/zalora/servant-pool"; description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-postgresql" = callPackage @@ -97415,6 +100003,7 @@ self: { homepage = "http://github.com/zalora/servant-postgresql"; description = "Useful functions and instances for using servant with a PostgreSQL context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-response" = callPackage @@ -97444,6 +100033,7 @@ self: { homepage = "http://github.com/zalora/servant"; description = "Generate a web service for servant 'Resource's using scotty and JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-server" = callPackage @@ -97495,6 +100085,7 @@ self: { homepage = "http://github.com/yesodweb/hamlet"; description = "Serve Shakespearean templates via Warp (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ses-html" = callPackage @@ -97512,6 +100103,7 @@ self: { ]; description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ses-html-snaplet" = callPackage @@ -97528,6 +100120,7 @@ self: { ]; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sessions" = callPackage @@ -97541,6 +100134,7 @@ self: { homepage = "http://www.wellquite.org/sessions/"; description = "Session Types for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-cover" = callPackage @@ -97678,6 +100272,7 @@ self: { ]; description = "S-expression printer and parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sext" = callPackage @@ -97752,6 +100347,7 @@ self: { homepage = "https://github.com/tonicebrian/sgf"; description = "SGF (Smart Game Format) parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sgrep" = callPackage @@ -97845,6 +100441,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shady-graphics" = callPackage @@ -97863,6 +100460,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake" = callPackage @@ -97921,6 +100519,7 @@ self: { homepage = "http://thoughtpolice.github.com/shake-extras"; description = "Extra utilities for shake build systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake-language-c" = callPackage @@ -97963,6 +100562,7 @@ self: { homepage = "http://github.com/bonnefoa/Shaker"; description = "simple and interactive command-line build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shakespeare" = callPackage @@ -98000,6 +100600,7 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "Stick your haskell variables into css at compile time. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shakespeare-i18n" = callPackage @@ -98012,6 +100613,7 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A type-based approach to internationalization. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shakespeare-js" = callPackage @@ -98024,6 +100626,7 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "Stick your haskell variables into javascript/coffeescript at compile time. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shakespeare-text" = callPackage @@ -98081,6 +100684,7 @@ self: { homepage = "http://github.com/jberryman/shapely-data"; description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shared-buffer" = callPackage @@ -98098,6 +100702,7 @@ self: { ]; description = "A circular buffer built on shared memory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shared-memory" = callPackage @@ -98137,6 +100742,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A Haskell preprocessor adding miscellaneous features"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shell-conduit" = callPackage @@ -98158,6 +100764,7 @@ self: { homepage = "https://github.com/chrisdone/shell-conduit"; description = "Write shell scripts with Conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shell-escape" = callPackage @@ -98195,6 +100802,7 @@ self: { homepage = "http://gnu.rtin.bz/directory/devel/prog/other/shell-haskell.html"; description = "Pipe streams through external shell commands"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shellish" = callPackage @@ -98284,6 +100892,7 @@ self: { homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shelly features that require extra dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shivers-cfg" = callPackage @@ -98299,6 +100908,7 @@ self: { ]; description = "Implementation of Shivers' Control-Flow Analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shoap" = callPackage @@ -98374,6 +100984,7 @@ self: { jailbreak = true; description = "A simple gtk based Russian Roulette game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shpider" = callPackage @@ -98472,6 +101083,7 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "A simple, visual, functional programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sifflet-lib" = callPackage @@ -98491,6 +101103,7 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "Library of modules shared by sifflet and its tests and its exporters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { gdk_x11 = null; gtk_x11 = null;}; "sign" = callPackage @@ -98545,6 +101158,7 @@ self: { homepage = "http://github.com/mikeizbicki/simd"; description = "simple interface to GHC's SIMD instructions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simgi" = callPackage @@ -98564,6 +101178,7 @@ self: { homepage = "http://simgi.sourceforge.net/"; description = "stochastic simulation engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple" = callPackage @@ -98592,6 +101207,7 @@ self: { homepage = "http://simple.cx"; description = "A minimalist web framework for the WAI server interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-actors" = callPackage @@ -98630,6 +101246,7 @@ self: { extraLibraries = [ bluetooth ]; description = "Simple Bluetooth API for Windows and Linux (bluez)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { bluetooth = null;}; "simple-c-value" = callPackage @@ -98651,6 +101268,7 @@ self: { homepage = "https://github.com/jfischoff/simple-c-value"; description = "A simple C value type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-conduit" = callPackage @@ -98707,6 +101325,7 @@ self: { ]; description = "simple binding of css and html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-eval" = callPackage @@ -98733,6 +101352,7 @@ self: { homepage = "https://github.com/aleator/simple-firewire"; description = "Simplified interface for firewire cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-form" = callPackage @@ -98814,6 +101434,7 @@ self: { homepage = "http://github.com/mvoidex/simple-log-syslog"; description = "Syslog backend for simple-log"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-neural-networks" = callPackage @@ -98895,6 +101516,7 @@ self: { homepage = "http://simple.cx"; description = "Connector package for integrating postgresql-orm with the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-reflect" = callPackage @@ -98970,6 +101592,7 @@ self: { homepage = "http://simple.cx"; description = "Cookie-based session management for the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-sessions" = callPackage @@ -98982,6 +101605,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/"; description = "A simple implementation of session types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-smt" = callPackage @@ -99061,6 +101685,7 @@ self: { homepage = "http://simple.cx"; description = "A basic template language for the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-vec3" = callPackage @@ -99074,6 +101699,7 @@ self: { homepage = "http://github.com/dzhus/simple-vec3/"; description = "Three-dimensional vectors of doubles with basic operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleargs" = callPackage @@ -99103,6 +101729,7 @@ self: { homepage = "http://github.com/dom96/SimpleIRC"; description = "Simple IRC Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleirc-lens" = callPackage @@ -99116,6 +101743,7 @@ self: { homepage = "https://github.com/relrod/simpleirc-lens"; description = "Lenses for simpleirc types"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplenote" = callPackage @@ -99132,6 +101760,7 @@ self: { ]; description = "Haskell interface for the simplenote API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleprelude" = callPackage @@ -99150,6 +101779,7 @@ self: { jailbreak = true; description = "A simplified Haskell prelude for teaching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplesmtpclient" = callPackage @@ -99175,6 +101805,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/simplessh"; description = "Simple wrapper around libssh2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { ssh2 = null;}; "simplex" = callPackage @@ -99207,6 +101838,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Simulate sequencing with different models for priming and errors"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simtreelo" = callPackage @@ -99241,6 +101873,7 @@ self: { homepage = "http://sigkill.dk/programs/sindre"; description = "A programming language for simple GUIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) libXft;}; "singletons" = callPackage @@ -99304,6 +101937,7 @@ self: { ]; description = "Sirkel, a Chord DHT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sitemap" = callPackage @@ -99436,6 +102070,7 @@ self: { homepage = "https://github.com/emonkak/haskell-skype"; description = "Skype Desktop API binding for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skypelogexport" = callPackage @@ -99515,6 +102150,7 @@ self: { homepage = "https://github.com/nikita-volkov/slave-thread"; description = "A principal solution to ghost threads and silent exceptions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slice-cpp-gen" = callPackage @@ -99618,6 +102254,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/bytearray"; description = "low-level unboxed arrays, with minimal features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallcaps" = callPackage @@ -99666,6 +102303,7 @@ self: { homepage = "http://github.com/noteed/smallpt-hs"; description = "A Haskell port of the smallpt path tracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallstring" = callPackage @@ -99683,6 +102321,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/smallstring/"; description = "A Unicode text type, optimized for low memory overhead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smartGroup" = callPackage @@ -99695,6 +102334,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/smartGroup"; description = "group strings or bytestrings by words in common"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smartcheck" = callPackage @@ -99727,6 +102367,7 @@ self: { homepage = "http://kyagrd.dyndns.org/~kyagrd/project/smartword/"; description = "Web based flash card for Word Smart I and II vocabularies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sme" = callPackage @@ -99751,6 +102392,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Parsing and printing SMT-LIB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtLib" = callPackage @@ -99780,6 +102422,7 @@ self: { ]; description = "A type-safe interface to communicate with an SMT solver"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtp-mail" = callPackage @@ -99811,6 +102454,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Listen for SMTP traffic and send it to an MTA script"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtps-gmail" = callPackage @@ -99884,6 +102528,7 @@ self: { homepage = "http://github.com/zimothy/snap-accept"; description = "Accept header branching for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-app" = callPackage @@ -99894,6 +102539,7 @@ self: { sha256 = "1v3izzvxadjplir47ipi087sj6fcmfj5ivlhbkpp9ld7vj8sv2hi"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-auth-cli" = callPackage @@ -100009,6 +102655,7 @@ self: { ]; description = "Serve Elm files through the Snap web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-error-collector" = callPackage @@ -100049,6 +102696,7 @@ self: { jailbreak = true; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-loader-dynamic" = callPackage @@ -100169,6 +102817,7 @@ self: { homepage = "https://github.com/LukeHoersten/snap-utils"; description = "Snap Framework utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-web-routes" = callPackage @@ -100224,6 +102873,7 @@ self: { homepage = "https://github.com/soostone/snaplet-actionlog"; description = "Generic action log snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-amqp" = callPackage @@ -100242,6 +102892,7 @@ self: { homepage = "https://github.com/ixmatus/snaplet-amqp"; description = "Snap framework snaplet for the AMQP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-auth-acid" = callPackage @@ -100262,6 +102913,7 @@ self: { jailbreak = true; description = "Provides an Acid-State backend for the Auth Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-coffee" = callPackage @@ -100313,6 +102965,7 @@ self: { jailbreak = true; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-fay" = callPackage @@ -100330,6 +102983,7 @@ self: { homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-haxl" = callPackage @@ -100369,6 +103023,7 @@ self: { homepage = "http://norm2782.com/"; description = "HDBC snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hslogger" = callPackage @@ -100406,6 +103061,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-i18n"; description = "snaplet-i18n"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-influxdb" = callPackage @@ -100479,6 +103135,7 @@ self: { jailbreak = true; description = "Snap Framework MongoDB support as Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mongodb-minimalistic" = callPackage @@ -100493,6 +103150,7 @@ self: { homepage = "https://github.com/Palmik/snaplet-mongodb-minimalistic"; description = "Minimalistic MongoDB Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mysql-simple" = callPackage @@ -100514,6 +103172,7 @@ self: { homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-oauth" = callPackage @@ -100541,6 +103200,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-oauth"; description = "snaplet-oauth"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-persistent" = callPackage @@ -100564,6 +103224,7 @@ self: { homepage = "https://github.com/soostone/snaplet-persistent"; description = "persistent snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-postgresql-simple" = callPackage @@ -100673,6 +103334,7 @@ self: { homepage = "https://github.com/dzhus/snaplet-redson/"; description = "CRUD for JSON data with Redis storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-rest" = callPackage @@ -100692,6 +103354,7 @@ self: { homepage = "http://github.com/zimothy/snaplet-rest"; description = "REST resources for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-riak" = callPackage @@ -100746,6 +103409,7 @@ self: { jailbreak = true; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ses-html" = callPackage @@ -100762,6 +103426,7 @@ self: { ]; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-sqlite-simple" = callPackage @@ -100826,6 +103491,7 @@ self: { jailbreak = true; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-typed-sessions" = callPackage @@ -100863,6 +103529,7 @@ self: { homepage = "http://github.com/bos/snappy"; description = "Bindings to the Google Snappy library for fast compression/decompression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) snappy;}; "snappy-framing" = callPackage @@ -100875,6 +103542,7 @@ self: { homepage = "https://github.com/kim/snappy-framing"; description = "Snappy Framing Format in Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snappy-iteratee" = callPackage @@ -100887,6 +103555,7 @@ self: { homepage = "http://github.com/iand675/snappy-iteratee"; description = "An enumeratee that uses Google's snappy compression library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sndfile-enumerators" = callPackage @@ -100907,6 +103576,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/sndfile-enumerators"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snippet-extractor" = callPackage @@ -100939,6 +103609,7 @@ self: { homepage = "http://github.com/elginer/snm"; description = "The Simple Nice-Looking Manual Generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snmp" = callPackage @@ -100970,6 +103641,7 @@ self: { homepage = "http://github.com/nfjinjing/snow-white"; description = "encode any binary instance to white space"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snowball" = callPackage @@ -101044,6 +103716,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "SOAP client tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "soap-openssl" = callPackage @@ -101062,6 +103735,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "TLS-enabled SOAP transport (using openssl bindings)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "soap-tls" = callPackage @@ -101081,6 +103755,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "TLS-enabled SOAP transport (using tls package)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sock2stream" = callPackage @@ -101099,6 +103774,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Tunnel a socket over a single datastream (stdin/stdout)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sockaddr" = callPackage @@ -101167,6 +103843,7 @@ self: { jailbreak = true; description = "Socket.IO server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "socks" = callPackage @@ -101203,6 +103880,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "GUI functions as used in the book \"The Haskell School of Expression\""; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "som" = callPackage @@ -101221,6 +103899,7 @@ self: { homepage = "https://github.com/mhwombat/som"; description = "Self-Organising Maps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sonic-visualiser" = callPackage @@ -101239,6 +103918,7 @@ self: { homepage = "http://darcs.k-hornz.de/cgi-bin/darcsweb.cgi?r=sonic-visualiser;a=summary"; description = "Sonic Visualiser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sophia" = callPackage @@ -101284,6 +103964,7 @@ self: { jailbreak = true; description = "Efficient, type-safe sorted sequences"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sorty" = callPackage @@ -101320,6 +104001,7 @@ self: { ]; description = "Approximate a song from other pieces of sound"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sounddelay" = callPackage @@ -101357,6 +104039,7 @@ self: { homepage = "http://github.com/nfjinjing/source-code-server"; description = "The server backend for the source code iPhone app"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sourcemap" = callPackage @@ -101393,6 +104076,7 @@ self: { homepage = "https://github.com/msiegenthaler/SouSiT"; description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sox" = callPackage @@ -101430,6 +104114,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Sox"; description = "Write, read, convert audio signals using libsox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) sox;}; "soyuz" = callPackage @@ -101449,6 +104134,7 @@ self: { homepage = "https://github.com/amtal/0x10c"; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spacefill" = callPackage @@ -101502,6 +104188,7 @@ self: { homepage = "http://github.com/ekmett/sparse"; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse-lin-alg" = callPackage @@ -101532,6 +104219,7 @@ self: { homepage = "http://kyagrd.dyndns.org/wiki/SparseBitmapsForPatternMatchCoverage"; description = "Sparse bitmaps for pattern match coverage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparsecheck" = callPackage @@ -101571,6 +104259,7 @@ self: { homepage = "http://github.com/nfjinjing/spata"; description = "brainless form validation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spatial-math" = callPackage @@ -101619,6 +104308,7 @@ self: { jailbreak = true; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "special-keys" = callPackage @@ -101663,6 +104353,7 @@ self: { homepage = "https://github.com/jfischoff/specialize-th"; description = "Create specialized types from polymorphic ones using TH"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "species" = callPackage @@ -101681,6 +104372,7 @@ self: { homepage = "http://www.cis.upenn.edu/~byorgey/species"; description = "Computational combinatorial species"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "speculation" = callPackage @@ -101705,6 +104397,7 @@ self: { homepage = "http://github.com/ekmett/speculation/"; description = "Merged into 'speculation'. Use that instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spelling-suggest" = callPackage @@ -101739,6 +104432,7 @@ self: { jailbreak = true; description = "Orbotix Sphero client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sphinx" = callPackage @@ -101769,6 +104463,7 @@ self: { buildDepends = [ base sphinx ]; description = "Sphinx CLI and demo of Haskell Sphinx library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spice" = callPackage @@ -101809,6 +104504,7 @@ self: { homepage = "http://github.com/Tener/spike"; description = "Experimental web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) libsoup;}; "spine" = callPackage @@ -101868,6 +104564,7 @@ self: { ]; description = "B-Splines, other splines, and NURBS"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split" = callPackage @@ -101911,6 +104608,7 @@ self: { homepage = "http://code.haskell.org/~thielema/split-record/"; description = "Split a big audio file into pieces at positions of silence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split-tchan" = callPackage @@ -101936,6 +104634,7 @@ self: { homepage = "https://bitbucket.org/robertmassaioli/splitter"; description = "Use numerical ranges to split out certain lines from a file"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "splot" = callPackage @@ -101997,6 +104696,7 @@ self: { homepage = "http://github.com/elginer/SpoonUtilities"; description = "Spoon's utilities. Simple testing and nice looking error reporting."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spoty" = callPackage @@ -102105,6 +104805,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "common middle-level sql client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-mysql" = callPackage @@ -102122,6 +104823,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "mysql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-pool" = callPackage @@ -102140,6 +104842,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "conection pool for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-postgresql" = callPackage @@ -102157,6 +104860,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "postgresql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-sqlite" = callPackage @@ -102169,6 +104873,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "sqlite backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-words" = callPackage @@ -102182,6 +104887,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Simple idea SQL keywords data constructor into OverloadedString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sqlite" = callPackage @@ -102236,6 +104942,7 @@ self: { homepage = "https://github.com/tolysz/sqlite-simple-typed"; description = "Typed extension to sqlite simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sqlvalue-list" = callPackage @@ -102266,6 +104973,7 @@ self: { homepage = "http://functionalley.eu"; description = "A file-packing application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "srcinst" = callPackage @@ -102284,6 +104992,7 @@ self: { ]; description = "Build and install Debian packages completely from source"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "srcloc" = callPackage @@ -102347,6 +105056,7 @@ self: { homepage = "http://hub.darcs.net/simon/ssh"; description = "A pure-Haskell SSH server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sshtun" = callPackage @@ -102390,6 +105100,7 @@ self: { homepage = "http://github.com/erudify/sssp/"; description = "HTTP proxy for S3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sstable" = callPackage @@ -102408,6 +105119,7 @@ self: { ]; description = "SSTables in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ssv" = callPackage @@ -102471,6 +105183,7 @@ self: { homepage = "https://github.com/tsuraan/stable-tree"; description = "Trees whose branches are resistant to change"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-prism" = callPackage @@ -102539,6 +105252,7 @@ self: { homepage = "http://documentup.com/feuerbach/standalone-haddock"; description = "Generate standalone haddock documentation for a set of packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "star-to-star" = callPackage @@ -102593,6 +105307,7 @@ self: { homepage = "http://github.com/anttisalonen/starrover2"; description = "Space simulation game"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "state" = callPackage @@ -102718,6 +105433,7 @@ self: { homepage = "http://github.com/brendanhay/statgrab"; description = "Collect system level metrics and statistics"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { statgrab = null;}; "static-hash" = callPackage @@ -102801,6 +105517,7 @@ self: { jailbreak = true; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-fusion" = callPackage @@ -102813,6 +105530,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/statistics-fusion"; description = "An implementation of high performance, minimal statistics functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-linreg" = callPackage @@ -102896,6 +105614,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "A wrapper around Sean Barrett's TrueType rasterizer library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stdata" = callPackage @@ -102983,6 +105702,7 @@ self: { buildDepends = [ base containers mtl ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stickyKeysHotKey" = callPackage @@ -103042,6 +105762,7 @@ self: { homepage = "http://github.com/kholdstare/stm-chunked-queues/"; description = "Chunked Communication Queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-conduit" = callPackage @@ -103092,6 +105813,7 @@ self: { homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-delay" = callPackage @@ -103124,6 +105846,7 @@ self: { jailbreak = true; description = "Conduits and STM operations for fire hoses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-io-hooks" = callPackage @@ -103136,6 +105859,7 @@ self: { jailbreak = true; description = "STM with IO hooks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-lifted" = callPackage @@ -103254,6 +105978,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/stm-with-control-communication-for.html"; description = "Control communication among retrying transactions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stomp-conduit" = callPackage @@ -103380,6 +106105,7 @@ self: { jailbreak = true; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storable-tuple" = callPackage @@ -103410,6 +106136,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Fast, packed, strict storable arrays with a list interface like ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-carray" = callPackage @@ -103422,6 +106149,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and carray"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-streamfusion" = callPackage @@ -103442,6 +106170,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "str" = callPackage @@ -103507,6 +106236,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Programmatically edit MIDI event streams via ALSA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "streaming-commons" = callPackage @@ -103598,6 +106328,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/strict-concurrency"; description = "Strict concurrency abstractions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "strict-ghc-plugin" = callPackage @@ -103669,6 +106400,7 @@ self: { sha256 = "1l94p8c9j8a2dbpwj5q7d1m61gdhmi6vllz34g8d9qjfwpnx7z6z"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "string-class" = callPackage @@ -103794,6 +106526,7 @@ self: { homepage = "https://github.com/selectel/stringlike"; description = "Transformations to several string-like types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stringprep" = callPackage @@ -103886,6 +106619,7 @@ self: { homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "strive" = callPackage @@ -103938,6 +106672,7 @@ self: { homepage = "http://www.github.com/danr/structural-induction"; description = "Instantiate structural induction schemas for algebraic data types"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "structured-haskell-mode" = callPackage @@ -103959,6 +106694,7 @@ self: { homepage = "https://github.com/chrisdone/structured-haskell-mode"; description = "Structured editing Emacs mode for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) emacs;}; "structured-mongoDB" = callPackage @@ -103978,6 +106714,7 @@ self: { jailbreak = true; description = "Structured MongoDB interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "structures" = callPackage @@ -104048,6 +106785,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stylish-haskell" = callPackage @@ -104163,6 +106901,7 @@ self: { buildDepends = [ base containers ]; description = "Abstract over the constraints on the parameters to type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sundown" = callPackage @@ -104211,6 +106950,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-compiler"; description = "Monadic Javascript Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-examples" = callPackage @@ -104233,6 +106973,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-examples"; description = "Tests for Sunroof"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-server" = callPackage @@ -104256,6 +106997,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-server"; description = "Monadic Javascript Compiler - Server Utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supercollider-ht" = callPackage @@ -104274,6 +107016,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell SuperCollider utilities"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supercollider-midi" = callPackage @@ -104298,6 +107041,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "superdoc" = callPackage @@ -104312,6 +107056,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/"; description = "Additional documentation markup and Unicode support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supero" = callPackage @@ -104332,6 +107077,7 @@ self: { homepage = "http://community.haskell.org/~ndm/supero/"; description = "A Supercompiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supervisor" = callPackage @@ -104374,6 +107120,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svgcairo" = callPackage @@ -104447,6 +107194,7 @@ self: { homepage = "http://github.com/aleator/Simple-SVM"; description = "Medium level, simplified, bindings to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svndump" = callPackage @@ -104480,6 +107228,7 @@ self: { testDepends = [ aeson base bytestring tasty tasty-hunit ]; description = "Implementation of swagger data model"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swapper" = callPackage @@ -104498,6 +107247,7 @@ self: { homepage = "http://github.com/roman-smrz/swapper/"; description = "Transparently swapping data from in-memory structures to disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) tokyocabinet;}; "swf" = callPackage @@ -104510,6 +107260,7 @@ self: { homepage = "http://www.n-heptane.com/nhlab"; description = "A library for creating Shockwave Flash (SWF) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swift-lda" = callPackage @@ -104598,6 +107349,7 @@ self: { homepage = "http://github.com/ekmett/syb-extras/"; description = "Higher order versions of the Scrap Your Boilerplate classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb-with-class" = callPackage @@ -104651,6 +107403,7 @@ self: { homepage = "https://github.com/lfairy/sylvia"; description = "Lambda calculus visualization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sym" = callPackage @@ -104676,6 +107429,7 @@ self: { homepage = "http://github.com/akc/sym-plot"; description = "Plot permutations; an addition to the sym package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "symbol" = callPackage @@ -104699,6 +107453,7 @@ self: { buildDepends = [ base stm ]; description = "A fast implementation of synchronous channels with a CML-like API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synchronous-channels" = callPackage @@ -104710,6 +107465,7 @@ self: { buildDepends = [ base ]; description = "Synchronous communication channels"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synt" = callPackage @@ -104842,6 +107598,7 @@ self: { buildDepends = [ base pretty scientific semi-iso syntax text ]; description = "Syntax instance for pretty, the pretty printing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-printer" = callPackage @@ -104873,6 +107630,7 @@ self: { ]; description = "Convert between different Haskell syntax trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees-fork-bairyn" = callPackage @@ -104913,6 +107671,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-alsa" = callPackage @@ -104937,6 +107696,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Control synthesizer effects via ALSA/MIDI"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-core" = callPackage @@ -104964,6 +107724,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Low level part"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-dimensional" = callPackage @@ -104985,6 +107746,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing with static physical dimensions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-inference" = callPackage @@ -105031,6 +107793,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Efficient signal processing using runtime compilation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-midi" = callPackage @@ -105055,6 +107818,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Render audio signals from MIDI files or realtime messages"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sys-auth-smbclient" = callPackage @@ -105190,6 +107954,7 @@ self: { homepage = "https://github.com/jcristovao/system-lifted"; description = "Lifted versions of System functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-posix-redirect" = callPackage @@ -105226,6 +107991,7 @@ self: { homepage = "https://github.com/wowus/system-random-effect"; description = "Random number generation for extensible effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-time-monotonic" = callPackage @@ -105324,6 +108090,7 @@ self: { homepage = "not available"; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "table" = callPackage @@ -105353,6 +108120,7 @@ self: { buildDepends = [ base cgi containers html mtl parsec QuickCheck ]; description = "An interactive theorem prover based on semantic tableaux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tables" = callPackage @@ -105397,6 +108165,7 @@ self: { homepage = "http://github.com/paf31/tablestorage"; description = "Azure Table Storage REST API Wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabloid" = callPackage @@ -105415,6 +108184,7 @@ self: { ]; description = "View the output of shell commands in a table"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabular" = callPackage @@ -105452,6 +108222,7 @@ self: { homepage = "http://github.com/travitch/taffybar"; description = "A desktop bar similar to xmobar, but with more GUI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk;}; "tag-bits" = callPackage @@ -105558,6 +108329,7 @@ self: { jailbreak = true; description = "Lists tagged with a type-level natural number representing their length"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-th" = callPackage @@ -105570,6 +108342,7 @@ self: { jailbreak = true; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-transformer" = callPackage @@ -105653,6 +108426,7 @@ self: { pkgconfigDepends = [ taglib_c ]; description = "Binding to TagLib (ID3 tag library)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { tag_c = null; taglib_c = null;}; "taglib-api" = callPackage @@ -105670,6 +108444,7 @@ self: { jailbreak = true; description = "An FFI layer over TagLib's C bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { taglib_c = null;}; "tagset-positional" = callPackage @@ -105730,6 +108505,7 @@ self: { homepage = "http://code.haskell.org/~thielema/tagsoup-ht/"; description = "alternative parser for the tagsoup package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagsoup-parsec" = callPackage @@ -105781,6 +108557,7 @@ self: { homepage = "https://github.com/paulrzcz/takusen-oracle.git"; description = "Database library with left-fold interface for Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { clntsh = null; sqlplus = null;}; "tamarin-prover" = callPackage @@ -105811,6 +108588,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-term" = callPackage @@ -105831,6 +108609,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-theory" = callPackage @@ -105854,6 +108633,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-utils" = callPackage @@ -105873,6 +108653,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Utility library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamper" = callPackage @@ -105939,6 +108720,7 @@ self: { ]; description = "Generate test-suites from refinement types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "task" = callPackage @@ -105959,6 +108741,7 @@ self: { jailbreak = true; description = "A command line tool for keeping track of tasks you worked on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "taskpool" = callPackage @@ -106118,6 +108901,7 @@ self: { jailbreak = true; description = "automated integration of QuickCheck properties into tasty suites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-kat" = callPackage @@ -106237,6 +109021,7 @@ self: { homepage = "http://darcs.monoid.at/tbox"; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tcache-AWS" = callPackage @@ -106270,6 +109055,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/tccli"; description = "TokyoCabinet CLI interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tconfig" = callPackage @@ -106320,6 +109106,7 @@ self: { ]; description = "Test framework wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tdoc" = callPackage @@ -106347,6 +109134,7 @@ self: { buildDepends = [ base containers fgl graphviz ]; description = "Graphical modeling tools for sequential teams"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tellbot" = callPackage @@ -106422,6 +109210,7 @@ self: { jailbreak = true; description = "Haskell's Simple Markup Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "templatepg" = callPackage @@ -106459,6 +109248,7 @@ self: { homepage = "https://github.com/ixmatus/hs-tempodb"; description = "A small Haskell wrapper around the TempoDB api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "temporal-csound" = callPackage @@ -106632,6 +109422,7 @@ self: { homepage = "http://cl-informatik.uibk.ac.at/software/haskell-rewriting/"; description = "Term Rewriting Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terminal-progress-bar" = callPackage @@ -106716,6 +109507,7 @@ self: { homepage = "http://lucc.ess.inpe.br/doku.php?id=terrahs"; description = "A Haskell GIS Programming Environment"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { terralib4c = null; translib = null;}; "tersmu" = callPackage @@ -106767,6 +109559,7 @@ self: { jailbreak = true; description = "Test.Framework wrapper for DocTest"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-golden" = callPackage @@ -106824,6 +109617,7 @@ self: { homepage = "http://batterseapower.github.com/test-framework/"; description = "QuickCheck support for the test-framework package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-quickcheck2" = callPackage @@ -106861,6 +109655,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "test-sandbox support for the test-framework package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-skip" = callPackage @@ -106977,6 +109772,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "Sandbox for system tests"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-sandbox-hunit" = callPackage @@ -106989,6 +109785,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "HUnit convenience functions for use with test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-sandbox-quickcheck" = callPackage @@ -107005,6 +109802,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "QuickCheck convenience functions for use with test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-shouldbe" = callPackage @@ -107047,6 +109845,7 @@ self: { jailbreak = true; description = "Small test package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testing-feat" = callPackage @@ -107077,6 +109876,7 @@ self: { homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpack" = callPackage @@ -107104,6 +109904,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/testpattern"; description = "Display a monitor test pattern"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testrunner" = callPackage @@ -107116,6 +109917,7 @@ self: { buildDepends = [ base HUnit QuickCheck random regex-compat stm ]; description = "Easy unit test driver framework"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tetris" = callPackage @@ -107130,6 +109932,7 @@ self: { homepage = "http://d.hatena.ne.jp/mokehehe/20080921/tetris"; description = "A 2-D clone of Tetris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texmath" = callPackage @@ -107310,6 +110113,7 @@ self: { ]; description = "Parser and Printer for LDAP text data stream"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-locale-encoding" = callPackage @@ -107335,6 +110139,7 @@ self: { homepage = "https://github.com/brendanhay/text-manipulate"; description = "Case conversion, word boundary manipulation, and textual subjugation"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-normal" = callPackage @@ -107350,6 +110155,7 @@ self: { homepage = "https://github.com/joelteon/text-normal.git"; description = "Unicode-normalized text"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-printer" = callPackage @@ -107446,6 +110252,7 @@ self: { homepage = "https://github.com/RyanGlScott/text-show-instances"; description = "Additional instances for text-show"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-stream-decode" = callPackage @@ -107495,6 +110302,7 @@ self: { homepage = "http://github.com/finnsson/Text.XML.Generic"; description = "Serialize Data to XML (strings)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-xml-qq" = callPackage @@ -107507,6 +110315,7 @@ self: { homepage = "http://www.github.com/finnsson/text-xml-qq"; description = "Quasiquoter for xml. XML DSL in Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "textPlot" = callPackage @@ -107518,6 +110327,7 @@ self: { buildDepends = [ array base ]; description = "Plot functions in text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "textmatetags" = callPackage @@ -107532,6 +110342,7 @@ self: { homepage = "https://github.com/spockz/Haskell-Code-Completion-for-TextMate"; description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texts" = callPackage @@ -107542,6 +110353,7 @@ self: { sha256 = "15r3lrd6qrhhsll6qlbvgd5g545mj2s6banahwlibcimqqdw8s9h"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tf-random" = callPackage @@ -107723,6 +110535,7 @@ self: { homepage = "https://github.com/nikita-volkov/th-instance-reification"; description = "Fixed versions of instances reification functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-instances" = callPackage @@ -107746,6 +110559,7 @@ self: { ]; description = "A place to collect orphan instances for Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds" = callPackage @@ -107758,6 +110572,7 @@ self: { jailbreak = true; description = "Automated kind inference in Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-lift" = callPackage @@ -107873,6 +110688,7 @@ self: { homepage = "http://github.com/pjones/themoviedb"; description = "Haskell API bindings for http://themoviedb.org"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "themplate" = callPackage @@ -107892,6 +110708,7 @@ self: { homepage = "http://github.com/bennofs/themplate/"; description = "themplate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "theoremquest" = callPackage @@ -107918,6 +110735,7 @@ self: { jailbreak = true; description = "A simple client for the TheoremQuest theorem proving game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "these" = callPackage @@ -107993,6 +110811,7 @@ self: { homepage = "http://wiki.cs.pdx.edu/bartforge/thimk"; description = "Command-line spelling word suggestion tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thorn" = callPackage @@ -108097,6 +110916,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ThreadScope"; description = "A graphical tool for profiling parallel Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "threefish" = callPackage @@ -108159,6 +110979,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thrist" = callPackage @@ -108181,6 +111002,7 @@ self: { sha256 = "1yxmq7244a8bcw1jg00dqcpwzf8h1333c51k9d0v39flpkzp5qlc"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thumbnail" = callPackage @@ -108265,6 +111087,7 @@ self: { homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) gtk;}; "tic-tac-toe" = callPackage @@ -108279,6 +111102,7 @@ self: { homepage = "http://ecks.homeunix.net"; description = "Useful if reading \"Why FP matters\" by John Hughes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tickle" = callPackage @@ -108319,6 +111143,7 @@ self: { homepage = "http://yaxu.org/tidal/"; description = "Pattern language for improvised music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tidal-vis" = callPackage @@ -108331,6 +111156,7 @@ self: { homepage = "http://yaxu.org/tidal/"; description = "Visual rendering for Tidal patterns"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tie-knot" = callPackage @@ -108371,6 +111197,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; description = "Tiger Compiler of Universiteit Utrecht"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tightrope" = callPackage @@ -108405,6 +111232,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/tighttp/wiki"; description = "Tiny and Incrementally-Growing HTTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tilings" = callPackage @@ -108436,6 +111264,7 @@ self: { homepage = "http://www.timber-lang.org"; description = "The Timber Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time_1_5_0_1" = callPackage @@ -108480,6 +111309,7 @@ self: { homepage = "http://semantic.org/TimeLib/"; description = "Data instances for the time package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-exts" = callPackage @@ -108526,6 +111356,7 @@ self: { homepage = "http://cielonegro.org/HTTPDateTime.html"; description = "Parse and format HTTP/1.1 Date and Time strings"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-io-access" = callPackage @@ -108578,6 +111409,7 @@ self: { homepage = "https://bitbucket.org/jfmueller/time-patterns"; description = "Patterns for reccurring events"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-recurrence" = callPackage @@ -108636,6 +111468,7 @@ self: { homepage = "http://cielonegro.org/W3CDateTime.html"; description = "Parse, format and convert W3C Date and Time"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timecalc" = callPackage @@ -108677,6 +111510,7 @@ self: { homepage = "https://github.com/lambda-llama/timeout"; description = "Generalized sleep and timeout functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout-control" = callPackage @@ -108694,6 +111528,7 @@ self: { homepage = "http://github.com/alphaHeavy/timeout-control"; description = "Updatable timeouts as a Monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout-with-results" = callPackage @@ -108887,6 +111722,7 @@ self: { homepage = "http://patch-tag.com/r/nonowarn/tkhs/snapshot/current/content/pretty/README"; description = "Simple Presentation Utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tkyprof" = callPackage @@ -108916,6 +111752,7 @@ self: { homepage = "https://github.com/maoe/tkyprof"; description = "A web-based visualizer for GHC Profiling Reports"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tls" = callPackage @@ -108986,6 +111823,7 @@ self: { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS extra default values and helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tmpl" = callPackage @@ -109042,6 +111880,7 @@ self: { homepage = "https://github.com/conal/to-haskell"; description = "A type class and some utilities for generating Haskell code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-class" = callPackage @@ -109053,6 +111892,7 @@ self: { buildDepends = [ base ]; description = "Converting string-like types to Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-instances" = callPackage @@ -109064,6 +111904,7 @@ self: { buildDepends = [ to-string-class ]; description = "Instances for the ToString class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "todos" = callPackage @@ -109122,6 +111963,7 @@ self: { homepage = "http://code.haskell.org/~thielema/toilet/"; description = "Manage the toilet queue at the IMO"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "token-bucket" = callPackage @@ -109164,6 +112006,7 @@ self: { iconv progression QuickCheck ]; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tokyocabinet-haskell" = callPackage @@ -109177,6 +112020,7 @@ self: { homepage = "http://tom-lpsd.github.com/tokyocabinet-haskell/"; description = "Haskell binding of Tokyo Cabinet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) tokyocabinet;}; "tokyotyrant-haskell" = callPackage @@ -109255,6 +112099,7 @@ self: { homepage = "http://home.arcor.de/chr_bauer/topkata.html"; description = "OpenGL Arcade Game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torch" = callPackage @@ -109267,6 +112112,7 @@ self: { homepage = "http://patch-tag.com/repo/torch/home"; description = "Simple unit test library (or framework)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torrent" = callPackage @@ -109448,6 +112294,7 @@ self: { buildDepends = [ base containers glib ]; description = "Client library for Tracker metadata database, indexer and search tool"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trajectory" = callPackage @@ -109469,6 +112316,7 @@ self: { homepage = "https://github.com/mike-burns/trajectory"; description = "Tools and a library for working with Trajectory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transactional-events" = callPackage @@ -109480,6 +112328,7 @@ self: { buildDepends = [ base ListZipper MonadPrompt stm ]; description = "Transactional events, based on Concurrent ML semantics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transf" = callPackage @@ -109514,6 +112363,7 @@ self: { ]; description = "Generic representation of tree transformations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers_0_4_2_0" = callPackage @@ -109601,6 +112451,7 @@ self: { homepage = "https://github.com/jcristovao/transformers-convert"; description = "Sensible conversions between some of the monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-free" = callPackage @@ -109625,6 +112476,7 @@ self: { homepage = "https://github.com/JanBessai/transformers-runnable"; description = "A unified interface for the run operation of monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-supply" = callPackage @@ -109662,6 +112514,7 @@ self: { homepage = "http://github.com/nfjinjing/translate"; description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "traverse-with-class" = callPackage @@ -109688,6 +112541,7 @@ self: { homepage = "http://projects.haskell.org/traypoweroff"; description = "Tray Icon application to PowerOff / Reboot computer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tree-monad" = callPackage @@ -109748,6 +112602,7 @@ self: { homepage = "http://rampa.sk/static/treemap-html.html"; description = "Treemap related commands for producing foldable TreeMap HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "treeviz" = callPackage @@ -109763,6 +112618,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Treeviz"; description = "Visualization of computation decomposition trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tremulous-query" = callPackage @@ -109788,6 +112644,7 @@ self: { sha256 = "11jx2jf6vi7368ys39mz0ziy6xknbi0z87926n2y16am6k2h25k3"; description = "Deprecated"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "triangulation" = callPackage @@ -109804,6 +112661,7 @@ self: { homepage = "http://www.dinkla.net/"; description = "triangulation of polygons"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trifecta" = callPackage @@ -109918,6 +112776,7 @@ self: { buildDepends = [ base containers mtl time transformers ]; description = "A Transaction Framework for Web Applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsession-happstack" = callPackage @@ -109929,6 +112788,7 @@ self: { buildDepends = [ base happstack-server transformers tsession ]; description = "A Transaction Framework for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tskiplist" = callPackage @@ -109956,6 +112816,7 @@ self: { homepage = "https://github.com/davnils/tsp-viz"; description = "Real time TSP tour visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsparse" = callPackage @@ -109999,6 +112860,7 @@ self: { jailbreak = true; description = "Interface to TUN/TAP drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tup-functor" = callPackage @@ -110097,6 +112959,7 @@ self: { homepage = "http://github.com/diegoeche/tupleinstances"; description = "Functor, Applicative and Monad for n-ary tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuples-homogenous-h98" = callPackage @@ -110213,6 +113076,7 @@ self: { jailbreak = true; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-trees" = callPackage @@ -110269,6 +113133,7 @@ self: { homepage = "https://github.com/suzuki-shin/twhs"; description = "CLI twitter client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twidge" = callPackage @@ -110291,6 +113156,7 @@ self: { homepage = "http://software.complete.org/twidge"; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilight-stm" = callPackage @@ -110303,6 +113169,7 @@ self: { homepage = "http://proglang.informatik.uni-freiburg.de/projects/twilight/"; description = "STM library with safe irrevocable I/O and inconsistency repair"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twill" = callPackage @@ -110322,6 +113189,7 @@ self: { jailbreak = true; description = "Twilio API interaction"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twiml" = callPackage @@ -110336,6 +113204,7 @@ self: { homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twine" = callPackage @@ -110352,6 +113221,7 @@ self: { homepage = "http://twine.james-sanders.com"; description = "very simple template language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twisty" = callPackage @@ -110368,6 +113238,7 @@ self: { jailbreak = true; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitch" = callPackage @@ -110391,6 +113262,7 @@ self: { homepage = "https://github.com/jfischoff/twitch"; description = "A high level file watcher DSL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter" = callPackage @@ -110408,6 +113280,7 @@ self: { ]; description = "A Haskell-based CLI Twitter client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-conduit" = callPackage @@ -110443,6 +113316,7 @@ self: { homepage = "https://github.com/himura/twitter-conduit"; description = "Twitter API package with conduit interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-enumerator" = callPackage @@ -110463,6 +113337,7 @@ self: { homepage = "https://github.com/himura/twitter-enumerator"; description = "Twitter API package with enumerator interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-feed" = callPackage @@ -110484,6 +113359,7 @@ self: { homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-types" = callPackage @@ -110505,6 +113381,7 @@ self: { homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-types-lens" = callPackage @@ -110518,6 +113395,7 @@ self: { homepage = "https://github.com/himura/twitter-types-lens"; description = "Twitter JSON types (lens powered)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tx" = callPackage @@ -110535,6 +113413,7 @@ self: { homepage = "https://github.com/mcschroeder/tx"; description = "Persistent transactions on top of STM"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "txt-sushi" = callPackage @@ -110606,6 +113485,7 @@ self: { homepage = "http://www.decidable.org/haskell/typalyze"; description = "Analyzes Haskell source files for easy reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-aligned" = callPackage @@ -110645,6 +113525,7 @@ self: { ]; description = "Type-level serialization of type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-digits" = callPackage @@ -110656,6 +113537,7 @@ self: { buildDepends = [ base template-haskell type-spine ]; description = "Arbitrary-base type-level digits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-eq" = callPackage @@ -110693,6 +113575,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check"; description = "Type equality check"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-functions" = callPackage @@ -110753,6 +113636,7 @@ self: { homepage = "http://code.haskell.org/type-level"; description = "Type-level programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-bst" = callPackage @@ -110823,6 +113707,7 @@ self: { buildDepends = [ base ghc-prim ]; description = "Type-level sets (with value-level counterparts and various operations)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-tf" = callPackage @@ -110874,6 +113759,7 @@ self: { buildDepends = [ base template-haskell type-digits type-spine ]; description = "Type-level comparison operator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-ord-spine-cereal" = callPackage @@ -110889,6 +113775,7 @@ self: { ]; description = "Generic type-level comparison of types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-prelude" = callPackage @@ -110901,6 +113788,7 @@ self: { homepage = "http://code.atnnn.com/projects/type-prelude"; description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-settheory" = callPackage @@ -110916,6 +113804,7 @@ self: { ]; description = "Sets and functions-as-relations in the type system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-spine" = callPackage @@ -110927,6 +113816,7 @@ self: { buildDepends = [ base template-haskell ]; description = "A spine-view on types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-structure" = callPackage @@ -110955,6 +113845,7 @@ self: { homepage = "https://github.com/nikita-volkov/type-structure"; description = "Type structure analysis"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-sub-th" = callPackage @@ -110980,6 +113871,7 @@ self: { homepage = "http://github.com/jfischoff/type-sub-th"; description = "Substitute types for other types with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-unary" = callPackage @@ -111010,6 +113902,7 @@ self: { homepage = "http://github.com/bennofs/typeable-th"; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typedquery" = callPackage @@ -111027,6 +113920,7 @@ self: { homepage = "https://github.com/tolysz/typedquery"; description = "Parser for SQL augmented with types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typehash" = callPackage @@ -111038,6 +113932,7 @@ self: { buildDepends = [ base binary bytestring mtl pureMD5 syb ]; description = "Create a unique hash value for a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typelevel-tensor" = callPackage @@ -111056,6 +113951,7 @@ self: { homepage = "https://github.com/nushio3/typelevel-tensor"; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typeof" = callPackage @@ -111086,6 +113982,7 @@ self: { homepage = "http://github.com/mikeizbicki/typeparams/"; description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typesafe-endian" = callPackage @@ -111118,6 +114015,7 @@ self: { homepage = "http://github.com/paf31/typescript-docs"; description = "A documentation generator for TypeScript Definition files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typical" = callPackage @@ -111169,6 +114067,7 @@ self: { homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tzdata" = callPackage @@ -111207,6 +114106,7 @@ self: { jailbreak = true; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ua-parser" = callPackage @@ -111274,6 +114174,7 @@ self: { extraLibraries = [ icu ]; description = "String encoding conversion with ICU"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) icu;}; "udbus" = callPackage @@ -111335,6 +114236,7 @@ self: { homepage = "https://github.com/pxqr/udev"; description = "libudev bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { libudev = null;}; "uglymemo" = callPackage @@ -111417,6 +114319,7 @@ self: { homepage = "https://github.com/hvr/uhttpc"; description = "Minimal HTTP client library optimized for benchmarking"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ui-command" = callPackage @@ -111518,6 +114421,7 @@ self: { homepage = "http://github.com/luqui/unamb-custom"; description = "Functional concurrency with unamb using a custom scheduler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbound" = callPackage @@ -111574,6 +114478,7 @@ self: { homepage = "https://github.com/jcristovao/unbouded-delays-units"; description = "Thread delays and timeouts using proper time units"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unboxed-containers" = callPackage @@ -111586,6 +114491,7 @@ self: { homepage = "http://github.com/ekmett/unboxed-containers"; description = "Self-optimizing unboxed sets using view patterns and data families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unexceptionalio" = callPackage @@ -111612,6 +114518,7 @@ self: { homepage = "https://github.com/sjoerdvisscher/unfoldable"; description = "Class of data structures that can be unfolded"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ungadtagger" = callPackage @@ -111769,6 +114676,7 @@ self: { homepage = "http://sloompie.reinier.de/unicode-normalization/"; description = "Unicode normalization using the ICU library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) icu;}; "unicode-prelude" = callPackage @@ -111933,6 +114841,7 @@ self: { homepage = "http://code.haskell.org/~thielema/unique-logic-tf/"; description = "Solve simple simultaneous equations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uniqueid" = callPackage @@ -111945,6 +114854,7 @@ self: { homepage = "http://github.com/sebfisch/uniqueid/wikis"; description = "Splittable Unique Identifier Supply"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "units" = callPackage @@ -112010,6 +114920,7 @@ self: { homepage = "https://bitbucket.org/xnyhps/haskell-unittyped/"; description = "An extendable library for type-safe computations including units"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "universal-binary" = callPackage @@ -112131,6 +115042,7 @@ self: { homepage = "http://github.com/jfishcoff/universe-th"; description = "Construct a Dec's ancestor list"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix_2_7_1_0" = callPackage @@ -112225,6 +115137,7 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix-pty-light" = callPackage @@ -112266,6 +115179,7 @@ self: { buildDepends = [ array base mtl unix ]; description = "Unlambda interpreter"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unlit" = callPackage @@ -112279,6 +115193,7 @@ self: { buildDepends = [ base directory text ]; description = "Tool to convert literate code between styles or to code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unm-hip" = callPackage @@ -112329,6 +115244,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "Rematch support for unordered containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unpack-funcs" = callPackage @@ -112344,6 +115260,7 @@ self: { ]; description = "Monad transformers that mirror worker-wrapper transformations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unroll-ghc-plugin" = callPackage @@ -112411,6 +115328,7 @@ self: { ]; description = "Solve Boggle-like word games"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unusable-pkg" = callPackage @@ -112459,6 +115377,7 @@ self: { jailbreak = true; description = "Haskell client for Uploadcare"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "upskirt" = callPackage @@ -112470,6 +115389,7 @@ self: { buildDepends = [ base bytestring ]; description = "Binding to upskirt"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ureader" = callPackage @@ -112495,6 +115415,7 @@ self: { homepage = "https://github.com/pxqr/ureader"; description = "Minimalistic CLI RSS reader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urembed" = callPackage @@ -112516,6 +115437,7 @@ self: { homepage = "http://github.com/grwlf/urembed"; description = "Ur/Web static content generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri" = callPackage @@ -112547,6 +115469,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-encode" = callPackage @@ -112580,6 +115503,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-enumerator-file" = callPackage @@ -112600,6 +115524,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "uri-enumerator backend for the file scheme (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-template" = callPackage @@ -112672,6 +115597,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/urlcheck"; description = "Parallel link checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldecode" = callPackage @@ -112686,6 +115612,7 @@ self: { homepage = "https://github.com/beastaugh/urldecode"; description = "Decode percent-encoded strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldisp-happstack" = callPackage @@ -112697,6 +115624,7 @@ self: { buildDepends = [ base bytestring happstack-server mtl ]; description = "Simple, declarative, expressive URL routing -- on happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlencoded" = callPackage @@ -112711,6 +115639,7 @@ self: { homepage = "https://github.com/pheaver/urlencoded"; description = "Generate or process x-www-urlencoded data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlpath" = callPackage @@ -112760,6 +115689,7 @@ self: { homepage = "http://github.com/grwlf/urxml"; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb" = callPackage @@ -112793,6 +115723,7 @@ self: { jailbreak = true; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-id-database" = callPackage @@ -112830,6 +115761,7 @@ self: { homepage = "https://github.com/basvandijk/usb-iteratee"; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-safe" = callPackage @@ -112848,6 +115780,7 @@ self: { homepage = "https://github.com/basvandijk/usb-safe/"; description = "Type-safe communication with USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "utf8-env" = callPackage @@ -113171,6 +116104,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/uvector"; description = "Fast unboxed arrays with a flexible interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uvector-algorithms" = callPackage @@ -113183,6 +116117,7 @@ self: { homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for uvector unboxed arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uxadt" = callPackage @@ -113223,6 +116158,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "interface to Video For Linux Two (V4L2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "v4l2-examples" = callPackage @@ -113238,6 +116174,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "video for linux two examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum" = callPackage @@ -113268,6 +116205,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vacuum-cairo"; description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-graphviz" = callPackage @@ -113299,6 +116237,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-ubigraph" = callPackage @@ -113353,6 +116292,7 @@ self: { sha256 = "19d02sblyxg73prlrmlcs4vclzxzg2pzlrp67f2kx94nsw0v3l4p"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "validation" = callPackage @@ -113427,6 +116367,7 @@ self: { homepage = "https://github.com/benzrf/vampire"; description = "Analyze and visualize expression trees"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "var" = callPackage @@ -113444,6 +116385,7 @@ self: { homepage = "http://github.com/sonyandy/var"; description = "Mutable variables and tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "varan" = callPackage @@ -113560,6 +116502,7 @@ self: { homepage = "https://github.com/forste/haskellVCSGUI"; description = "GUI library for source code management systems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vcswrapper" = callPackage @@ -113699,6 +116642,7 @@ self: { buildDepends = [ base deepseq vector ]; description = "A buffer compatible with Data.Vector.*"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-bytestring" = callPackage @@ -113719,6 +116663,7 @@ self: { homepage = "https://github.com/basvandijk/vector-bytestring"; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-clock" = callPackage @@ -113757,6 +116702,7 @@ self: { jailbreak = true; description = "Conduit utilities for vectors"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-fftw" = callPackage @@ -113771,6 +116717,7 @@ self: { homepage = "http://hackage.haskell.org/package/vector-fftw"; description = "A binding to the fftw library for one-dimensional vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { fftw3 = null;}; "vector-functorlazy" = callPackage @@ -113784,6 +116731,7 @@ self: { homepage = "http://github.com/mikeizbicki/vector-functorlazy/"; description = "vectors that perform the fmap operation in constant time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-heterogenous" = callPackage @@ -113849,6 +116797,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vector-random"; description = "Generate vectors filled with high quality pseudorandom numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-read-instances" = callPackage @@ -113861,6 +116810,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "(deprecated) Read instances for 'Data.Vector'"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-space" = callPackage @@ -113926,6 +116876,7 @@ self: { homepage = "http://github.com/geezusfreeek/vector-static"; description = "Statically checked sizes on Data.Vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-strategies" = callPackage @@ -113975,6 +116926,7 @@ self: { homepage = "http://github.com/tomahawkins/verilog"; description = "Verilog parser and DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vhd" = callPackage @@ -114065,6 +117017,7 @@ self: { homepage = "http://github.com/michaelxavier/vigilance"; description = "An extensible dead-man's switch system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vimus" = callPackage @@ -114111,6 +117064,7 @@ self: { homepage = "http://www.vintage-basic.net"; description = "Interpreter for microcomputer-era BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl" = callPackage @@ -114162,6 +117116,7 @@ self: { jailbreak = true; description = "Provide json instances automagically to vinyl types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-utils" = callPackage @@ -114194,6 +117149,7 @@ self: { homepage = "https://github.com/Paczesiowa/virthualenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vision" = callPackage @@ -114214,6 +117170,7 @@ self: { ]; description = "An XMMS2 client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-graphrewrite" = callPackage @@ -114237,6 +117194,7 @@ self: { homepage = "http://github.com/zsol/visual-graphrewrite/"; description = "Visualize the graph-rewrite steps of a Haskell program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-prof" = callPackage @@ -114257,6 +117215,7 @@ self: { homepage = "http://github.com/djv/VisualProf"; description = "Create a visual profile of a program's source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vk-aws-route53" = callPackage @@ -114325,6 +117284,7 @@ self: { homepage = "https://github.com/cartazio/Vowpal-Utils"; description = "Vowpal Wabbit utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "voyeur" = callPackage @@ -114337,6 +117297,7 @@ self: { homepage = "https://github.com/sethfowler/hslibvoyeur"; description = "Haskell bindings for libvoyeur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vte" = callPackage @@ -114351,6 +117312,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) vte;}; "vtegtk3" = callPackage @@ -114365,6 +117327,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.gnome) vte;}; "vty" = callPackage @@ -114395,6 +117358,7 @@ self: { homepage = "https://github.com/coreyoconnor/vty"; description = "A simple terminal UI library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-examples" = callPackage @@ -114417,6 +117381,7 @@ self: { homepage = "https://github.com/coreyoconnor/vty"; description = "Examples programs using the vty library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-menu" = callPackage @@ -114431,6 +117396,7 @@ self: { jailbreak = true; description = "A lib for displaying a menu and getting a selection using VTY"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-ui" = callPackage @@ -114452,6 +117418,7 @@ self: { homepage = "http://jtdaugherty.github.com/vty-ui/"; description = "An interactive terminal user interface library for Vty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-ui-extras" = callPackage @@ -114464,6 +117431,7 @@ self: { jailbreak = true; description = "Extra vty-ui functionality not included in the core library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai" = callPackage @@ -114618,6 +117586,7 @@ self: { homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "WAI support for server-sent events (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-extra" = callPackage @@ -114662,6 +117631,7 @@ self: { ]; description = "Run CGI apps on WAI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-graceful" = callPackage @@ -114675,6 +117645,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/wai-graceful"; description = "Graceful shutdown for WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-devel" = callPackage @@ -114696,6 +117667,7 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-fastcgi" = callPackage @@ -114756,6 +117728,7 @@ self: { homepage = "http://github.com/snoyberg/wai-handler-snap"; description = "Web Application Interface handler using snap-server. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-webkit" = callPackage @@ -114769,6 +117742,7 @@ self: { homepage = "https://github.com/yesodweb/wai/tree/master/wai-handler-webkit"; description = "Turn WAI applications into standalone GUIs using QtWebkit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { QtWebKit = null;}; "wai-hastache" = callPackage @@ -114785,6 +117759,7 @@ self: { homepage = "https://github.com/singpolyma/wai-hastache"; description = "Nice wrapper around hastache for use with WAI"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-hmac-auth" = callPackage @@ -114809,6 +117784,7 @@ self: { homepage = "https://github.com/raptros/wai-hmac-auth"; description = "hmac authentication tools for WAI apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-lite" = callPackage @@ -114825,6 +117801,7 @@ self: { jailbreak = true; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-logger" = callPackage @@ -114860,6 +117837,7 @@ self: { ]; description = "A logging system for preforked WAI apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache" = callPackage @@ -114883,6 +117861,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache"; description = "Caching middleware for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache-redis" = callPackage @@ -114903,6 +117882,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache-redis"; description = "Redis backend for wai-middleware-cache"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-catch" = callPackage @@ -114916,6 +117896,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-catch"; description = "Wai error catching middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-etag" = callPackage @@ -114935,6 +117916,7 @@ self: { homepage = "https://github.com/ameingast/wai-middleware-etag"; description = "WAI ETag middleware for static files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-headers" = callPackage @@ -114947,6 +117929,7 @@ self: { homepage = "http://github.com/seanhess/wai-middleware-headers"; description = "cors and addHeaders for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-route" = callPackage @@ -114969,6 +117952,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-route"; description = "Wai dispatch middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-static" = callPackage @@ -115071,6 +118055,7 @@ self: { homepage = "https://github.com/ajnsit/wai-routes"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-routing" = callPackage @@ -115146,6 +118131,7 @@ self: { homepage = "https://github.com/singpolyma/wai-session-tokyocabinet"; description = "Session store based on Tokyo Cabinet"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-static-cache" = callPackage @@ -115182,6 +118168,7 @@ self: { homepage = "https://github.com/gregwebs/wai-static-pages"; description = "generate static html pages from a WAI application"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-test" = callPackage @@ -115194,6 +118181,7 @@ self: { homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "Unit test framework (built on HUnit) for WAI applications. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-throttler" = callPackage @@ -115208,6 +118196,7 @@ self: { jailbreak = true; description = "Wai middleware for request throttling"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-util" = callPackage @@ -115313,6 +118302,7 @@ self: { homepage = "http://tanakh.jp"; description = "Dynamic configurable warp HTTP server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "warp-static" = callPackage @@ -115370,6 +118360,7 @@ self: { jailbreak = true; description = "set group and user id before running server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchdog" = callPackage @@ -115453,6 +118444,7 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/wavesurfer"; description = "Parse WaveSurfer files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavy" = callPackage @@ -115508,6 +118500,7 @@ self: { homepage = "https://github.com/cvb/hs-weather-api.git"; description = "Weather api implemented in haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-browser-in-haskell" = callPackage @@ -115519,6 +118512,7 @@ self: { buildDepends = [ base gtk webkit ]; description = "Web Browser In Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-css" = callPackage @@ -115585,6 +118579,7 @@ self: { homepage = "http://github.com/cmoore/web-mongrel2"; description = "Bindings for the Mongrel2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-page" = callPackage @@ -115702,6 +118697,7 @@ self: { homepage = "http://docs.yesodweb.com/web-routes-quasi/"; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-regular" = callPackage @@ -115745,6 +118741,7 @@ self: { jailbreak = true; description = "Extends web-routes with some transformers instances for RouteT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-wai" = callPackage @@ -115832,6 +118829,7 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webidl" = callPackage @@ -115872,6 +118870,7 @@ self: { homepage = "http://github.com/ananthakumaran/webify"; description = "webfont generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webkit" = callPackage @@ -115888,6 +118887,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) webkit;}; "webkit-javascriptcore" = callPackage @@ -115901,6 +118901,7 @@ self: { pkgconfigDepends = [ webkit ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) webkit;}; "webkitgtk3" = callPackage @@ -115917,6 +118918,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) webkit;}; "webkitgtk3-javascriptcore" = callPackage @@ -115932,6 +118934,7 @@ self: { pkgconfigDepends = [ webkit ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) webkit;}; "webpage" = callPackage @@ -116024,6 +119027,7 @@ self: { ]; description = "Functional reactive web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wedding-announcement" = callPackage @@ -116057,6 +119061,7 @@ self: { jailbreak = true; description = "Wedged postcard generator"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted-regexp" = callPackage @@ -116073,6 +119078,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-regexp"; description = "Weighted Regular Expression Matcher"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted-search" = callPackage @@ -116104,6 +119110,7 @@ self: { homepage = "https://github.com/mcschroeder/welshy"; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-mongo" = callPackage @@ -116117,6 +119124,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "MongoDB plugin for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-redis" = callPackage @@ -116130,6 +119138,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Redis connection for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-strapped" = callPackage @@ -116143,6 +119152,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Strapped templates for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "while-lang-parser" = callPackage @@ -116233,6 +119243,7 @@ self: { homepage = "http://rampa.sk/static/wikipedia4epub.html"; description = "Wikipedia EPUB E-Book construction from Firefox history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "win-hp-path" = callPackage @@ -116266,6 +119277,7 @@ self: { homepage = "http://patch-tag.com/repo/windowslive"; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winerror" = callPackage @@ -116276,6 +119288,7 @@ self: { sha256 = "0xamx4yhyv264mka4ypp0r1xh3xv7ba31sis3lbhjycn4i07wlhd"; description = "Error handling for foreign calls to the Windows API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winio" = callPackage @@ -116293,6 +119306,7 @@ self: { homepage = "http://github.com/felixmar/winio"; description = "I/O library for Windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { kernel32 = null; ws2_32 = null;}; "witherable" = callPackage @@ -116407,6 +119421,7 @@ self: { homepage = "http://github.com/ekmett/wl-pprint-terminfo/"; description = "A color pretty printer with terminfo support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wl-pprint-text" = callPackage @@ -116451,6 +119466,7 @@ self: { homepage = "https://github.com/nikita-volkov/wobsurv"; description = "A simple and highly performant HTTP file server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woffex" = callPackage @@ -116465,6 +119481,7 @@ self: { jailbreak = true; description = "Web Open Font Format (WOFF) unpacker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wol" = callPackage @@ -116525,6 +119542,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/word24"; description = "24-bit word and int types for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "word8" = callPackage @@ -116547,6 +119565,7 @@ self: { sha256 = "1jdcv5h41k5xckviyc0p0k0q68s371llcvmkdbg78vh4b3xw7cd5"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wordexp" = callPackage @@ -116602,6 +119621,7 @@ self: { buildDepends = [ array base containers fclabels ]; description = "A word search solver library and executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wordsetdiff" = callPackage @@ -116635,6 +119655,7 @@ self: { jailbreak = true; description = "Subscribe to a wiki's RSS feed and archive external links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wraparound" = callPackage @@ -116669,6 +119690,7 @@ self: { homepage = "http://code.haskell.org/~thielema/wraxml/"; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wreq" = callPackage @@ -116722,6 +119744,7 @@ self: { jailbreak = true; description = "Colour space transformations and metrics"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wsedit" = callPackage @@ -116751,6 +119774,7 @@ self: { buildDepends = [ base old-locale time transformers ]; description = "Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wtk-gtk" = callPackage @@ -116766,6 +119790,7 @@ self: { ]; description = "GTK tools within Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-basic" = callPackage @@ -116782,6 +119807,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Basic objects and system code built on Wumpus-Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-core" = callPackage @@ -116810,6 +119836,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "High-level drawing objects built on Wumpus-Basic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-microprint" = callPackage @@ -116827,6 +119854,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Microprints - \"greek-text\" pictures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-tree" = callPackage @@ -116844,6 +119872,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Drawing trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wx" = callPackage @@ -116856,6 +119885,7 @@ self: { homepage = "http://haskell.org/haskellwiki/WxHaskell"; description = "wxHaskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxAsteroids" = callPackage @@ -116870,6 +119900,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/wxAsteroids"; description = "Try to avoid the asteroids with your space ship"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxFruit" = callPackage @@ -116885,6 +119916,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxFruit"; description = "An implementation of Fruit using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxc" = callPackage @@ -116901,6 +119933,7 @@ self: { homepage = "http://haskell.org/haskellwiki/WxHaskell"; description = "wxHaskell C++ wrapper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa; inherit (pkgs) wxGTK;}; @@ -116920,6 +119953,7 @@ self: { homepage = "http://haskell.org/haskellwiki/WxHaskell"; description = "wxHaskell core"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa; inherit (pkgs) wxGTK;}; @@ -116954,6 +119988,7 @@ self: { homepage = "http://github.com/elbrujohalcon/wxhnotepad"; description = "An example of how to implement a basic notepad with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxturtle" = callPackage @@ -116967,6 +120002,7 @@ self: { buildDepends = [ base convertible Imlib wx yjsvg yjtools ]; description = "turtle like LOGO with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wybor" = callPackage @@ -117009,6 +120045,7 @@ self: { homepage = "http://dmwit.com/wyvern"; description = "An autoresponder for Dragon Go Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x-dsp" = callPackage @@ -117027,6 +120064,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/x-dsp"; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x11-xim" = callPackage @@ -117054,6 +120092,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/x11-xinput"; description = "Haskell FFI bindings for X11 XInput library (-lXi)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs.xlibs) libXi;}; "x509" = callPackage @@ -117238,6 +120277,7 @@ self: { buildDepends = [ base directory filepath process unix ]; description = "XChat"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xdg-basedir" = callPackage @@ -117278,6 +120318,7 @@ self: { jailbreak = true; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xenstore" = callPackage @@ -117307,6 +120348,7 @@ self: { homepage = "http://patch-tag.com/r/obbele/xfconf/home"; description = "FFI bindings to xfconf"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { libxfconf-0 = null;}; "xformat" = callPackage @@ -117337,6 +120379,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhb" = callPackage @@ -117354,6 +120397,7 @@ self: { homepage = "https://github.com/aslatter/xhb"; description = "X Haskell Bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhtml_3000_2_1" = callPackage @@ -117407,6 +120451,7 @@ self: { homepage = "http://github.com/joachifm/hxine"; description = "Bindings to xine-lib"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) { libxine = null; xine = null;}; "xing-api" = callPackage @@ -117430,6 +120475,7 @@ self: { homepage = "http://github.com/JanAhrens/xing-api-haskell"; description = "Wrapper for the XING API, v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xkbcommon" = callPackage @@ -117449,6 +120495,7 @@ self: { extraLibraries = [ xkbcommon ]; description = "Haskell bindings for libxkbcommon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { xkbcommon = null;}; "xkcd" = callPackage @@ -117467,6 +120514,7 @@ self: { homepage = "http://github.com/sellweek/xkcd"; description = "Downloads the most recent xkcd comic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsior" = callPackage @@ -117489,6 +120537,7 @@ self: { ]; description = "Streaming Excel file generation and parsing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsx" = callPackage @@ -117536,6 +120585,7 @@ self: { homepage = "https://github.com/qrilka/xlsx-templater"; description = "Simple and incomplete Excel file templater"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml" = callPackage @@ -117582,6 +120632,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse XML catalog files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-conduit" = callPackage @@ -117648,6 +120699,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-enumerator-combinators" = callPackage @@ -117666,6 +120718,7 @@ self: { jailbreak = true; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-extractors" = callPackage @@ -117769,6 +120822,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Parsing XML with Parsec"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-picklers" = callPackage @@ -117798,6 +120852,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-pipe/wiki"; description = "XML parser which uses simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-prettify" = callPackage @@ -117812,6 +120867,7 @@ self: { homepage = "http://github.com/rosenbergdm/xml-prettify"; description = "Pretty print XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-push" = callPackage @@ -117833,6 +120889,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-push/wiki"; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-to-json" = callPackage @@ -117919,6 +120976,7 @@ self: { homepage = "http://github.com/yihuang/xml2json"; description = "translate xml to json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml2x" = callPackage @@ -117937,6 +120995,7 @@ self: { jailbreak = true; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmlgen" = callPackage @@ -117993,6 +121052,7 @@ self: { homepage = "http://github.com/dagle/hs-xmltv"; description = "Show tv channels in the terminal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client" = callPackage @@ -118007,6 +121067,7 @@ self: { buildTools = [ c2hs ]; description = "An XMMS2 client library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client-glib" = callPackage @@ -118019,6 +121080,7 @@ self: { buildTools = [ c2hs ]; description = "An XMMS2 client library — GLib integration"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmobar" = callPackage @@ -118129,6 +121191,7 @@ self: { homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-contrib-gpl" = callPackage @@ -118176,6 +121239,7 @@ self: { homepage = "http://xmonad.org/"; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-extras" = callPackage @@ -118209,6 +121273,7 @@ self: { homepage = "http://github.com/supki/xmonad-screenshot"; description = "Workspaces screenshooting utility for XMonad"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-utils" = callPackage @@ -118240,6 +121305,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xmpipe/wiki"; description = "XMPP implementation using simple-PIPE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xorshift" = callPackage @@ -118302,6 +121368,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "convert utility for xoj files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-parser" = callPackage @@ -118322,6 +121389,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Xournal file parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-render" = callPackage @@ -118339,6 +121407,7 @@ self: { jailbreak = true; description = "Xournal file renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-types" = callPackage @@ -118373,6 +121442,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Cluster EST sequences"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xsd" = callPackage @@ -118413,6 +121483,7 @@ self: { extraLibraries = [ xslt ]; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { xslt = null;}; "xss-sanitize" = callPackage @@ -118446,6 +121517,7 @@ self: { homepage = "http://github.com/alanz/xtc"; description = "eXtended & Typed Controls for wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xtest" = callPackage @@ -118554,6 +121626,7 @@ self: { homepage = "http://www.people.fas.harvard.edu/~stewart5/code/yahoo-web-search"; description = "Yahoo Web Search Services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yajl" = callPackage @@ -118568,6 +121641,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Bindings for YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) yajl;}; "yajl-enumerator" = callPackage @@ -118585,6 +121659,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yall" = callPackage @@ -118718,6 +121793,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Scotty server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-snap" = callPackage @@ -118735,6 +121811,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Snap server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml2owl" = callPackage @@ -118753,6 +121830,7 @@ self: { homepage = "http://github.com/leifw/yaml2owl"; description = "Generate OWL schema from YAML syntax, and an RDFa template"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa-canvas" = callPackage @@ -118782,6 +121860,7 @@ self: { homepage = "https://github.com/deepfire/yampa-glfw"; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa-glut" = callPackage @@ -118878,6 +121957,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Additional utilities to work with Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yeganesh" = callPackage @@ -119025,6 +122105,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "BCrypt salted and hashed passwords in a database as auth for yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-deskcom" = callPackage @@ -119121,6 +122202,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "LDAP Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-oauth" = callPackage @@ -119172,6 +122254,7 @@ self: { ]; description = "Provides PAM authentication module"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-smbclient" = callPackage @@ -119189,6 +122272,7 @@ self: { homepage = "https://github.com/kkazuo/yesod-auth-smbclient.git"; description = "Authentication plugin for Yesod using smbclient"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-zendesk" = callPackage @@ -119262,6 +122346,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-comments"; description = "A generic comments interface for a Yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-continuations" = callPackage @@ -119281,6 +122366,7 @@ self: { homepage = "https://github.com/softmechanics/yesod-continuations/"; description = "Continuations for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-core" = callPackage @@ -119348,6 +122434,7 @@ self: { homepage = "http://github.com/tlaitinen/yesod-datatables"; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-default" = callPackage @@ -119382,6 +122469,7 @@ self: { homepage = "https://github.com/tlaitinen/yesod-dsl"; description = "DSL for generating Yesod subsite to manage an RDBMS;"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-eventsource" = callPackage @@ -119399,6 +122487,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Server-sent events support for Yesod apps"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-examples" = callPackage @@ -119422,6 +122511,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { inherit (pkgs) sqlite;}; "yesod-fay" = callPackage @@ -119443,6 +122533,7 @@ self: { homepage = "https://github.com/fpco/yesod-fay"; description = "Utilities for using the Fay Haskell-to-JS compiler with Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-fb" = callPackage @@ -119535,6 +122626,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies"; description = "A collection of various small helpers useful in any yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-json" = callPackage @@ -119592,6 +122684,7 @@ self: { homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-markdown" = callPackage @@ -119638,6 +122731,7 @@ self: { buildDepends = [ base template-haskell yesod ]; description = "Pagination for Yesod sites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-pagination" = callPackage @@ -119657,6 +122751,7 @@ self: { homepage = "https://github.com/joelteon/yesod-pagination"; description = "Pagination in Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-paginator" = callPackage @@ -119674,6 +122769,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-paginator"; description = "A pagination approach for yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-persistent" = callPackage @@ -119767,6 +122863,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Meta package for Yesod (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-pnotify" = callPackage @@ -119797,6 +122894,7 @@ self: { homepage = "https://github.com/snoyberg/yesod-pure"; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-purescript" = callPackage @@ -119892,6 +122990,7 @@ self: { homepage = "http://github.com/pSub/yesod-rst"; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-s3" = callPackage @@ -119909,6 +123008,7 @@ self: { homepage = "https://github.com/tvh/yesod-s3"; description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-session-redis" = callPackage @@ -119927,6 +123027,7 @@ self: { homepage = "https://github.com/ollieh/yesod-session-redis"; description = "Redis-Powered Sessions for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sitemap" = callPackage @@ -120008,6 +123109,7 @@ self: { homepage = "https://bitbucket.org/wuzzeb/yesod-static-generators"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-tableview" = callPackage @@ -120019,6 +123121,7 @@ self: { buildDepends = [ base hamlet persistent yesod ]; description = "Table view for Yesod applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-test" = callPackage @@ -120064,6 +123167,7 @@ self: { homepage = "https://github.com/bogiebro/yesod-test-json"; description = "Utility functions for testing JSON web services written in Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-text-markdown" = callPackage @@ -120117,6 +123221,7 @@ self: { homepage = "https://github.com/Tener/yesod-vend"; description = "Simple CRUD classes for easy view creation for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-websockets" = callPackage @@ -120154,6 +123259,7 @@ self: { homepage = "https://github.com/jamesdabbs/yesod-worker"; description = "Drop-in(ish) background worker system for Yesod apps"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yhccore" = callPackage @@ -120166,6 +123272,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Yhc's Internal Core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi" = callPackage @@ -120202,6 +123309,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Yi"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-contrib" = callPackage @@ -120222,6 +123330,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Yi"; description = "Add-ons to Yi, the Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-emacs-colours" = callPackage @@ -120252,6 +123361,7 @@ self: { homepage = "https://github.com/yi-editor/yi-fuzzy-open"; description = "Fuzzy open plugin for Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-gtk" = callPackage @@ -120263,6 +123373,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Yi"; description = "The Haskell-Scriptable Editor, helper package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-language" = callPackage @@ -120301,6 +123412,7 @@ self: { homepage = "https://github.com/Fuuzetsu/yi-monokai"; description = "Monokai colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-rope" = callPackage @@ -120331,6 +123443,7 @@ self: { homepage = "https://github.com/yi-editor/yi-snippet"; description = "Snippet support for Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-spolsky" = callPackage @@ -120344,6 +123457,7 @@ self: { homepage = "https://github.com/melrief/yi-spolsky"; description = "Spolsky colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-vty" = callPackage @@ -120355,6 +123469,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Yi"; description = "The Haskell-Scriptable Editor, helper package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yices" = callPackage @@ -120414,6 +123529,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml"; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yjftp-libs" = callPackage @@ -120488,6 +123604,7 @@ self: { ]; description = "Generic Programming with Disbanded Data Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "york-lava" = callPackage @@ -120500,6 +123617,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "A library for digital circuit description"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "youtube" = callPackage @@ -120538,6 +123656,7 @@ self: { homepage = "https://github.com/fabianbergmark/YQL"; description = "A YQL engine to execute Open Data Tables"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yst" = callPackage @@ -120590,6 +123709,7 @@ self: { homepage = "http://github.com/nfjinjing/yuuko"; description = "A transcendental HTML parser gently wrapping the HXT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "z3" = callPackage @@ -120603,6 +123723,7 @@ self: { homepage = "http://bitbucket.org/iago/z3-haskell"; description = "Bindings for the Z3 Theorem Prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) { gomp = null; inherit (pkgs) z3;}; "zampolit" = callPackage @@ -120634,6 +123755,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna"; description = "lojban parser (zasni gerna)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zcache" = callPackage @@ -120680,6 +123802,7 @@ self: { homepage = "https://github.com/VictorDenisov/zendesk-api"; description = "Zendesk API for Haskell programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeno" = callPackage @@ -120698,6 +123821,7 @@ self: { ]; description = "An automated proof system for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq-haskell" = callPackage @@ -120717,6 +123841,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 2.1.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { zeromq = null;}; "zeromq3-conduit" = callPackage @@ -120734,6 +123859,7 @@ self: { homepage = "https://github.com/NicolasT/zeromq3-conduit"; description = "Conduit bindings for zeromq3-haskell"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq3-haskell" = callPackage @@ -120757,6 +123883,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 3.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) { zeromq = null;}; "zeromq4-haskell" = callPackage @@ -120798,6 +123925,7 @@ self: { jailbreak = true; description = "ZeroTH - remove unnecessary TH dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zigbee-znet25" = callPackage @@ -120949,6 +124077,7 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming compression/decompression via conduits. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zlib-enum" = callPackage @@ -120993,6 +124122,7 @@ self: { homepage = "https://github.com/lucasdicioccio/zmcat"; description = "Command-line tool for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zmidi-core" = callPackage @@ -121041,6 +124171,7 @@ self: { ]; description = "A socat-like tool for zeromq library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoneinfo" = callPackage @@ -121053,6 +124184,7 @@ self: { jailbreak = true; description = "ZoneInfo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom" = callPackage @@ -121072,6 +124204,7 @@ self: { homepage = "http://github.com/iand675/Zoom"; description = "A rake/thor-like task runner written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache" = callPackage @@ -121099,6 +124232,7 @@ self: { jailbreak = true; description = "A streamable, seekable, zoomable cache file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-pcm" = callPackage @@ -121116,6 +124250,7 @@ self: { jailbreak = true; description = "Library for zoom-cache PCM audio codecs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-sndfile" = callPackage @@ -121136,6 +124271,7 @@ self: { jailbreak = true; description = "Tools for generating zoom-cache-pcm files"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zot" = callPackage @@ -121164,6 +124300,7 @@ self: { homepage = "https://github.com/MasseR/zsh-battery"; description = "Ascii bars representing battery status"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ztail" = callPackage From ce06d504bbc65d83236495421d1da53da519e3b6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Jan 2015 20:54:31 +0100 Subject: [PATCH 126/185] cabal2nix-2.x: bump to latest version --- .../haskell-modules/configuration-common.nix | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 7628753f9ce..4746060bfda 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -139,21 +139,27 @@ self: super: { pname = "cabal2nix"; version = "2.0"; src = pkgs.fetchgit { - url = "git://github.com/NixOS/cabal2nix.git"; - rev = "2a1a10f38f21f27e6555b399db131380af1cf7ff"; - sha256 = "51c96e5a089396c34bfa27e76778743161504e04d6220b2bb7e0fbcde80430fa"; + url = "http://github.com/NixOS/cabal2nix.git"; + sha256 = "c1927f7441a057f02d25cbca855f533fc8073e7680083caa86d48e3d69ab69fd"; + rev = "0c4c1f2529a7e4b83ec21922d77c792a9bd1d662"; }; isLibrary = false; isExecutable = true; buildDepends = with self; [ aeson base bytestring Cabal containers deepseq deepseq-generics - directory filepath hackage-db hspec monad-par monad-par-extras - mtl pretty process regex-posix SHA split transformers - utf8-string QuickCheck + directory filepath hackage-db monad-par monad-par-extras mtl pretty + prettyclass process QuickCheck regex-posix SHA split transformers + utf8-string + ]; + testDepends = with self; [ + aeson base bytestring Cabal containers deepseq deepseq-generics + directory doctest filepath hackage-db hspec monad-par + monad-par-extras mtl pretty prettyclass process QuickCheck + regex-posix SHA split transformers utf8-string ]; - testDepends = with self; [ base doctest ]; homepage = "http://github.com/NixOS/cabal2nix"; description = "Convert Cabal files into Nix build instructions"; license = pkgs.stdenv.lib.licenses.bsd3; }; + } From a910aa77fbfd377f4d558f9378c655f2c7ce8fdd Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 01:53:27 +0300 Subject: [PATCH 127/185] Add Squid 3.5 --- pkgs/servers/squid/squids.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/squid/squids.nix b/pkgs/servers/squid/squids.nix index 3cb8d71e303..587c17a3cee 100644 --- a/pkgs/servers/squid/squids.nix +++ b/pkgs/servers/squid/squids.nix @@ -50,5 +50,16 @@ rec { configureFlags = ["--enable-ssl" "--enable-ssl-crtd"]; }; - latest = squid34; + squid35 = squid30.merge rec { + name = "squid-3.5.1"; + src = args.fetchurl { + url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; + sha256 = "0rfv1v5vkk7l08v4j16l0lz2grrzd8qf2n25i73qd7c8rgwd6a3x"; + }; + buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 + libtool openssl]; + configureFlags = ["--with-openssl" "--enable-ssl-crtd"]; + }; + + latest = squid35; } From 4a8feb5792d05090d4ed7c8025e4f7aeb03c9499 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 01:58:12 +0300 Subject: [PATCH 128/185] Update CLX --- pkgs/development/lisp-modules/lisp-packages.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/lisp-modules/lisp-packages.nix b/pkgs/development/lisp-modules/lisp-packages.nix index 6456be327b7..064ea840e26 100644 --- a/pkgs/development/lisp-modules/lisp-packages.nix +++ b/pkgs/development/lisp-modules/lisp-packages.nix @@ -19,13 +19,14 @@ let lispPackages = rec { clx = buildLispPackage rec { baseName = "clx"; - version = "2014-11-03"; - description = "X11 bindings for Common Lisp"; + version = "git-20150117"; + description = "An implementation of the X Window System protocol in Lisp."; deps = []; + # Source type: git src = pkgs.fetchgit { - url = "https://github.com/sharplispers/clx.git"; - rev = "c2910c5d707a97e87b354de3f2fbe2ae038e9bc8"; - sha256 = "1jk0hfk6rb9cf58xhqq7vaisj63k3x9jpj06wqpa32y5ppjcyijw"; + url = ''https://github.com/sharplispers/clx''; + sha256 = "ada6cf450c22d1ed297e5575f832bee8e4b61d602ffa9a145ae2fab7cd80f3b6"; + rev = ''0a3bea0fab66058e9394973e23954c43083d96e2''; name = "clx-git-checkout-${version}"; }; }; From 0cc2f6ec40108b3aaafee51ea83c39be4987845e Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 17 Jan 2015 23:57:49 +0100 Subject: [PATCH 129/185] batman-adv: Update to 2014.4.0 --- pkgs/os-specific/linux/batman-adv/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/batman-adv/default.nix b/pkgs/os-specific/linux/batman-adv/default.nix index 8407f270f48..341b6f3af1d 100644 --- a/pkgs/os-specific/linux/batman-adv/default.nix +++ b/pkgs/os-specific/linux/batman-adv/default.nix @@ -2,14 +2,14 @@ assert stdenv.lib.versionOlder kernel.version "3.17"; -let base = "batman-adv-2014.3.0"; in +let base = "batman-adv-2014.4.0"; in stdenv.mkDerivation rec { name = "${base}-${kernel.version}"; src = fetchurl { url = "http://downloads.open-mesh.org/batman/releases/${base}/${base}.tar.gz"; - sha1 = "wh3if8v4wfwskvzwqsjsyr929krzfmsx"; + sha256 = "757b9ddd346680f6fd87dc28fde6da0ddc0423a65fbc88fdbaa7b247fed2c1a8"; }; preBuild = '' @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { homepage = http://www.open-mesh.org/projects/batman-adv/wiki/Wiki; description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2"; license = stdenv.lib.licenses.gpl2; - maintainers = with stdenv.lib.maintainers; [viric]; + maintainers = with stdenv.lib.maintainers; [ viric fpletz ]; platforms = with stdenv.lib.platforms; linux; }; } From 52c1be07b92971fb92c8ffd50b0147a9f93da080 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 17 Jan 2015 23:58:23 +0100 Subject: [PATCH 130/185] batctl: Update to 2014.4.0 --- pkgs/os-specific/linux/batman-adv/batctl.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/batman-adv/batctl.nix b/pkgs/os-specific/linux/batman-adv/batctl.nix index 6e57e7651c4..5ac3e6b4117 100644 --- a/pkgs/os-specific/linux/batman-adv/batctl.nix +++ b/pkgs/os-specific/linux/batman-adv/batctl.nix @@ -1,14 +1,14 @@ {stdenv, fetchurl}: let - ver = "2013.4.0"; + ver = "2014.4.0"; in stdenv.mkDerivation rec { name = "batctl-${ver}"; src = fetchurl { url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz"; - sha256 = "0k6b695h38m92a8wn5gvb3z746m3fm0ygv58yyn163adcsvf7sjd"; + sha256 = "4deae3b6664d0d13acf7a8ece74175a31a72fe58fb15cb9112a9a2014b32cb4c"; }; preBuild = '' From 9db669d66d8ec6292553ce71e9e133ebc815060a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 17 Jan 2015 23:58:43 +0100 Subject: [PATCH 131/185] alfred: Add new package --- pkgs/os-specific/linux/batman-adv/alfred.nix | 27 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/os-specific/linux/batman-adv/alfred.nix diff --git a/pkgs/os-specific/linux/batman-adv/alfred.nix b/pkgs/os-specific/linux/batman-adv/alfred.nix new file mode 100644 index 00000000000..2d9f5079586 --- /dev/null +++ b/pkgs/os-specific/linux/batman-adv/alfred.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, pkgconfig, gpsd }: + +let + ver = "2014.4.0"; +in +stdenv.mkDerivation rec { + name = "alfred-${ver}"; + + src = fetchurl { + url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz"; + sha256 = "99e6c64e7069b0b7cb861369d5c198bfc7d74d41509b8edd8a17ba78e7c8d034"; + }; + + buildInputs = [ pkgconfig gpsd ]; + + preBuild = '' + makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config" + ''; + + meta = { + homepage = http://www.open-mesh.org/projects/batman-adv/wiki/Wiki; + description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, information distribution tool"; + license = stdenv.lib.licenses.gpl2; + maintainers = with stdenv.lib.maintainers; [ fpletz ]; + platforms = with stdenv.lib.platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cbd81733ee4..9d406a4fe3b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8137,6 +8137,8 @@ let acpitool = callPackage ../os-specific/linux/acpitool { }; + alfred = callPackage ../os-specific/linux/batman-adv/alfred.nix { }; + alienfx = callPackage ../os-specific/linux/alienfx { }; alsaLib = callPackage ../os-specific/linux/alsa-lib { }; From 7abfc12a9ab9c8d83d2938baa995c062fff480d5 Mon Sep 17 00:00:00 2001 From: Richard Wallace Date: Sat, 17 Jan 2015 16:49:16 -0700 Subject: [PATCH 132/185] disable tests on http-media --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 4746060bfda..66921545b2d 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -132,6 +132,8 @@ self: super: { # https://github.com/haskell/bytestring/issues/41 bytestring_0_10_4_1 = dontCheck super.bytestring_0_10_4_1; + # https://github.com/zmthy/http-media/issues/6 + http-media = dontCheck super.http-media; } // { # Not on Hackage yet. From 5d853f7dca02d26de7a1acc49c437d4ba6b5add7 Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Sat, 17 Jan 2015 00:46:34 -0200 Subject: [PATCH 133/185] Adding some plugins to XFCE4 Here is a list: Battery (1.0.5) Clipman (1.2.6) Cpufreq (1.0.0) Cpugraph (1.0.5) Datetime (0.6.2) Dict (0.3.0) Embed (1.4.1) Eyes (4.4.3) Fsguard (1.0.1) Genmon (3.4.0) Netload (1.2.4) Notes (1.7.7) Systemload (1.1.2) Verve (1.0.0) Xkb (0.5.6) --- pkgs/desktops/xfce/default.nix | 25 +++++++++++++++---- .../panel-plugins/xfce4-battery-plugin.nix | 8 +++--- .../panel-plugins/xfce4-clipman-plugin.nix | 24 ++++++++++++++++++ .../panel-plugins/xfce4-cpufreq-plugin.nix | 4 ++- .../panel-plugins/xfce4-cpugraph-plugin.nix | 24 ++++++++++++++++++ .../panel-plugins/xfce4-datetime-plugin.nix | 8 +++--- .../xfce/panel-plugins/xfce4-dict-plugin.nix | 23 +++++++++++++++++ .../xfce/panel-plugins/xfce4-embed-plugin.nix | 23 +++++++++++++++++ .../xfce/panel-plugins/xfce4-eyes-plugin.nix | 23 +++++++++++++++++ .../panel-plugins/xfce4-fsguard-plugin.nix | 23 +++++++++++++++++ .../panel-plugins/xfce4-genmon-plugin.nix | 23 +++++++++++++++++ .../panel-plugins/xfce4-netload-plugin.nix | 24 ++++++++++++++++++ .../xfce/panel-plugins/xfce4-notes-plugin.nix | 23 +++++++++++++++++ .../panel-plugins/xfce4-systemload-plugin.nix | 8 +++--- .../xfce/panel-plugins/xfce4-verve-plugin.nix | 24 ++++++++++++++++++ .../xfce/panel-plugins/xfce4-xkb-plugin.nix | 4 ++- 16 files changed, 275 insertions(+), 16 deletions(-) create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-dict-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-netload-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix index 3844633839e..d769072acb7 100644 --- a/pkgs/desktops/xfce/default.nix +++ b/pkgs/desktops/xfce/default.nix @@ -60,13 +60,28 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od xfce4icontheme = callPackage ./art/xfce4-icon-theme.nix { }; - #### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2" + #### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.{bz2,gz}" + - xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { }; - xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { }; - xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { }; - xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { }; xfce4_battery_plugin = callPackage ./panel-plugins/xfce4-battery-plugin.nix { }; + xfce4_clipman_plugin = callPackage ./panel-plugins/xfce4-clipman-plugin.nix { }; + xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { }; + xfce4_cpugraph_plugin = callPackage ./panel-plugins/xfce4-cpugraph-plugin.nix { }; + xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { }; + xfce4_dict_plugin = callPackage ./panel-plugins/xfce4-dict-plugin.nix { }; + xfce4_embed_plugin = callPackage ./panel-plugins/xfce4-embed-plugin.nix { }; + xfce4_eyes_plugin = callPackage ./panel-plugins/xfce4-eyes-plugin.nix { }; + xfce4_fsguard_plugin = callPackage ./panel-plugins/xfce4-fsguard-plugin.nix { }; + xfce4_genmon_plugin = callPackage ./panel-plugins/xfce4-genmon-plugin.nix { }; + + xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { }; + xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { }; + xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { }; + xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { }; + xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { }; + + + }; # xfce_self diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix index dd93c851c7b..3438791cd78 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix @@ -1,13 +1,14 @@ { stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: +with stdenv.lib; stdenv.mkDerivation rec { p_name = "xfce4-battery-plugin"; ver_maj = "1.0"; - ver_min = "0"; + ver_min = "5"; src = fetchurl { url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; - sha256 = "07qji9gh7ail06kwf1lniph5fdccvrsjwsxwnlbw0cmrws0bb2y2"; + sha256 = "04gbplcj8z4vg5xbks8cc2jjf62mmf9sdymg90scjwmb82pv2ngn"; }; name = "${p_name}-${ver_maj}.${ver_min}"; @@ -17,6 +18,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; description = "Battery plugin for Xfce panel"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; }; } diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin.nix new file mode 100644 index 00000000000..4e173370428 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, intltool, glib, exo, libXtst, xproto, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-clipman-plugin"; + ver_maj = "1.2"; + ver_min = "6"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "19a8gwcqc0r5qqi8w28dc8arqip34m8yxdb87lgps9g5qfcky113"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool glib exo libXtst xproto libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Clipboard manager for Xfce panel"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix index 18d043c51fd..f2a8ef4d9ea 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: +with stdenv.lib; stdenv.mkDerivation rec { p_name = "xfce4-cpufreq-plugin"; ver_maj = "1.0"; @@ -17,6 +18,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; description = "CPU Freq load plugin for Xfce panel"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; }; } diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin.nix new file mode 100644 index 00000000000..ad9c45820af --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, intltool, glib, exo, libXtst, xproto, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-cpugraph-plugin"; + ver_maj = "1.0"; + ver_min = "5"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "1izl53q95m5xm2fiq7385vb1i9nwgjizxkmgpgh33zdckb40xnl5"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool glib exo libXtst xproto libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "CPU graph show for Xfce panel"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix index 267a8b77ff1..4ca19d73449 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix @@ -1,16 +1,17 @@ { stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfcegui4, xfce4panel , gtk }: +with stdenv.lib; stdenv.mkDerivation rec { p_name = "xfce4-datetime-plugin"; ver_maj = "0.6"; - ver_min = "1"; + ver_min = "2"; name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; - sha256 = "06xvh22y5y0bcy7zb9ylvjpcl09wdyb751r7gwyg7m3h44f0qd7v"; + sha256 = "0b4yril07qgkmywjym1qp12r4g35bnh96879zbjps7cd3rkxld4p"; }; buildInputs = [ pkgconfig intltool libxfce4util libxfcegui4 xfce4panel gtk ]; @@ -18,6 +19,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; description = "Shows the date and time in the panel, and a calendar appears when you left-click on it"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; }; } diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-dict-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-dict-plugin.nix new file mode 100644 index 00000000000..ede0495b8de --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-dict-plugin.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-dict-plugin"; + ver_maj = "0.3"; + ver_min = "0"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.gz"; + sha256 = "1x0imfnsdfq7fbhka8bc0yjjspkcljc1jafhrwzb08qi9bk2wbar"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Dictionary plugin for Xfce panel"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix new file mode 100644 index 00000000000..0acf503abe7 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-embed-plugin"; + ver_maj = "1.4"; + ver_min = "1"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "0s0zlg7nvjaqvma4l8bhxk171yjrpncsz6v0ff1cxl3z6ya6hbxq"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Embed arbitrary app windows on Xfce panel"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin.nix new file mode 100644 index 00000000000..29b23767eb0 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-eyes-plugin"; + ver_maj = "4.4"; + ver_min = "3"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "0z4161i14m73i515ymhj34c1ycz5fmjmbczdd8plx3nvrxdk76jb"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Eyes following you!"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix new file mode 100644 index 00000000000..539f1332004 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-fsguard-plugin"; + ver_maj = "1.0"; + ver_min = "1"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "1dxa6gpw4a07ixccafd9fnk38r4fax4bhll73fchpv39jzh7xyzz"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Filesystem monitor"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin.nix new file mode 100644 index 00000000000..8b6552e4e6c --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-genmon-plugin"; + ver_maj = "3.4"; + ver_min = "0"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "11q3g6lmgz3d5lyh6614mxkd9cblfdyf9jgki7f26mn895xk79dh"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Cyclically spawns a command and captures its output"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-netload-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-netload-plugin.nix new file mode 100644 index 00000000000..710ca70b021 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-netload-plugin.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-netload-plugin"; + ver_maj = "1.2"; + ver_min = "4"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "1lrhhzxmybcfl52hnadr2dvasis9wmk6a48pcy02s09ch8cfkb7z"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Battery plugin for Xfce panel"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix new file mode 100644 index 00000000000..8e402edbeb6 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk, libunique }: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-notes-plugin"; + ver_maj = "1.7"; + ver_min = "7"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "05sjbwgch1j93m3r23ksbjnpfk11sf7xjmbb9pm5vl3snc2s3fm7"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk libunique ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Sticky notes plugin for Xfce panel"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix index dda5dc89def..200e3ccb071 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix @@ -1,13 +1,14 @@ { stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, gtk}: +with stdenv.lib; stdenv.mkDerivation rec { p_name = "xfce4-systemload-plugin"; ver_maj = "1.1"; - ver_min = "1"; + ver_min = "2"; src = fetchurl { url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; - sha256 = "1bnrr30h6kgb37ixcq7frx2gvj2p99bpa1jyzppwjxp5x7xkxh8s"; + sha256 = "0z4as6sxdz93d4jpgv0665dg4sykfvc5068mc689phlfl2rvcsdl"; }; name = "${p_name}-${ver_maj}.${ver_min}"; @@ -16,6 +17,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; description = "System load plugin for Xfce panel"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; }; } diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix new file mode 100644 index 00000000000..e73ad925630 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, intltool, glib, exo, pcre +, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-verve-plugin"; + ver_maj = "1.0"; + ver_min = "0"; + + src = fetchurl { + url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "18zi8lam82xwjm5zdnilg3ffxpp5z8vjad3kjvdsyxdhsdza84fh"; + }; + name = "${p_name}-${ver_maj}.${ver_min}"; + + buildInputs = [ pkgconfig intltool glib exo pcre libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "A command-line plugin"; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix index 37962a20562..b9bd520f001 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix @@ -2,6 +2,7 @@ , gtk, libxklavier, librsvg, libwnck }: +with stdenv.lib; stdenv.mkDerivation rec { p_name = "xfce4-xkb-plugin"; ver_maj = "0.5"; @@ -20,6 +21,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; description = "Allows you to setup and use multiple keyboard layouts"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; }; } From 2a338357f312fbf3df77b3bade7d229cc5eacccd Mon Sep 17 00:00:00 2001 From: Eduard Bachmakov Date: Sat, 17 Jan 2015 21:00:41 -0500 Subject: [PATCH 134/185] pshs: 0.2.5 -> 0.2.6 --- pkgs/servers/http/pshs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/pshs/default.nix b/pkgs/servers/http/pshs/default.nix index 2977aa819fd..141f58417fb 100644 --- a/pkgs/servers/http/pshs/default.nix +++ b/pkgs/servers/http/pshs/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, pkgconfig, libevent, file, qrencode }: let - version = "0.2.5"; + version = "0.2.6"; in stdenv.mkDerivation { name = "pshs-${version}"; src = fetchurl { url = "https://www.bitbucket.org/mgorny/pshs/downloads/pshs-${version}.tar.bz2"; - sha256 = "1lbybww9b74a9ssrii15w6qby0d66j367kara7kmfhakpv8jsvyh"; + sha256 = "0n8l5sjnwjqjmw0jzg3hb93n6npg2wahmdg1zrpsw8fyh9ggjg4g"; }; buildInputs = [ pkgconfig libevent file qrencode ]; From 5c496422e633d99b04c8546073a8c8b02f8dd68b Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sun, 18 Jan 2015 07:12:58 +0200 Subject: [PATCH 135/185] kde4: fix silent missing kde-workspace dependencies needed for kfontinst and kfontview --- pkgs/desktops/kde-4.14/kde-workspace.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-4.14/kde-workspace.nix b/pkgs/desktops/kde-4.14/kde-workspace.nix index 4231a1d7c0b..c3af4f71442 100644 --- a/pkgs/desktops/kde-4.14/kde-workspace.nix +++ b/pkgs/desktops/kde-4.14/kde-workspace.nix @@ -6,11 +6,12 @@ kde { #todo: wayland, xmms, libusb isn't found +#note: xorg.libXft is needed to build kfontview and kfontinst though this isn't reflected in the build log buildInputs = [ kdelibs qimageblitz libdbusmenu_qt xorg.libxcb xorg.xcbutilimage libjpeg xorg.xcbutilrenderutil xorg.xcbutilkeysyms xorg.libpthreadstubs xorg.libXdmcp xorg.libxkbfile xorg.libXcomposite xorg.libXtst - xorg.libXdamage + xorg.libXdamage xorg.libXft python boost qjson lm_sensors gpsd libraw1394 pciutils udev akonadi pam libusb1 libqalculate kdepimlibs prison From e92c942d1ddb72ed84f3921e1bb282992c057a96 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sun, 18 Jan 2015 08:08:00 +0200 Subject: [PATCH 136/185] KDE4: correctly propagate user env packages --- pkgs/desktops/kde-4.14/kdepim.nix | 2 +- pkgs/desktops/kde-4.14/kdeutils/print-manager.nix | 12 +++--------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/desktops/kde-4.14/kdepim.nix b/pkgs/desktops/kde-4.14/kdepim.nix index 9f266e596a6..df41c85c8ac 100644 --- a/pkgs/desktops/kde-4.14/kdepim.nix +++ b/pkgs/desktops/kde-4.14/kdepim.nix @@ -15,7 +15,7 @@ kde { nativeBuildInputs = [ pkgconfig ]; - passthru.propagatedUserEnvPackages = [ akonadi kdepimlibs kdepim_runtime ]; + propagatedUserEnvPkgs = [ akonadi kdepimlibs kdepim_runtime ]; meta = { description = "KDE PIM tools"; diff --git a/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix b/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix index ae72becd1e4..e786c8f7041 100644 --- a/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix +++ b/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix @@ -9,16 +9,10 @@ kde rec { pythonPath = [ cups pyqt4 pykde4 pycups s_c_p ]; - passthru.propagatedUserEnvPackages = [ s_c_p ]; + # system-config-printer supplies some D-Bus policy that we need. + propagatedUserEnvPkgs = [ s_c_p ]; - postInstall = - '' - wrapPythonPrograms - - # "system-config-printer" supplies some D-Bus policy that we need. - mkdir -p $out/nix-support - echo ${s_c_p} > $out/nix-support/propagated-user-env-packages - ''; + postInstall = "wrapPythonPrograms"; meta = { description = "KDE printer manager"; From 35cce01afaa50534895c6b3016bf7266d77b0bc8 Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 18 Jan 2015 11:17:49 +0100 Subject: [PATCH 137/185] Update to 1.29.3. --- pkgs/development/compilers/emscripten-fastcomp/default.nix | 6 +++--- pkgs/development/compilers/emscripten/default.nix | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/emscripten-fastcomp/default.nix b/pkgs/development/compilers/emscripten-fastcomp/default.nix index a8180947f4a..36c05195e37 100644 --- a/pkgs/development/compilers/emscripten-fastcomp/default.nix +++ b/pkgs/development/compilers/emscripten-fastcomp/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchgit, python }: let - tag = "1.21.0"; + tag = "1.29.3"; in stdenv.mkDerivation rec { @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { srcFC = fetchgit { url = git://github.com/kripken/emscripten-fastcomp; rev = "refs/tags/${tag}"; - sha256 = "0mcxzg2cfg0s1vfm3bh1ar4xsddb6xkv1dsdbgnpx38lbj1mvfs1"; + sha256 = "ab44554dc43eee5552ea04c134a5aaff2cd32f6f6528f58a24025bcd8fd1d46e"; }; srcFL = fetchgit { url = git://github.com/kripken/emscripten-fastcomp-clang; rev = "refs/tags/${tag}"; - sha256 = "0s2jcn36d236cfpryjpgaazjp3cg83d0h78g6kk1j6vdppv3vgnp"; + sha256 = "cc6dd704f5eba64fda931833479003bf3c8d9cf781bbaac3aa22a7b2644ccb26"; }; buildInputs = [ python ]; diff --git a/pkgs/development/compilers/emscripten/default.nix b/pkgs/development/compilers/emscripten/default.nix index 43f256b58b0..cc7982345d4 100644 --- a/pkgs/development/compilers/emscripten/default.nix +++ b/pkgs/development/compilers/emscripten/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchgit, emscriptenfastcomp, python, nodejs, closurecompiler, jre }: let - tag = "1.21.0"; + tag = "1.29.3"; in stdenv.mkDerivation rec { @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/kripken/emscripten; rev = "refs/tags/${tag}"; - sha256 = "0y17ab4nhd3521b50sv2i2667w0rlcnmlkpkgw5j3fsh8awxgf32"; + sha256 = "7f65d1d5cc1c1866554cd79ff83f87fc72a7df59cf1dfd6481e3f0aed5c7dc1f"; }; buildCommand = '' From de9f27b07d107b912da9399308902003f23f792d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 18 Jan 2015 11:43:11 +0100 Subject: [PATCH 138/185] remove biolib --- .../science/biology/biolib/default.nix | 25 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 27 deletions(-) delete mode 100644 pkgs/development/libraries/science/biology/biolib/default.nix diff --git a/pkgs/development/libraries/science/biology/biolib/default.nix b/pkgs/development/libraries/science/biology/biolib/default.nix deleted file mode 100644 index 7418bdb6dfe..00000000000 --- a/pkgs/development/libraries/science/biology/biolib/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ stdenv, fetchurl, cmake, R, zlib }: - -stdenv.mkDerivation rec { - name = "biolib-${version}"; - - version = "0.0.1"; - - src = fetchurl { - url = "http://bio3.xparrot.eu/download/nix-biology/biolib-${version}.tar.gz"; - sha256 = "1la639rs0v4f3ayvarqv0yxwlnwn188bb1v71d2ybw1xr6gdy688"; - }; - - buildInputs = [cmake R zlib]; - - meta = { - homepage = "http://biolib.open-bio.org/"; - description = "Shared libraries for the major Bio* languages"; - license = stdenv.lib.licenses.gpl2; - longDescription = '' - BioLib brings together a set of opensource libraries written - in C/C++ and makes them available for major Bio* languages: - BioPerl, BioRuby, BioPython - ''; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8ea2ce00e6f..8688c8679df 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12366,8 +12366,6 @@ let archimedes = callPackage ../applications/science/electronics/archimedes { }; - biolib = callPackage ../development/libraries/science/biology/biolib { }; - emboss = callPackage ../applications/science/biology/emboss { }; mrbayes = callPackage ../applications/science/biology/mrbayes { }; From 0d13ea0131cf43e7adccc437df4be8fa75ed9d3e Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 18 Jan 2015 12:20:44 +0100 Subject: [PATCH 139/185] Change default syncserver listen.port to a safer one. --- nixos/modules/services/networking/firefox/sync-server.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix index b357eac98b9..58b07e51387 100644 --- a/nixos/modules/services/networking/firefox/sync-server.nix +++ b/nixos/modules/services/networking/firefox/sync-server.nix @@ -50,7 +50,8 @@ in listen.address = mkOption { type = types.str; - default = "0.0.0.0"; + default = "127.0.0.1"; + example = "0.0.0.0"; description = '' Address on which the sync server listen to. ''; From 8196727fad8a7eabf26313bd3175c1ee9e8cca43 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 18 Jan 2015 12:21:23 +0100 Subject: [PATCH 140/185] Improve the documentation of the syncserver module. --- .../networking/firefox/sync-server.nix | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix index 58b07e51387..6ed7a6beb9e 100644 --- a/nixos/modules/services/networking/firefox/sync-server.nix +++ b/nixos/modules/services/networking/firefox/sync-server.nix @@ -41,7 +41,8 @@ in replicate the following change - services.sync.tokenServerURI: http://localhost:5000/token/1.0/sync/1.5 + services.sync.tokenServerURI: http://localhost:5000/token/1.0/sync/1.5 + where corresponds to the public url of the server. @@ -95,7 +96,10 @@ in , , , etc., and the name of a DBAPI, such as , , , - etc. + etc. The + SQLAlchemy documentation provides more examples and describe the syntax of + the expected URL. ''; }; @@ -103,12 +107,14 @@ in type = types.str; default = "/etc/firefox/syncserver-secret.ini"; description = '' - If defined, this file would be used to set all fields which were omitted in the - generated ini files used for configuring the syncserver. This file is useful - for storing secrets, such as the syncserver.secret or the syncserver.sqluri. + The private config file is used to extend the generated config with confidential + information, such as the setting if it contains a + password, and the setting is used by the server to + generate cryptographically-signed authentication tokens. - If this file does not exists, it would be created with a unique secret. - ''; + If this file does not exists, then it is created with a generated + settings. + ''; }; }; }; From 8c833f2a12573842bed962c9a839d9dee06b8cb6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 18 Jan 2015 10:18:40 +0100 Subject: [PATCH 141/185] hackage-packages.nix: re-generate from Hackage 2015-01-18T10:18:52+0100 --- .../haskell-modules/configuration-common.nix | 3 - .../haskell-modules/hackage-packages.nix | 267 +++++++++++++----- 2 files changed, 195 insertions(+), 75 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 4746060bfda..ea4bcd99939 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -117,9 +117,6 @@ self: super: { # https://github.com/haskell/vector/issues/47 vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector; - # https://github.com/haskell/pretty/issues/17 - pretty_1_1_2_0 = dontCheck super.pretty_1_1_2_0; - # Does not compile: . base_4_7_0_2 = markBroken super.base_4_7_0_2; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 7c4d41bb21e..612dd54d469 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2145,13 +2145,12 @@ self: { }: mkDerivation { pname = "Chart"; - version = "1.3.2"; - sha256 = "0y4xkqdmbyyaxf810dgz0zsfmywlx07c26s9wkk155iriz0yz4m9"; + version = "1.3.3"; + sha256 = "1shq0320mc47kjbfw3vqrmjshb8fd3afd009kqxd8nn9g7m48019"; buildDepends = [ array base colour data-default-class lens mtl old-locale operational time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; @@ -2163,13 +2162,12 @@ self: { }: mkDerivation { pname = "Chart-cairo"; - version = "1.3.2"; - sha256 = "19ghd5xav7pn3z5igbkbsa81vhlpvy55xscc42vbxx1v9f6shq7g"; + version = "1.3.3"; + sha256 = "1x1bs5xlzw91qx2rgfak1i5q15l6hij6hhir6qw7bgl57n1046ah"; buildDepends = [ array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; @@ -2183,14 +2181,13 @@ self: { }: mkDerivation { pname = "Chart-diagrams"; - version = "1.3.2"; - sha256 = "0q5qvzzl5wirlj26a6zpnyq95lpzzkwiqq0mkh25aa3qzzbg4y6g"; + version = "1.3.3"; + sha256 = "1bvlfy2gmv0w99jr32srdvrh7g0fzgvwhmzw8sf2iii12a7xwf56"; buildDepends = [ base blaze-svg bytestring Chart colour containers data-default-class diagrams-core diagrams-lib diagrams-postscript diagrams-svg lens mtl old-locale operational SVGFonts text time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; @@ -2202,8 +2199,8 @@ self: { }: mkDerivation { pname = "Chart-gtk"; - version = "1.3.2"; - sha256 = "175bqh5pl4z0gx50z34afg149g94qw8sk87gbp9mavh5bnpj5a07"; + version = "1.3.3"; + sha256 = "0b8c7f2mha45iaw8vpzvhyxsqg3lrfm2cn89an27vsw9k72qric2"; buildDepends = [ array base cairo Chart Chart-cairo colour data-default-class gtk mtl old-locale time @@ -2220,8 +2217,8 @@ self: { }: mkDerivation { pname = "Chart-simple"; - version = "1.3.2"; - sha256 = "0bbf63q2zzjmz0aa1lg70jqb7rhv78d4xkqklgzci8c8w7ki1s3q"; + version = "1.3.3"; + sha256 = "0kk81jz4lciga8qc78gm9khw02n84snyclzf5lcmlz9rs50z3v5r"; buildDepends = [ array base cairo Chart Chart-cairo Chart-gtk colour data-default-class gtk mtl old-locale time @@ -27030,14 +27027,22 @@ self: { }) {}; "cartel" = callPackage - ({ mkDerivation, base, directory, filepath, time }: + ({ mkDerivation, base, directory, filepath, multiarg, QuickCheck + , quickpull, random, time, transformers + }: mkDerivation { pname = "cartel"; - version = "0.10.0.2"; - sha256 = "1ry7hcy8j00bdakvjwa0s0kaa5n68k2pp82099q6s73085n2gz9b"; - buildDepends = [ base directory filepath time ]; + version = "0.12.0.2"; + sha256 = "0mhiwz68f0rp1261lp4zwdzj8142wvaw62jqdymsad6731xp3cs8"; + isLibrary = true; + isExecutable = true; + buildDepends = [ base directory filepath time transformers ]; + testDepends = [ + base directory filepath multiarg QuickCheck quickpull random time + transformers + ]; homepage = "http://www.github.com/massysett/cartel"; - description = "Specify your Cabal files in Haskell"; + description = "Specify Cabal files in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -27481,14 +27486,14 @@ self: { }: mkDerivation { pname = "cayley-client"; - version = "0.1.0.1"; - sha256 = "0mipvxhnxfphk02d2324qiycv99d9a007c2h32lq6ncnl87xb1kc"; + version = "0.1.1.0"; + sha256 = "0avwd6mgn3g1avrwb85v4vp598x00v4566iqsxgp857cbrrh5096"; buildDepends = [ aeson attoparsec base bytestring exceptions http-client http-conduit lens lens-aeson mtl text transformers unordered-containers vector ]; - homepage = "http://mb.cybervisible.fr/cayley-client-for-haskell"; + homepage = "https://github.com/MichelBoucey/cayley-client"; description = "An Haskell client for Cayley graph database"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -32509,9 +32514,8 @@ self: { }: mkDerivation { pname = "cpphs"; - version = "1.18.6"; - sha256 = "0ds712zabigswf3cljzh7f2ys4rl1fj2cf76lbw856adm8514gxc"; - editedCabalFile = "4ae34ae875a14ddc717ecfc9afb2695b2c5052a7ac470fb562d0ba5eed7dc310"; + version = "1.18.7"; + sha256 = "0w82v737w887krqlf61wjwa63fmdrjp1giiig8nvgga608qy03w5"; isLibrary = true; isExecutable = true; buildDepends = [ base directory old-locale old-time polyparse ]; @@ -33139,8 +33143,8 @@ self: { }: mkDerivation { pname = "cron"; - version = "0.2.4"; - sha256 = "0cf2dp57gg0vssy4pk5skzx7nkl9ksfmksxlipjikf6ijgp7v187"; + version = "0.2.5"; + sha256 = "0337dq2fqjikdn2fayad66rq8xyh2y6ywn18fn5q5vvrhmvmyrja"; buildDepends = [ attoparsec base mtl old-locale text time ]; testDepends = [ attoparsec base derive hspec hspec-expectations QuickCheck text @@ -33952,10 +33956,11 @@ self: { ({ mkDerivation, base, c2hs, cuda }: mkDerivation { pname = "cufft"; - version = "0.1.1.0"; - sha256 = "0d13nf61698gzh0hcycx1z9bm2xpikkg27bjymsjhfwimvqn7z8h"; + version = "0.1.2.0"; + sha256 = "09d62g5nwl8bj80h8pz5k9bjcp59xcbsa5pmbygqybhcfhng25kg"; buildDepends = [ base cuda ]; buildTools = [ c2hs ]; + jailbreak = true; homepage = "http://github.com/robeverest/cufft"; description = "Haskell bindings for the CUFFT library"; license = stdenv.lib.licenses.bsd3; @@ -36951,6 +36956,25 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "descriptive" = callPackage + ({ mkDerivation, aeson, base, bifunctors, containers, hspec, HUnit + , mtl, text, transformers + }: + mkDerivation { + pname = "descriptive"; + version = "0.1.1"; + sha256 = "1rly83jadbs1kqq0ax1kjhxwazpk8s2k6xyhdh88w733rdl1qz8q"; + buildDepends = [ + aeson base bifunctors containers mtl text transformers + ]; + testDepends = [ + aeson base bifunctors containers hspec HUnit mtl text transformers + ]; + homepage = "https://github.com/chrisdone/descriptive"; + description = "Self-describing consumers/parsers; forms, cmd-line args, JSON, etc"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "despair" = callPackage ({ mkDerivation, base, random }: mkDerivation { @@ -57159,8 +57183,8 @@ self: { }: mkDerivation { pname = "hdocs"; - version = "0.4.1.1"; - sha256 = "0hcpdak53f3na7d296zgqqcij5kma9j0vm56gxq663jn2njd9lvw"; + version = "0.4.1.2"; + sha256 = "1dg4cnj3cnv2f12ibvfg451rhsgawhsj0brjmaxm73bfvbxl25vi"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -58517,8 +58541,8 @@ self: { }: mkDerivation { pname = "hi"; - version = "1.1.0.2"; - sha256 = "19vrjj31sjwimzjgp7b3y70qb0l4bbjdhbvfs3qwf1za9lnjhqk4"; + version = "1.1.0.3"; + sha256 = "1w9samqkgz47shr73rlscypawr1g3lnlwq2hg59iagfklw4hd5gz"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -58845,22 +58869,24 @@ self: { }) {}; "hindent" = callPackage - ({ mkDerivation, base, data-default, directory, haskell-src-exts - , hspec, monad-loops, mtl, text + ({ mkDerivation, base, data-default, descriptive, directory + , haskell-src-exts, hspec, monad-loops, mtl, text }: mkDerivation { pname = "hindent"; - version = "4.1.1"; - sha256 = "042pyz3xq6xggrap276i47j2h3h5imjv9zklifgr14xj2205v2az"; + version = "4.2.1"; + sha256 = "1ycdssi0g52n1vdm9jhz2hfwjg24zk41g6aif173n3qr4bbn4xm2"; isLibrary = true; isExecutable = true; buildDepends = [ - base data-default directory haskell-src-exts monad-loops mtl text + base data-default descriptive directory haskell-src-exts + monad-loops mtl text ]; testDepends = [ base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -67706,6 +67732,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "imports" = callPackage + ({ mkDerivation, base, directory, filepath, mtl }: + mkDerivation { + pname = "imports"; + version = "0.1.2.0"; + sha256 = "1iv4vcp5amf49i1bj9cbarb5xgbxm7wym54wgaa9kvl3391dmy3q"; + buildDepends = [ base directory filepath mtl ]; + testDepends = [ base directory filepath mtl ]; + jailbreak = true; + homepage = "https://github.com/CindyLinz/Haskell-imports"; + description = "Generate code for importing directories automatically"; + license = stdenv.lib.licenses.mit; + }) {}; + "improve" = callPackage ({ mkDerivation, base, mtl, yices }: mkDerivation { @@ -68290,6 +68330,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) { intel_aes = null;}; + "interchangeable" = callPackage + ({ mkDerivation, base, containers }: + mkDerivation { + pname = "interchangeable"; + version = "0.0.1.0"; + sha256 = "0j7jk7qnc74pl6fhwxy71v9i34s5ycgqxj2v9y9xig2i1n91isl7"; + buildDepends = [ base containers ]; + jailbreak = true; + homepage = "https://github.com/arowM/interchangeable"; + description = "A type class for interchangeable data"; + license = stdenv.lib.licenses.mit; + }) {}; + "interleavableGen" = callPackage ({ mkDerivation, base, directory, haskell-src, hint, mtl }: mkDerivation { @@ -70867,6 +70920,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "kafka-client" = callPackage + ({ mkDerivation, base, bytestring, cereal, digest, dlist, hspec + , hspec-discover, network, QuickCheck, snappy, time, zlib + }: + mkDerivation { + pname = "kafka-client"; + version = "0.7.0.0"; + sha256 = "1qaz47qqrbg1k4jjvq30qy3j57vsa0pqz91dcgx67pvqqw13n7r2"; + buildDepends = [ + base bytestring cereal digest dlist network snappy time zlib + ]; + testDepends = [ + base bytestring cereal hspec hspec-discover QuickCheck time + ]; + homepage = "https://github.com/abhinav/haskell-kafka-client"; + description = "Low-level Haskell client library for Apache Kafka 0.7."; + license = stdenv.lib.licenses.mit; + }) {}; + "kan-extensions" = callPackage ({ mkDerivation, adjunctions, array, base, comonad, containers , contravariant, distributive, free, mtl, semigroupoids, tagged @@ -73567,8 +73639,8 @@ self: { }: mkDerivation { pname = "leveldb-haskell"; - version = "0.6"; - sha256 = "1r76dvn8scnjfdw1i5cj3s5s1nqf2yib4jdydjnr8p6c8yvpp3z5"; + version = "0.6.1"; + sha256 = "1pc6fzjac4dxk0rspvb4ifiinx4da1ms37mwm6vc05140r0hqvbw"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -90364,6 +90436,48 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "postgrest" = callPackage + ({ mkDerivation, aeson, base, base64-string, bcrypt, blaze-builder + , bytestring, case-insensitive, containers, convertible, hasql + , hasql-backend, hasql-postgres, hspec, hspec-wai, hspec-wai-json + , HTTP, http-media, http-types, mtl, network, network-uri + , optparse-applicative, parsec, process, QuickCheck, Ranged-sets + , regex-base, regex-tdfa, regex-tdfa-text, resource-pool + , scientific, split, string-conversions, stringsearch, text, time + , transformers, unordered-containers, vector, wai, wai-cors + , wai-extra, wai-middleware-static, warp + }: + mkDerivation { + pname = "postgrest"; + version = "0.2.5.0"; + sha256 = "1128s2yblmixqv3ywnzy3gsci9hncriyv21k09j1l81pjkk0cxgl"; + isLibrary = false; + isExecutable = true; + buildDepends = [ + aeson base base64-string bcrypt blaze-builder bytestring + case-insensitive containers convertible hasql hasql-backend + hasql-postgres HTTP http-types mtl network network-uri + optparse-applicative parsec Ranged-sets regex-base regex-tdfa + regex-tdfa-text resource-pool scientific split string-conversions + stringsearch text time transformers unordered-containers vector wai + wai-cors wai-extra wai-middleware-static warp + ]; + testDepends = [ + aeson base base64-string bcrypt blaze-builder bytestring + case-insensitive containers convertible hasql hasql-backend + hasql-postgres hspec hspec-wai hspec-wai-json HTTP http-media + http-types mtl network network-uri optparse-applicative parsec + process QuickCheck Ranged-sets regex-base regex-tdfa + regex-tdfa-text resource-pool scientific split string-conversions + stringsearch text time transformers unordered-containers vector wai + wai-cors wai-extra wai-middleware-static warp + ]; + jailbreak = true; + homepage = "https://github.com/begriffs/postgrest"; + description = "REST API for any Postgres database"; + license = stdenv.lib.licenses.mit; + }) {}; + "postie" = callPackage ({ mkDerivation, attoparsec, base, bytestring, cprng-aes , data-default-class, mtl, network, pipes, pipes-bytestring @@ -90783,13 +90897,13 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "pretty_1_1_2_0" = callPackage + "pretty_1_1_2_1" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, QuickCheck }: mkDerivation { pname = "pretty"; - version = "1.1.2.0"; - sha256 = "043kcl2wjip51al5kx3r9qgazq5w002q520wdgdlv2c9xr74fabw"; - editedCabalFile = "77efb70e2934af601f99aa28b6cf21b4b21e5d80c95f11e8bbfc361209a6094b"; + version = "1.1.2.1"; + sha256 = "128bgw9qgm256f28ffb49dvqs9js01m9q6mj6dhg4nlcbpz5fhav"; + editedCabalFile = "ebd25419c2eacdf4212ba30592975908255c84b928a228fe5b045bc4f32c102a"; buildDepends = [ base deepseq ghc-prim ]; testDepends = [ base deepseq ghc-prim QuickCheck ]; homepage = "http://github.com/haskell/pretty"; @@ -93099,24 +93213,23 @@ self: { }) {}; "quoridor-hs" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers + ({ mkDerivation, ansi-terminal, async, base, bytestring, containers , directory, dlist, exceptions, filepath, hex, HUnit, mtl, network - , network-simple, parsec, process, snap-core, snap-server + , network-simple, parsec, process, snap-core, snap-server, stm , websockets, websockets-snap }: mkDerivation { pname = "quoridor-hs"; - version = "0.1.0.0"; - sha256 = "0l08hz6835az1wcl1xyf7vgmgigpjlg7fi9v2a5f9wa3wkl3nvqa"; + version = "0.1.1.0"; + sha256 = "1hmxkzrl74vcxam6kpin2fgxd4rx408fy42yzdkbl87l4bklp0gd"; isLibrary = true; isExecutable = true; buildDepends = [ - ansi-terminal base bytestring containers directory dlist exceptions - filepath hex mtl network network-simple parsec process snap-core - snap-server websockets websockets-snap + ansi-terminal async base bytestring containers directory dlist + exceptions filepath hex mtl network network-simple parsec process + snap-core snap-server stm websockets websockets-snap ]; testDepends = [ base HUnit mtl ]; - jailbreak = true; homepage = "https://github.com/talw/quoridor-hs"; description = "A Quoridor implementation in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -93241,10 +93354,10 @@ self: { ({ mkDerivation, base, terminfo, text }: mkDerivation { pname = "rainbow"; - version = "0.20.0.4"; - sha256 = "0myipv34pfyi71h1ni9hdi1662whjnl83g9jpag77a00sk0p3rkm"; + version = "0.20.0.6"; + sha256 = "0y9mzfh9j7603wlgls664xlm5dj8ywbff7a1lmvi8awyz9yn80yz"; buildDepends = [ base terminfo text ]; - homepage = "http://www.github.com/massysett/rainbow"; + homepage = "https://www.github.com/massysett/rainbow"; description = "Print text to terminal with colors and effects"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93258,6 +93371,7 @@ self: { version = "0.20.0.4"; sha256 = "0cjq2m2zpk4j2f7gw65yqqvyc4kng1rsnq48fs4xcs6bdzw0zhlg"; buildDepends = [ barecheck base QuickCheck rainbow terminfo text ]; + jailbreak = true; homepage = "http://www.github.com/massysett/rainbow"; description = "Tests and QuickCheck generators to accompany rainbow"; license = stdenv.lib.licenses.bsd3; @@ -95733,8 +95847,8 @@ self: { ({ mkDerivation, base, containers, haskeline, mtl }: mkDerivation { pname = "repline"; - version = "0.1.2.0"; - sha256 = "1d092sj75izr8kc1777sq53ldd4dy8nlx1d6b6c0sl8jgvyzb6lr"; + version = "0.1.3.0"; + sha256 = "0cdbsmcvgrizpkfkzalfzw2lxfh8hcm62h1h1gcly41y0acb5ka5"; buildDepends = [ base containers haskeline mtl ]; jailbreak = true; description = "Haskeline wrapper for GHCi-like REPL interfaces"; @@ -106623,22 +106737,19 @@ self: { }) {}; "strive" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, Glob - , gpolyline, hlint, http-conduit, http-types, markdown-unlit - , regex-compat, template-haskell, text, time, transformers + ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline + , hlint, http-conduit, http-types, markdown-unlit, template-haskell + , text, time, transformers }: mkDerivation { pname = "strive"; - version = "0.6.1"; - sha256 = "1cy555hhk5bdpk2hmkxx4pbi6m7vaadv4ksgfhcxbzyxmpi0wdwm"; + version = "0.6.2"; + sha256 = "1nlvzl58s2n50pqgvicmslfgv550sk1nk05hx7vllsa92acypz6h"; buildDepends = [ - aeson base bytestring data-default Glob gpolyline http-conduit - http-types regex-compat template-haskell text time transformers + aeson base bytestring data-default gpolyline http-conduit + http-types template-haskell text time transformers ]; - testDepends = [ - aeson base bytestring data-default hlint markdown-unlit time - ]; - jailbreak = true; + testDepends = [ base bytestring hlint markdown-unlit time ]; homepage = "http://taylor.fausak.me/strive/"; description = "A Haskell client for the Strava V3 API"; license = stdenv.lib.licenses.mit; @@ -106676,14 +106787,15 @@ self: { }) {}; "structured-haskell-mode" = callPackage - ({ mkDerivation, base, emacs, haskell-src-exts }: + ({ mkDerivation, base, descriptive, emacs, haskell-src-exts, text + }: mkDerivation { pname = "structured-haskell-mode"; - version = "1.0.4"; - sha256 = "1402wx27py7292ad7whsb13ywv71k36501jpfrn2p0v7knzknj8z"; + version = "1.0.8"; + sha256 = "00kr6wllr0rmjxiwdfbr98k8yj6jr9f3vbf9b2cx8ykgs35jayz9"; isLibrary = false; isExecutable = true; - buildDepends = [ base haskell-src-exts ]; + buildDepends = [ base descriptive haskell-src-exts text ]; buildTools = [ emacs ]; jailbreak = true; postInstall = '' @@ -108107,6 +108219,17 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "table-tennis" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "table-tennis"; + version = "0.1.0.3"; + sha256 = "1v5g4fbbspgm4smjxk499a0grh5xsr18688kmivql8knhxh1351k"; + buildDepends = [ base ]; + description = "A table tennis game tracking engine"; + license = stdenv.lib.licenses.mit; + }) {}; + "tableaux" = callPackage ({ mkDerivation, base, cgi, containers, html, mtl, parsec , QuickCheck @@ -119052,13 +119175,13 @@ self: { pname = "wedged"; version = "0"; sha256 = "1sdnqc40qg5pv0kj4qw33vk5cy3yym60csh3iwmpm7pzpray7511"; + editedCabalFile = "64bac15c983cf83ab2b05b002439b8f125b9c942ae46ed75a187f7e2dc68dba5"; isLibrary = false; isExecutable = true; buildDepends = [ array base colour containers diagrams-cairo diagrams-lib MonadRandom strict ]; - jailbreak = true; description = "Wedged postcard generator"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; From 380114738f534af52b06696e91a43885e719e299 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 18 Jan 2015 11:04:38 +0100 Subject: [PATCH 142/185] haskell-ng: rename "noHaddock" attribute to "doHaddock" This makes the attribute (a) consistent with "doCheck" and friends and (b) avoids the double negation "noHaddock = false" meaning "doHaddock = true". Fixes https://github.com/NixOS/cabal2nix/issues/63. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- pkgs/development/haskell-modules/default.nix | 4 ++-- pkgs/development/haskell-modules/generic-builder.nix | 4 ++-- pkgs/development/haskell-modules/lib.nix | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ea4bcd99939..c5d59e50afe 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -137,8 +137,8 @@ self: super: { version = "2.0"; src = pkgs.fetchgit { url = "http://github.com/NixOS/cabal2nix.git"; - sha256 = "c1927f7441a057f02d25cbca855f533fc8073e7680083caa86d48e3d69ab69fd"; - rev = "0c4c1f2529a7e4b83ec21922d77c792a9bd1d662"; + sha256 = "8e1943affa70bf664d6b306f6331bad9332ca74816078f298d4acff0921c8520"; + rev = "a5db30dbd55d7b4ec5df8fa116083b786bcf81c4"; }; isLibrary = false; isExecutable = true; diff --git a/pkgs/development/haskell-modules/default.nix b/pkgs/development/haskell-modules/default.nix index 8978486e930..973ff83c42d 100644 --- a/pkgs/development/haskell-modules/default.nix +++ b/pkgs/development/haskell-modules/default.nix @@ -21,7 +21,7 @@ let inherit (self) ghc jailbreak-cabal; hscolour = overrideCabal self.hscolour (drv: { isLibrary = false; - noHaddock = true; + doHaddock = false; hyperlinkSource = false; # Avoid depending on hscolour for this build. postFixup = "rm -rf $out/lib $out/share $out/nix-support"; }); @@ -29,7 +29,7 @@ let mkDerivation = drv: super.mkDerivation (drv // { enableSharedExecutables = false; enableSharedLibraries = false; - noHaddock = true; + doHaddock = false; useCpphs = false; }); })) (drv: { diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix index a4368838fe4..9fe6c1a78ba 100644 --- a/pkgs/development/haskell-modules/generic-builder.nix +++ b/pkgs/development/haskell-modules/generic-builder.nix @@ -27,7 +27,7 @@ , jailbreak ? false , license , maintainers ? [] -, noHaddock ? false +, doHaddock ? true , passthru ? {} , pkgconfigDepends ? [] , platforms ? ghc.meta.platforms @@ -214,7 +214,7 @@ stdenv.mkDerivation ({ haddockPhase = '' runHook preHaddock - ${optionalString (!noHaddock && hasActiveLibrary) '' + ${optionalString (doHaddock && hasActiveLibrary) '' ./Setup haddock --html \ ${optionalString doHoogle "--hoogle"} \ ${optionalString (hasActiveLibrary && hyperlinkSource) "--hyperlink-source"} diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix index 121508488e9..4d0afb33ca0 100644 --- a/pkgs/development/haskell-modules/lib.nix +++ b/pkgs/development/haskell-modules/lib.nix @@ -8,8 +8,8 @@ rec { overrideScope = scope: overrideCabal (drv.overrideScope scope) f; }; - doHaddock = drv: overrideCabal drv (drv: { noHaddock = false; }); - dontHaddock = drv: overrideCabal drv (drv: { noHaddock = true; }); + doHaddock = drv: overrideCabal drv (drv: { doHaddock = true; }); + dontHaddock = drv: overrideCabal drv (drv: { doHaddock = false; }); doJailbreak = drv: overrideCabal drv (drv: { jailbreak = true; }); dontJailbreak = drv: overrideCabal drv (drv: { jailbreak = false; }); From 35e5f59aeebb6636fdfa4f2d5e881d53d015360b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 18 Jan 2015 12:26:34 +0100 Subject: [PATCH 143/185] Cabal-1.22.0.0: fix build with GHC 7.2.2 --- pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index d35285dea40..c5ec38c5194 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -40,7 +40,7 @@ self: super: { transformers-compat = disableCabalFlag super.transformers-compat "three"; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_0_0 = super.Cabal_1_22_0_0.override { binary = self.binary_0_7_2_3; }; + Cabal_1_22_0_0 = super.Cabal_1_22_0_0.override { binary = self.binary_0_7_2_3; process = self.process_1_2_1_0; }; # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From b2be4092c632effc22b0484c839649454b07f0fa Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 21 Dec 2014 11:23:53 +0100 Subject: [PATCH 144/185] Add package 'pytrainer'. --- pkgs/applications/misc/pytrainer/default.nix | 48 +++++++++++++++++++ .../misc/pytrainer/pytrainer-webkit.patch | 14 ++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 64 insertions(+) create mode 100644 pkgs/applications/misc/pytrainer/default.nix create mode 100644 pkgs/applications/misc/pytrainer/pytrainer-webkit.patch diff --git a/pkgs/applications/misc/pytrainer/default.nix b/pkgs/applications/misc/pytrainer/default.nix new file mode 100644 index 00000000000..843d0ab93d8 --- /dev/null +++ b/pkgs/applications/misc/pytrainer/default.nix @@ -0,0 +1,48 @@ +{ stdenv, fetchurl, pythonPackages, sqlite, gpsbabel }: + +let + + # Pytrainer needs a matplotlib with GTK backend. Also ensure we are + # using the pygtk with glade support as needed by pytrainer. + matplotlibGtk = pythonPackages.matplotlib.override { + enableGtk2 = true; + pygtk = pythonPackages.pyGtkGlade; + }; + +in + +pythonPackages.buildPythonPackage rec { + name = "pytrainer-${version}"; + version = "1.10.0"; + + src = fetchurl { + url = "https://github.com/pytrainer/pytrainer/archive/v${version}.tar.gz"; + sha256 = "0l42p630qhymgrcvxgry8chrpzcp6nr3d1vd7vhifh2npfq9l09y"; + }; + + namePrefix = ""; + + # The existing use of pywebkitgtk shows raw HTML text instead of + # map. This patch solves the problems by showing the file from a + # string, which allows setting an explicit MIME type. + patches = [ ./pytrainer-webkit.patch ]; + + pythonPath = with pythonPackages; [ + dateutil lxml matplotlibGtk pyGtkGlade pywebkitgtk + sqlalchemy sqlalchemy_migrate + ]; + + buildInputs = [gpsbabel sqlite] ++ pythonPath; + + # This package contains no binaries to patch or strip. + dontPatchELF = true; + dontStrip = true; + + meta = with stdenv.lib; { + homepage = https://github.com/pytrainer/pytrainer/wiki; + description = "Application for logging and graphing sporting excursions"; + maintainers = [ maintainers.rycee ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch b/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch new file mode 100644 index 00000000000..0f894c46a53 --- /dev/null +++ b/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch @@ -0,0 +1,14 @@ +diff -Nurp pytrainer-1.10.0-orig/pytrainer/extensions/mapviewer.py pytrainer-1.10.0/pytrainer/extensions/mapviewer.py +--- pytrainer-1.10.0-orig/pytrainer/extensions/mapviewer.py 2013-03-31 12:28:29.000000000 +0200 ++++ pytrainer-1.10.0/pytrainer/extensions/mapviewer.py 2014-12-22 11:44:44.367032126 +0100 +@@ -46,7 +46,9 @@ class MapViewer: + logging.debug(">>") + if htmlfile is None: + htmlfile = self.createErrorHtml() +- self.wkview.load_uri("file://%s" % (htmlfile)) ++ content = open(htmlfile, 'r').read() ++ self.wkview.load_string(content, 'text/html', 'UTF-8', 'file:///') ++ #self.wkview.load_uri("file://%s" % (htmlfile)) + #self.box.show_all() + logging.debug("<<") + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8688c8679df..aba189fc859 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2268,6 +2268,8 @@ let inherit python libsexy pkgconfig libxml2 pygtk pango gtk glib; }; + pytrainer = callPackage ../applications/misc/pytrainer { }; + openmpi = callPackage ../development/libraries/openmpi { }; qastools = callPackage ../tools/audio/qastools { From 02458a939ac5cdf362a964656d2e5896f4693469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sun, 18 Jan 2015 14:13:53 +0100 Subject: [PATCH 145/185] taskwarrior: enable bash completion By adding the missing link between the (already installed) completion script and $out/etc/bash_completion.d/. --- pkgs/applications/misc/taskwarrior/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/misc/taskwarrior/default.nix b/pkgs/applications/misc/taskwarrior/default.nix index 51bb13eb55e..35bba7ee28c 100644 --- a/pkgs/applications/misc/taskwarrior/default.nix +++ b/pkgs/applications/misc/taskwarrior/default.nix @@ -13,6 +13,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake libuuid gnutls ]; + postInstall = '' + mkdir -p "$out/etc/bash_completion.d" + ln -s "../../share/doc/task/scripts/bash/task.sh" "$out/etc/bash_completion.d/" + ''; + meta = { description = "GTD (getting things done) implementation"; homepage = http://taskwarrior.org; From 412cb5a3a2415fa0343f5689c9f42a87548c7b35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sat, 3 Jan 2015 16:27:16 +0100 Subject: [PATCH 146/185] munin: remove /usr/{bin,sbin}/ references from plugins Instead, run things out of $PATH. Fixes errors like these (on NixOS): munin-available-plugins/.mysql_slowqueries-wrapped: line 67: /usr/bin/printf: No such file or directory (Basically, this unbreaks some plugins.) --- pkgs/servers/monitoring/munin/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/monitoring/munin/default.nix b/pkgs/servers/monitoring/munin/default.nix index 4d3065b6542..51eda757e3c 100644 --- a/pkgs/servers/monitoring/munin/default.nix +++ b/pkgs/servers/monitoring/munin/default.nix @@ -96,6 +96,9 @@ stdenv.mkDerivation rec { ''; postFixup = '' + echo "Removing references to /usr/{bin,sbin}/ from munin plugins..." + find "$out/lib/plugins" -type f -print0 | xargs -0 -L1 sed -i -e "s|/usr/bin/||g" -e "s|/usr/sbin/||g" + if test -e $out/nix-support/propagated-native-build-inputs; then ln -s $out/nix-support/propagated-native-build-inputs $out/nix-support/propagated-user-env-packages fi From 0e3007ec886948889bc634a88b3396b4ed01e7ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sun, 7 Dec 2014 15:01:47 +0100 Subject: [PATCH 147/185] ardour: report correct version number Even though we build from git tag 3.5.403, `ardour --version` reports 3.5-380-g2f6065b. Fix it. (Another way to fix this is to clone the whole git repo, preserve the .git/ directory and add git as buildInput so that Ardour can figure out all this version info stuff by itself.) --- pkgs/applications/audio/ardour/default.nix | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index 5180be3c940..3142b2c52fc 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -6,7 +6,21 @@ , perl, pkgconfig, python, serd, sord, sratom, suil }: let + + # Ardour git repo uses a mix of annotated and lightweight tags. Annotated + # tags are used for MAJOR.MINOR versioning, and lightweight tags are used + # in-between; MAJOR.MINOR.REV where REV is the number of commits since the + # last annotated tag. A slightly different version string format is needed + # for the 'revision' info that is built into the binary; it is the format of + # "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH. + + # Version to build. tag = "3.5.403"; + + # Version info that is built into the binary. Keep in sync with 'tag'. The + # last 8 digits is a (fake) commit id. + revision = "3.5-403-00000000"; + in stdenv.mkDerivation rec { @@ -15,7 +29,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://git.ardour.org/ardour/ardour.git; rev = "refs/tags/${tag}"; - sha256 = "7d7c8e2c7ccccca6c8324fd874509e1b0d89f3f42cb92982c50d212797463f4c"; + sha256 = "0k1z8sbjf88dqn12kf9cykrqj38vkr879n2g6b4adk6cghn8wz3x"; }; buildInputs = @@ -27,10 +41,7 @@ stdenv.mkDerivation rec { ]; patchPhase = '' - # The funny revision number is from `git describe rev` - printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${tag}-g2f6065b\"; }\n' > libs/ardour/revision.cc - # Note the different version number - sed -i '33i rev = \"3.5-380-g2f6065b\"' wscript + printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${revision}\"; }\n' > libs/ardour/revision.cc sed 's|/usr/include/libintl.h|${glibc}/include/libintl.h|' -i wscript sed -e 's|^#!/usr/bin/perl.*$|#!${perl}/bin/perl|g' -i tools/fmt-bindings sed -e 's|^#!/usr/bin/env.*$|#!${perl}/bin/perl|g' -i tools/*.pl From ad7ced806f7ac8d033d916568aacfb522ffa35db Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 16:01:28 +0300 Subject: [PATCH 148/185] Update vanity to add more special characters. --- maintainers/scripts/vanity-manual-equalities.txt | 1 + maintainers/scripts/vanity.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/maintainers/scripts/vanity-manual-equalities.txt b/maintainers/scripts/vanity-manual-equalities.txt index 9b31e9dc07c..4a7bc3aea44 100644 --- a/maintainers/scripts/vanity-manual-equalities.txt +++ b/maintainers/scripts/vanity-manual-equalities.txt @@ -4,3 +4,4 @@ Pjotr Prins pjotr.public05@thebird.nl Wouter den Breejen wbreejen MarcWeber marcweber Ricardo Correia Ricardo M. Correia +ertesx@gmx.de ertes diff --git a/maintainers/scripts/vanity.sh b/maintainers/scripts/vanity.sh index 6759df444ef..fd8f78ac5ef 100755 --- a/maintainers/scripts/vanity.sh +++ b/maintainers/scripts/vanity.sh @@ -47,11 +47,11 @@ fetchGithubName () { # For RDF normalize_name () { - sed -e 's/%/%25/g; s/ /%20/g; s/'\''/%27/g; s/"/%22/g; s/`/%60/g' + sed -e 's/%/%25/g; s/ /%20/g; s/'\''/%27/g; s/"/%22/g; s/`/%60/g; s/\^/%5e/g; ' } denormalize_name () { - sed -e 's/%20/ /g; s/%27/'\''/g; s/%22/"/g; s/%60/`/g; s/%25/%/g;'; + sed -e 's/%20/ /g; s/%27/'\''/g; s/%22/"/g; s/%60/`/g; s/%5e/^/g; s/%25/%/g;'; } n3="$(mktemp --suffix .n3)" From 5c9df933764ae90ef5c3ac48f2965c5cb8238948 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 18:17:39 +0300 Subject: [PATCH 149/185] Allegro 5 (stable): 5.0.10 -> 5.0.11 --- pkgs/development/libraries/allegro/5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/allegro/5.nix b/pkgs/development/libraries/allegro/5.nix index 5f67e959230..793b57c676b 100644 --- a/pkgs/development/libraries/allegro/5.nix +++ b/pkgs/development/libraries/allegro/5.nix @@ -15,7 +15,7 @@ let (builtins.attrNames (builtins.removeAttrs x helperArgNames)); sourceInfo = rec { baseName="allegro"; - version="5.0.10"; + version = "5.0.11"; name="${baseName}-${version}"; project="alleg"; url="mirror://sourceforge/project/${project}/${baseName}/${version}/${name}.tar.gz"; @@ -25,7 +25,7 @@ in rec { src = a.fetchurl { url = sourceInfo.url; - sha256 = sourceInfo.hash; + sha256 = "0cd51qrh97jrr0xdmnivqgwljpmizg8pixsgvc4blqqlaz4i9zj9"; }; inherit (sourceInfo) name version; From da8828f5cf8099755eb63fd90388df2cd9ffd965 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 18:18:34 +0300 Subject: [PATCH 150/185] Botan (unstable): 1.11.12 -> 1.11.13 --- pkgs/development/libraries/botan/unstable.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/botan/unstable.nix b/pkgs/development/libraries/botan/unstable.nix index 123b2d5852e..cc18b8c63ab 100644 --- a/pkgs/development/libraries/botan/unstable.nix +++ b/pkgs/development/libraries/botan/unstable.nix @@ -2,7 +2,7 @@ callPackage ./generic.nix (args // { baseVersion = "1.11"; - revision = "12"; - sha256 = "099hbimpqry96xzbv69x1wmqrybcnfn7yw8jj6ljvk6r8wk4qg85"; + revision = "13"; + sha256 = "1jg36k376w6d6g7hgs2d67sr84pail5qf6yy1s5ys7pc16k2dy41"; openssl = null; }) From 2bf8920ac032fca752cde78ef9211902cd224030 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 18:18:51 +0300 Subject: [PATCH 151/185] Sodium: 1.0.1 -> 1.0.2 --- pkgs/development/libraries/sodium/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/sodium/default.nix b/pkgs/development/libraries/sodium/default.nix index 207e3d023f9..7bdec155813 100644 --- a/pkgs/development/libraries/sodium/default.nix +++ b/pkgs/development/libraries/sodium/default.nix @@ -3,11 +3,11 @@ let s = # Generated upstream information rec { baseName="sodium"; - version="1.0.1"; + version="1.0.2"; name="${baseName}-${version}"; - hash="1x9src824c3ansgvnphhnnnnyrd0spspf7hwmxijv7pglj3hh2f3"; - url="http://download.dnscrypt.org/libsodium/releases/libsodium-1.0.1.tar.gz"; - sha256="1x9src824c3ansgvnphhnnnnyrd0spspf7hwmxijv7pglj3hh2f3"; + hash="06dabf77cz6qg7aqv5j5r4m32b5zn253pixwb3k5lm3z0h88y7cn"; + url="http://download.dnscrypt.org/libsodium/releases/libsodium-1.0.2.tar.gz"; + sha256="06dabf77cz6qg7aqv5j5r4m32b5zn253pixwb3k5lm3z0h88y7cn"; }; buildInputs = [ ]; From f5954364e704e40f4ea8da308cb5a13616295e6b Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 18:19:57 +0300 Subject: [PATCH 152/185] smbnetfs: 0.5.3b -> 0.6.0 --- pkgs/tools/filesystems/smbnetfs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/smbnetfs/default.nix b/pkgs/tools/filesystems/smbnetfs/default.nix index e9d9b27d751..5b5ca199613 100644 --- a/pkgs/tools/filesystems/smbnetfs/default.nix +++ b/pkgs/tools/filesystems/smbnetfs/default.nix @@ -1,5 +1,5 @@ x@{builderDefsPackage - , fuse, samba, pkgconfig + , fuse, samba, pkgconfig, glib , ...}: builderDefsPackage (a : @@ -12,7 +12,7 @@ let sourceInfo = rec { baseName="smbnetfs"; dirBaseName="SMBNetFS"; - version = "0.5.3b"; + version = "0.6.0"; name="${baseName}-${version}"; project="${baseName}"; url="mirror://sourceforge/project/${project}/${baseName}/${dirBaseName}-${version}/${name}.tar.bz2"; @@ -21,7 +21,7 @@ in rec { src = a.fetchurl { url = sourceInfo.url; - sha256 = "1j9b30kh4ymv4nr8c1qc7hfg6pscgyj75ib16pqa0zljjk1klx18"; + sha256 = "16sikr81ipn8v1a1zrqgnsy2as3zcaxbzkr0bm5vxy012bq0plkd"; }; inherit (sourceInfo) name version; From 58513cc380dd88de3ed8aea1323774696bbefeab Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 18 Jan 2015 18:19:49 +0100 Subject: [PATCH 153/185] abiword: update from 3.0.0 to 3.0.1 --- pkgs/applications/office/abiword/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/abiword/default.nix b/pkgs/applications/office/abiword/default.nix index 43b8f1f0115..2aaf1e8f032 100644 --- a/pkgs/applications/office/abiword/default.nix +++ b/pkgs/applications/office/abiword/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "abiword-${version}"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { url = "http://www.abisource.org/downloads/abiword/${version}/source/${name}.tar.gz"; - sha256 = "00dc3w48k2z3l1hh5b0jhzfrskqxic4lp6g7w19v6kpz02632zni"; + sha256 = "1ik591rx15nn3n1297cwykl8wvrlgj78i528id9wbidgy3xzd570"; }; enableParallelBuilding = true; From e0336a504ebb15177ea9ec5e82b683cbbf20e56f Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Sun, 11 Jan 2015 05:17:58 +0100 Subject: [PATCH 154/185] spl: Fix mtime going backwards in time Fixes #5652. --- pkgs/os-specific/linux/spl/default.nix | 2 +- pkgs/os-specific/linux/spl/time.patch | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 pkgs/os-specific/linux/spl/time.patch diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix index 0648be4e41a..8f4a7491427 100644 --- a/pkgs/os-specific/linux/spl/default.nix +++ b/pkgs/os-specific/linux/spl/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0id0m3sfpkz8w7b2pc51px8kvz8xnaf8msps57ddarxidmxvb45g"; }; - patches = [ ./install_prefix.patch ./const.patch ]; + patches = [ ./install_prefix.patch ./const.patch ./time.patch ]; buildInputs = [ perl autoconf automake libtool ]; diff --git a/pkgs/os-specific/linux/spl/time.patch b/pkgs/os-specific/linux/spl/time.patch new file mode 100644 index 00000000000..6b1e23bc05e --- /dev/null +++ b/pkgs/os-specific/linux/spl/time.patch @@ -0,0 +1,18 @@ +diff --git a/module/spl/spl-time.c b/module/spl/spl-time.c +index 0ed49cc..b0fad4f 100644 +--- a/module/spl/spl-time.c ++++ b/module/spl/spl-time.c +@@ -40,12 +40,7 @@ extern unsigned long long monotonic_clock(void); + void + __gethrestime(timestruc_t *ts) + { +- struct timespec tspec; +- +- getnstimeofday(&tspec); +- +- ts->tv_sec = tspec.tv_sec; +- ts->tv_nsec = tspec.tv_nsec; ++ *ts = current_kernel_time(); + } + EXPORT_SYMBOL(__gethrestime); + From e4294c27e0de3c5524045abb0eb4928c1099f9a9 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 18 Jan 2015 18:40:31 +0100 Subject: [PATCH 155/185] mujs: update to latest commit --- pkgs/development/interpreters/mujs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix index e21216ffe5e..e437d016fac 100644 --- a/pkgs/development/interpreters/mujs/default.nix +++ b/pkgs/development/interpreters/mujs/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit, clang }: stdenv.mkDerivation rec { - name = "mujs-2014-11-29"; + name = "mujs-2015-01-18"; src = fetchgit { url = git://git.ghostscript.com/mujs.git; - rev = "9bc5fec0804381d59ef8dc62304ed6892fb7c4ca"; - sha256 = "0ba6p92ygcssfzd4ij89vilfr2kwql2d1jpyqxflh5wyh1i92wjl"; + rev = "b005928523d2427f8b1daac093c259ab53dba3e9"; + sha256 = "1fgcpa0lm521nbhp7ldh515q0l8012wcfkfyiffchza2wsgmrgfj"; }; buildInputs = [ clang ]; From 652cfc36e92bca5cb99345f314a8de073b5d49bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 18 Jan 2015 16:25:43 +0100 Subject: [PATCH 156/185] python2.6: add a patch to fix parallel make failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 23a202519cb1d8704a0b4294d8d13a224efb1a74) Signed-off-by: Domen Kožar --- .../interpreters/python/2.6/default.nix | 3 ++ .../2.6/python2.6-fix-parallel-make.patch | 37 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/interpreters/python/2.6/python2.6-fix-parallel-make.patch diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index d13fe9178bd..87e4dceee4d 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -24,6 +24,9 @@ let # doesn't work in Nix because Nix changes the mtime of files in # the Nix store to 1. So treat that as a special case. ./nix-store-mtime.patch + + # http://bugs.python.org/issue10013 + ./python2.6-fix-parallel-make.patch ]; preConfigure = '' diff --git a/pkgs/development/interpreters/python/2.6/python2.6-fix-parallel-make.patch b/pkgs/development/interpreters/python/2.6/python2.6-fix-parallel-make.patch new file mode 100644 index 00000000000..c43e141f9af --- /dev/null +++ b/pkgs/development/interpreters/python/2.6/python2.6-fix-parallel-make.patch @@ -0,0 +1,37 @@ +diff -up Python-2.7/Makefile.pre.in.fix-parallel-make Python-2.7/Makefile.pre.in +--- Python-2.7/Makefile.pre.in.fix-parallel-make 2010-07-22 15:01:39.567996932 -0400 ++++ Python-2.7/Makefile.pre.in 2010-07-22 15:47:02.437998509 -0400 +@@ -207,6 +207,7 @@ SIGNAL_OBJS= @SIGNAL_OBJS@ + + ########################################################################## + # Grammar ++GRAMMAR_STAMP= $(srcdir)/grammar-stamp + GRAMMAR_H= $(srcdir)/Include/graminit.h + GRAMMAR_C= $(srcdir)/Python/graminit.c + GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar +@@ -530,10 +531,24 @@ Modules/getpath.o: $(srcdir)/Modules/get + Modules/python.o: $(srcdir)/Modules/python.c + $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c + ++# GNU "make" interprets rules with two dependents as two copies of the rule. ++# ++# In a parallel build this can lead to pgen being run twice, once for each of ++# GRAMMAR_H and GRAMMAR_C, leading to race conditions in which the compiler ++# reads a partially-overwritten copy of one of these files, leading to syntax ++# errors (or linker errors if the fragment happens to be syntactically valid C) ++# ++# See http://www.gnu.org/software/hello/manual/automake/Multiple-Outputs.html ++# for more information ++# ++# Introduce ".grammar-stamp" as a contrived single output from PGEN to avoid ++# this: ++$(GRAMMAR_H) $(GRAMMAR_C): $(GRAMMAR_STAMP) + +-$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT) ++$(GRAMMAR_STAMP): $(PGEN) $(GRAMMAR_INPUT) + -@$(INSTALL) -d Include + -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C) ++ touch $(GRAMMAR_STAMP) + + $(PGEN): $(PGENOBJS) + $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN) From f98a2558ec564a6ecadf3d47e1cd57264b3fa04a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 18 Jan 2015 12:31:14 +0100 Subject: [PATCH 157/185] eventlet: increase TEST_TIMEOUT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 1c489ee2a8f0a5c3e4d4ab7181e5efe3a83dc87d) Signed-off-by: Domen Kožar --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 52b0425d7cc..c9079257c7f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4031,6 +4031,10 @@ let propagatedBuildInputs = optionals (!isPyPy) [ self.greenlet ]; + preCheck = '' + substituteInPlace tests/__init__.py --replace "TEST_TIMEOUT = 1" "TEST_TIMEOUT = 60" + ''; + meta = { homepage = http://pypi.python.org/pypi/eventlet/; description = "A concurrent networking library for Python"; From f458b6d05c58a7081b1bce9e61f6a3ba89f58657 Mon Sep 17 00:00:00 2001 From: Daniel Peebles Date: Sun, 18 Jan 2015 14:57:04 -0500 Subject: [PATCH 158/185] Fix copy&paste typo --- doc/stdenv.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/stdenv.xml b/doc/stdenv.xml index 00fa7567c07..fa3a7ef056e 100644 --- a/doc/stdenv.xml +++ b/doc/stdenv.xml @@ -718,7 +718,7 @@ the Nix store under out. The default install. - Variables controlling the check phase + Variables controlling the install phase makeFlags / @@ -797,7 +797,7 @@ following: - Variables controlling the check phase + Variables controlling the fixup phase dontStrip From a5a27d3949900f62bb3656402f5ca9e28eb7124c Mon Sep 17 00:00:00 2001 From: Richard Wallace Date: Sun, 18 Jan 2015 13:09:13 -0700 Subject: [PATCH 159/185] disable checking on haskellngPackages.jwt --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 66921545b2d..9bba159850d 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -134,6 +134,9 @@ self: super: { # https://github.com/zmthy/http-media/issues/6 http-media = dontCheck super.http-media; + + # tests don't compile for some odd reason + jwt = dontCheck super.jwt; } // { # Not on Hackage yet. From cfb9e8b94de644836f879def9b6f0504d04e8845 Mon Sep 17 00:00:00 2001 From: Markus Kohlhase Date: Wed, 27 Aug 2014 00:11:08 +0200 Subject: [PATCH 160/185] added sloc v0.1.5 --- pkgs/development/tools/sloc/default.nix | 30 ++ pkgs/development/tools/sloc/package.nix | 614 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 646 insertions(+) create mode 100644 pkgs/development/tools/sloc/default.nix create mode 100644 pkgs/development/tools/sloc/package.nix diff --git a/pkgs/development/tools/sloc/default.nix b/pkgs/development/tools/sloc/default.nix new file mode 100644 index 00000000000..257bb4bd878 --- /dev/null +++ b/pkgs/development/tools/sloc/default.nix @@ -0,0 +1,30 @@ +{ pkgs }: + +let + nodePackages = import { + inherit pkgs; + inherit (pkgs) stdenv nodejs fetchurl fetchgit; + neededNatives = [ pkgs.python ] ++ pkgs.lib.optional pkgs.stdenv.isLinux pkgs.utillinux; + self = nodePackages; + generated = ./package.nix; + }; + +in rec { + + build = nodePackages.buildNodePackage { + name = "sloc-0.1.5"; + src = [ + (pkgs.fetchgit { + url = "https://github.com/flosse/sloc.git"; + sha256 = "1f81ihy592dgbcj3v78clrchr9w7nr9bq872ldqcby3kwmhcrd8d"; + rev = "refs/tags/v0.1.5"; + }) + ]; + buildInputs = [ pkgs.nodePackages.coffee-script ]; + postInstall = '' + coffee -o $out/lib/node_modules/sloc/lib/ -c $src/src/ + ''; + deps = [ nodePackages.commander nodePackages.async nodePackages."cli-table" nodePackages.readdirp ]; + passthru.names = [ "sloc" ]; + }; +} diff --git a/pkgs/development/tools/sloc/package.nix b/pkgs/development/tools/sloc/package.nix new file mode 100644 index 00000000000..0c0b10f03d4 --- /dev/null +++ b/pkgs/development/tools/sloc/package.nix @@ -0,0 +1,614 @@ +{ self, fetchurl, fetchgit ? null, lib }: + +{ + by-spec."assertion-error"."1.0.0" = + self.by-version."assertion-error"."1.0.0"; + by-version."assertion-error"."1.0.0" = lib.makeOverridable self.buildNodePackage { + name = "node-assertion-error-1.0.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/assertion-error/-/assertion-error-1.0.0.tgz"; + name = "assertion-error-1.0.0.tgz"; + sha1 = "c7f85438fdd466bc7ca16ab90c81513797a5d23b"; + }) + ]; + buildInputs = + (self.nativeDeps."assertion-error" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "assertion-error" ]; + }; + by-spec."async"."~0.9.0" = + self.by-version."async"."0.9.0"; + by-version."async"."0.9.0" = lib.makeOverridable self.buildNodePackage { + name = "node-async-0.9.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/async/-/async-0.9.0.tgz"; + name = "async-0.9.0.tgz"; + sha1 = "ac3613b1da9bed1b47510bb4651b8931e47146c7"; + }) + ]; + buildInputs = + (self.nativeDeps."async" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "async" ]; + }; + "async" = self.by-version."async"."0.9.0"; + by-spec."chai"."~1.9.1" = + self.by-version."chai"."1.9.1"; + by-version."chai"."1.9.1" = lib.makeOverridable self.buildNodePackage { + name = "node-chai-1.9.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/chai/-/chai-1.9.1.tgz"; + name = "chai-1.9.1.tgz"; + sha1 = "3711bb6706e1568f34c0b36098bf8f19455c81ae"; + }) + ]; + buildInputs = + (self.nativeDeps."chai" or []); + deps = [ + self.by-version."assertion-error"."1.0.0" + self.by-version."deep-eql"."0.1.3" + ]; + peerDependencies = [ + ]; + passthru.names = [ "chai" ]; + }; + "chai" = self.by-version."chai"."1.9.1"; + by-spec."cli-table"."^0.3.0" = + self.by-version."cli-table"."0.3.0"; + by-version."cli-table"."0.3.0" = lib.makeOverridable self.buildNodePackage { + name = "node-cli-table-0.3.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/cli-table/-/cli-table-0.3.0.tgz"; + name = "cli-table-0.3.0.tgz"; + sha1 = "44a43c2641667701e084202bff7aa934128aa13e"; + }) + ]; + buildInputs = + (self.nativeDeps."cli-table" or []); + deps = [ + self.by-version."colors"."0.6.2" + ]; + peerDependencies = [ + ]; + passthru.names = [ "cli-table" ]; + }; + "cli-table" = self.by-version."cli-table"."0.3.0"; + by-spec."coffee-script"."~1.7.1" = + self.by-version."coffee-script"."1.7.1"; + by-version."coffee-script"."1.7.1" = lib.makeOverridable self.buildNodePackage { + name = "coffee-script-1.7.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.7.1.tgz"; + name = "coffee-script-1.7.1.tgz"; + sha1 = "62996a861780c75e6d5069d13822723b73404bfc"; + }) + ]; + buildInputs = + (self.nativeDeps."coffee-script" or []); + deps = [ + self.by-version."mkdirp"."0.3.5" + ]; + peerDependencies = [ + ]; + passthru.names = [ "coffee-script" ]; + }; + "coffee-script" = self.by-version."coffee-script"."1.7.1"; + by-spec."colors"."0.6.2" = + self.by-version."colors"."0.6.2"; + by-version."colors"."0.6.2" = lib.makeOverridable self.buildNodePackage { + name = "node-colors-0.6.2"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/colors/-/colors-0.6.2.tgz"; + name = "colors-0.6.2.tgz"; + sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc"; + }) + ]; + buildInputs = + (self.nativeDeps."colors" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "colors" ]; + }; + by-spec."commander"."0.6.1" = + self.by-version."commander"."0.6.1"; + by-version."commander"."0.6.1" = lib.makeOverridable self.buildNodePackage { + name = "node-commander-0.6.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; + name = "commander-0.6.1.tgz"; + sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; + }) + ]; + buildInputs = + (self.nativeDeps."commander" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "commander" ]; + }; + by-spec."commander"."2.0.0" = + self.by-version."commander"."2.0.0"; + by-version."commander"."2.0.0" = lib.makeOverridable self.buildNodePackage { + name = "node-commander-2.0.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/commander/-/commander-2.0.0.tgz"; + name = "commander-2.0.0.tgz"; + sha1 = "d1b86f901f8b64bd941bdeadaf924530393be928"; + }) + ]; + buildInputs = + (self.nativeDeps."commander" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "commander" ]; + }; + by-spec."commander"."~2.3.0" = + self.by-version."commander"."2.3.0"; + by-version."commander"."2.3.0" = lib.makeOverridable self.buildNodePackage { + name = "node-commander-2.3.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/commander/-/commander-2.3.0.tgz"; + name = "commander-2.3.0.tgz"; + sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873"; + }) + ]; + buildInputs = + (self.nativeDeps."commander" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "commander" ]; + }; + "commander" = self.by-version."commander"."2.3.0"; + by-spec."core-util-is"."~1.0.0" = + self.by-version."core-util-is"."1.0.1"; + by-version."core-util-is"."1.0.1" = lib.makeOverridable self.buildNodePackage { + name = "node-core-util-is-1.0.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz"; + name = "core-util-is-1.0.1.tgz"; + sha1 = "6b07085aef9a3ccac6ee53bf9d3df0c1521a5538"; + }) + ]; + buildInputs = + (self.nativeDeps."core-util-is" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "core-util-is" ]; + }; + by-spec."debug"."*" = + self.by-version."debug"."1.0.4"; + by-version."debug"."1.0.4" = lib.makeOverridable self.buildNodePackage { + name = "node-debug-1.0.4"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/debug/-/debug-1.0.4.tgz"; + name = "debug-1.0.4.tgz"; + sha1 = "5b9c256bd54b6ec02283176fa8a0ede6d154cbf8"; + }) + ]; + buildInputs = + (self.nativeDeps."debug" or []); + deps = [ + self.by-version."ms"."0.6.2" + ]; + peerDependencies = [ + ]; + passthru.names = [ "debug" ]; + }; + by-spec."deep-eql"."0.1.3" = + self.by-version."deep-eql"."0.1.3"; + by-version."deep-eql"."0.1.3" = lib.makeOverridable self.buildNodePackage { + name = "node-deep-eql-0.1.3"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz"; + name = "deep-eql-0.1.3.tgz"; + sha1 = "ef558acab8de25206cd713906d74e56930eb69f2"; + }) + ]; + buildInputs = + (self.nativeDeps."deep-eql" or []); + deps = [ + self.by-version."type-detect"."0.1.1" + ]; + peerDependencies = [ + ]; + passthru.names = [ "deep-eql" ]; + }; + by-spec."diff"."1.0.7" = + self.by-version."diff"."1.0.7"; + by-version."diff"."1.0.7" = lib.makeOverridable self.buildNodePackage { + name = "node-diff-1.0.7"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/diff/-/diff-1.0.7.tgz"; + name = "diff-1.0.7.tgz"; + sha1 = "24bbb001c4a7d5522169e7cabdb2c2814ed91cf4"; + }) + ]; + buildInputs = + (self.nativeDeps."diff" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "diff" ]; + }; + by-spec."glob"."3.2.3" = + self.by-version."glob"."3.2.3"; + by-version."glob"."3.2.3" = lib.makeOverridable self.buildNodePackage { + name = "node-glob-3.2.3"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/glob/-/glob-3.2.3.tgz"; + name = "glob-3.2.3.tgz"; + sha1 = "e313eeb249c7affaa5c475286b0e115b59839467"; + }) + ]; + buildInputs = + (self.nativeDeps."glob" or []); + deps = [ + self.by-version."minimatch"."0.2.14" + self.by-version."graceful-fs"."2.0.3" + self.by-version."inherits"."2.0.1" + ]; + peerDependencies = [ + ]; + passthru.names = [ "glob" ]; + }; + by-spec."graceful-fs"."~2.0.0" = + self.by-version."graceful-fs"."2.0.3"; + by-version."graceful-fs"."2.0.3" = lib.makeOverridable self.buildNodePackage { + name = "node-graceful-fs-2.0.3"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz"; + name = "graceful-fs-2.0.3.tgz"; + sha1 = "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0"; + }) + ]; + buildInputs = + (self.nativeDeps."graceful-fs" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "graceful-fs" ]; + }; + by-spec."growl"."1.8.x" = + self.by-version."growl"."1.8.1"; + by-version."growl"."1.8.1" = lib.makeOverridable self.buildNodePackage { + name = "node-growl-1.8.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/growl/-/growl-1.8.1.tgz"; + name = "growl-1.8.1.tgz"; + sha1 = "4b2dec8d907e93db336624dcec0183502f8c9428"; + }) + ]; + buildInputs = + (self.nativeDeps."growl" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "growl" ]; + }; + by-spec."inherits"."2" = + self.by-version."inherits"."2.0.1"; + by-version."inherits"."2.0.1" = lib.makeOverridable self.buildNodePackage { + name = "node-inherits-2.0.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; + name = "inherits-2.0.1.tgz"; + sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; + }) + ]; + buildInputs = + (self.nativeDeps."inherits" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "inherits" ]; + }; + by-spec."inherits"."~2.0.1" = + self.by-version."inherits"."2.0.1"; + by-spec."isarray"."0.0.1" = + self.by-version."isarray"."0.0.1"; + by-version."isarray"."0.0.1" = lib.makeOverridable self.buildNodePackage { + name = "node-isarray-0.0.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; + name = "isarray-0.0.1.tgz"; + sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; + }) + ]; + buildInputs = + (self.nativeDeps."isarray" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "isarray" ]; + }; + by-spec."jade"."0.26.3" = + self.by-version."jade"."0.26.3"; + by-version."jade"."0.26.3" = lib.makeOverridable self.buildNodePackage { + name = "jade-0.26.3"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/jade/-/jade-0.26.3.tgz"; + name = "jade-0.26.3.tgz"; + sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c"; + }) + ]; + buildInputs = + (self.nativeDeps."jade" or []); + deps = [ + self.by-version."commander"."0.6.1" + self.by-version."mkdirp"."0.3.0" + ]; + peerDependencies = [ + ]; + passthru.names = [ "jade" ]; + }; + by-spec."lru-cache"."2" = + self.by-version."lru-cache"."2.5.0"; + by-version."lru-cache"."2.5.0" = lib.makeOverridable self.buildNodePackage { + name = "node-lru-cache-2.5.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz"; + name = "lru-cache-2.5.0.tgz"; + sha1 = "d82388ae9c960becbea0c73bb9eb79b6c6ce9aeb"; + }) + ]; + buildInputs = + (self.nativeDeps."lru-cache" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "lru-cache" ]; + }; + by-spec."minimatch"."~0.2.11" = + self.by-version."minimatch"."0.2.14"; + by-version."minimatch"."0.2.14" = lib.makeOverridable self.buildNodePackage { + name = "node-minimatch-0.2.14"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz"; + name = "minimatch-0.2.14.tgz"; + sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a"; + }) + ]; + buildInputs = + (self.nativeDeps."minimatch" or []); + deps = [ + self.by-version."lru-cache"."2.5.0" + self.by-version."sigmund"."1.0.0" + ]; + peerDependencies = [ + ]; + passthru.names = [ "minimatch" ]; + }; + by-spec."minimatch"."~0.2.12" = + self.by-version."minimatch"."0.2.14"; + by-spec."mkdirp"."0.3.0" = + self.by-version."mkdirp"."0.3.0"; + by-version."mkdirp"."0.3.0" = lib.makeOverridable self.buildNodePackage { + name = "node-mkdirp-0.3.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"; + name = "mkdirp-0.3.0.tgz"; + sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e"; + }) + ]; + buildInputs = + (self.nativeDeps."mkdirp" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "mkdirp" ]; + }; + by-spec."mkdirp"."0.3.5" = + self.by-version."mkdirp"."0.3.5"; + by-version."mkdirp"."0.3.5" = lib.makeOverridable self.buildNodePackage { + name = "node-mkdirp-0.3.5"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"; + name = "mkdirp-0.3.5.tgz"; + sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7"; + }) + ]; + buildInputs = + (self.nativeDeps."mkdirp" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "mkdirp" ]; + }; + by-spec."mkdirp"."~0.3.5" = + self.by-version."mkdirp"."0.3.5"; + by-spec."mocha"."~1.21.4" = + self.by-version."mocha"."1.21.4"; + by-version."mocha"."1.21.4" = lib.makeOverridable self.buildNodePackage { + name = "mocha-1.21.4"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/mocha/-/mocha-1.21.4.tgz"; + name = "mocha-1.21.4.tgz"; + sha1 = "e77d69c3773ba3e2b4fe6b628c28b5dd43880adc"; + }) + ]; + buildInputs = + (self.nativeDeps."mocha" or []); + deps = [ + self.by-version."commander"."2.0.0" + self.by-version."growl"."1.8.1" + self.by-version."jade"."0.26.3" + self.by-version."diff"."1.0.7" + self.by-version."debug"."1.0.4" + self.by-version."mkdirp"."0.3.5" + self.by-version."glob"."3.2.3" + ]; + peerDependencies = [ + ]; + passthru.names = [ "mocha" ]; + }; + "mocha" = self.by-version."mocha"."1.21.4"; + by-spec."ms"."0.6.2" = + self.by-version."ms"."0.6.2"; + by-version."ms"."0.6.2" = lib.makeOverridable self.buildNodePackage { + name = "node-ms-0.6.2"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/ms/-/ms-0.6.2.tgz"; + name = "ms-0.6.2.tgz"; + sha1 = "d89c2124c6fdc1353d65a8b77bf1aac4b193708c"; + }) + ]; + buildInputs = + (self.nativeDeps."ms" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "ms" ]; + }; + by-spec."readable-stream"."~1.0.26-2" = + self.by-version."readable-stream"."1.0.31"; + by-version."readable-stream"."1.0.31" = lib.makeOverridable self.buildNodePackage { + name = "node-readable-stream-1.0.31"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz"; + name = "readable-stream-1.0.31.tgz"; + sha1 = "8f2502e0bc9e3b0da1b94520aabb4e2603ecafae"; + }) + ]; + buildInputs = + (self.nativeDeps."readable-stream" or []); + deps = [ + self.by-version."core-util-is"."1.0.1" + self.by-version."isarray"."0.0.1" + self.by-version."string_decoder"."0.10.31" + self.by-version."inherits"."2.0.1" + ]; + peerDependencies = [ + ]; + passthru.names = [ "readable-stream" ]; + }; + by-spec."readdirp"."^1.1.0" = + self.by-version."readdirp"."1.1.0"; + by-version."readdirp"."1.1.0" = lib.makeOverridable self.buildNodePackage { + name = "node-readdirp-1.1.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/readdirp/-/readdirp-1.1.0.tgz"; + name = "readdirp-1.1.0.tgz"; + sha1 = "6506f9d5d8bb2edc19c855a60bb92feca5fae39c"; + }) + ]; + buildInputs = + (self.nativeDeps."readdirp" or []); + deps = [ + self.by-version."graceful-fs"."2.0.3" + self.by-version."minimatch"."0.2.14" + self.by-version."readable-stream"."1.0.31" + ]; + peerDependencies = [ + ]; + passthru.names = [ "readdirp" ]; + }; + "readdirp" = self.by-version."readdirp"."1.1.0"; + by-spec."sigmund"."~1.0.0" = + self.by-version."sigmund"."1.0.0"; + by-version."sigmund"."1.0.0" = lib.makeOverridable self.buildNodePackage { + name = "node-sigmund-1.0.0"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz"; + name = "sigmund-1.0.0.tgz"; + sha1 = "66a2b3a749ae8b5fb89efd4fcc01dc94fbe02296"; + }) + ]; + buildInputs = + (self.nativeDeps."sigmund" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "sigmund" ]; + }; + by-spec."string_decoder"."~0.10.x" = + self.by-version."string_decoder"."0.10.31"; + by-version."string_decoder"."0.10.31" = lib.makeOverridable self.buildNodePackage { + name = "node-string_decoder-0.10.31"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; + name = "string_decoder-0.10.31.tgz"; + sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; + }) + ]; + buildInputs = + (self.nativeDeps."string_decoder" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "string_decoder" ]; + }; + by-spec."type-detect"."0.1.1" = + self.by-version."type-detect"."0.1.1"; + by-version."type-detect"."0.1.1" = lib.makeOverridable self.buildNodePackage { + name = "node-type-detect-0.1.1"; + src = [ + (fetchurl { + url = "http://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz"; + name = "type-detect-0.1.1.tgz"; + sha1 = "0ba5ec2a885640e470ea4e8505971900dac58822"; + }) + ]; + buildInputs = + (self.nativeDeps."type-detect" or []); + deps = [ + ]; + peerDependencies = [ + ]; + passthru.names = [ "type-detect" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 06eeef6dd43..5850f4199be 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4859,6 +4859,8 @@ let sloccount = callPackage ../development/tools/misc/sloccount { }; + sloc = callPackage ../development/tools/sloc { }; + smatch = callPackage ../development/tools/analysis/smatch { buildllvmsparse = false; buildc2xml = false; From 73c966534ab6528204afa3fae8bda1baabdf9e56 Mon Sep 17 00:00:00 2001 From: Markus Kohlhase Date: Wed, 10 Sep 2014 23:03:36 +0200 Subject: [PATCH 161/185] updated to v0.1.6 --- pkgs/development/tools/sloc/default.nix | 10 ++++----- pkgs/development/tools/sloc/package.nix | 30 ++++++++++++------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/pkgs/development/tools/sloc/default.nix b/pkgs/development/tools/sloc/default.nix index 257bb4bd878..75947bb623c 100644 --- a/pkgs/development/tools/sloc/default.nix +++ b/pkgs/development/tools/sloc/default.nix @@ -12,19 +12,19 @@ let in rec { build = nodePackages.buildNodePackage { - name = "sloc-0.1.5"; + name = "sloc-0.1.6"; src = [ (pkgs.fetchgit { url = "https://github.com/flosse/sloc.git"; - sha256 = "1f81ihy592dgbcj3v78clrchr9w7nr9bq872ldqcby3kwmhcrd8d"; - rev = "refs/tags/v0.1.5"; + sha256 = "0064va0cd4604vqp8y8ggm33klp2xgqmgrwk9ilp7230x27wykyf"; + rev = "refs/tags/v0.1.6"; }) ]; buildInputs = [ pkgs.nodePackages.coffee-script ]; postInstall = '' - coffee -o $out/lib/node_modules/sloc/lib/ -c $src/src/ + ${nodePackages.coffee-script}/bin/coffee -o $out/lib/node_modules/sloc/lib/ -c $src/src/ ''; - deps = [ nodePackages.commander nodePackages.async nodePackages."cli-table" nodePackages.readdirp ]; + deps = [ nodePackages.commander nodePackages.async nodePackages.cli-table nodePackages.readdirp ]; passthru.names = [ "sloc" ]; }; } diff --git a/pkgs/development/tools/sloc/package.nix b/pkgs/development/tools/sloc/package.nix index 0c0b10f03d4..36a4fee1358 100644 --- a/pkgs/development/tools/sloc/package.nix +++ b/pkgs/development/tools/sloc/package.nix @@ -83,15 +83,15 @@ passthru.names = [ "cli-table" ]; }; "cli-table" = self.by-version."cli-table"."0.3.0"; - by-spec."coffee-script"."~1.7.1" = - self.by-version."coffee-script"."1.7.1"; - by-version."coffee-script"."1.7.1" = lib.makeOverridable self.buildNodePackage { - name = "coffee-script-1.7.1"; + by-spec."coffee-script"."~1.8.0" = + self.by-version."coffee-script"."1.8.0"; + by-version."coffee-script"."1.8.0" = lib.makeOverridable self.buildNodePackage { + name = "coffee-script-1.8.0"; src = [ (fetchurl { - url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.7.1.tgz"; - name = "coffee-script-1.7.1.tgz"; - sha1 = "62996a861780c75e6d5069d13822723b73404bfc"; + url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.8.0.tgz"; + name = "coffee-script-1.8.0.tgz"; + sha1 = "9c9f1d2b4a52a000ded15b659791703648263c1d"; }) ]; buildInputs = @@ -103,7 +103,7 @@ ]; passthru.names = [ "coffee-script" ]; }; - "coffee-script" = self.by-version."coffee-script"."1.7.1"; + "coffee-script" = self.by-version."coffee-script"."1.8.0"; by-spec."colors"."0.6.2" = self.by-version."colors"."0.6.2"; by-version."colors"."0.6.2" = lib.makeOverridable self.buildNodePackage { @@ -201,14 +201,14 @@ passthru.names = [ "core-util-is" ]; }; by-spec."debug"."*" = - self.by-version."debug"."1.0.4"; - by-version."debug"."1.0.4" = lib.makeOverridable self.buildNodePackage { - name = "node-debug-1.0.4"; + self.by-version."debug"."2.0.0"; + by-version."debug"."2.0.0" = lib.makeOverridable self.buildNodePackage { + name = "node-debug-2.0.0"; src = [ (fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-1.0.4.tgz"; - name = "debug-1.0.4.tgz"; - sha1 = "5b9c256bd54b6ec02283176fa8a0ede6d154cbf8"; + url = "http://registry.npmjs.org/debug/-/debug-2.0.0.tgz"; + name = "debug-2.0.0.tgz"; + sha1 = "89bd9df6732b51256bc6705342bba02ed12131ef"; }) ]; buildInputs = @@ -480,7 +480,7 @@ self.by-version."growl"."1.8.1" self.by-version."jade"."0.26.3" self.by-version."diff"."1.0.7" - self.by-version."debug"."1.0.4" + self.by-version."debug"."2.0.0" self.by-version."mkdirp"."0.3.5" self.by-version."glob"."3.2.3" ]; From eee450779e628d1aa7d1828193df264e191013dc Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 23:29:07 +0300 Subject: [PATCH 162/185] Remove strange reference to coffee-script with two versions --- pkgs/development/tools/sloc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/sloc/default.nix b/pkgs/development/tools/sloc/default.nix index 75947bb623c..6cc7ed8c299 100644 --- a/pkgs/development/tools/sloc/default.nix +++ b/pkgs/development/tools/sloc/default.nix @@ -20,9 +20,9 @@ in rec { rev = "refs/tags/v0.1.6"; }) ]; - buildInputs = [ pkgs.nodePackages.coffee-script ]; + buildInputs = [ nodePackages.coffee-script ]; postInstall = '' - ${nodePackages.coffee-script}/bin/coffee -o $out/lib/node_modules/sloc/lib/ -c $src/src/ + coffee -o $out/lib/node_modules/sloc/lib/ -c $src/src/ ''; deps = [ nodePackages.commander nodePackages.async nodePackages.cli-table nodePackages.readdirp ]; passthru.names = [ "sloc" ]; From 4cf2f41f01f2ae7c14dd55748f3e3f28da897e22 Mon Sep 17 00:00:00 2001 From: koral Date: Thu, 9 Oct 2014 12:26:20 +0200 Subject: [PATCH 163/185] New package: jumanji-20140622 --- .../networking/browsers/jumanji/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 ++++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/applications/networking/browsers/jumanji/default.nix diff --git a/pkgs/applications/networking/browsers/jumanji/default.nix b/pkgs/applications/networking/browsers/jumanji/default.nix new file mode 100644 index 00000000000..ff4fea90bff --- /dev/null +++ b/pkgs/applications/networking/browsers/jumanji/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchgit, pkgconfig, girara, gtk, webkitgtk, glib_networking, makeWrapper }: + +stdenv.mkDerivation rec { + name = "jumanji-${version}"; + version = "20140622"; + + src = fetchgit { + url = git://pwmt.org/jumanji.git; + rev = "8f40487304a6a931487c411b25001f2bb5cf8d4f"; + sha256 = "1hdk09rayyv2knxzn4n7d41dvh34gdk9ra75x7g9n985w13pkinv"; + }; + + buildInputs = [ girara pkgconfig gtk webkitgtk makeWrapper ]; + + makeFlags = [ "PREFIX=$(out)" ]; + + preFixup='' + wrapProgram "$out/bin/jumanji" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" + ''; + + meta = with stdenv.lib; { + description = "Minimal web browser"; + homepage = http://pwmt.org/projects/jumanji/; + platforms = platforms.all; + maintainers = [ maintainers.koral ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5850f4199be..0bd8d4ff31d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10272,6 +10272,11 @@ let inherit (pythonPackages) lxml; }; + jumanji = callPackage ../applications/networking/browsers/jumanji { + webkitgtk = webkitgtk24x; + gtk = gtk3; + }; + jwm = callPackage ../applications/window-managers/jwm { }; k3d = callPackage ../applications/graphics/k3d { From 87862a003b87c3b9ee72db354beee49264b64d2a Mon Sep 17 00:00:00 2001 From: Krzysztof Starecki Date: Sat, 18 Oct 2014 21:09:42 +0200 Subject: [PATCH 164/185] Add spatialite-tools and its missing dependency (readosm) --- .../development/libraries/readosm/default.nix | 22 +++++++++++++++++++ .../libraries/spatialite-tools/default.nix | 22 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 3 files changed, 48 insertions(+) create mode 100644 pkgs/development/libraries/readosm/default.nix create mode 100644 pkgs/development/libraries/spatialite-tools/default.nix diff --git a/pkgs/development/libraries/readosm/default.nix b/pkgs/development/libraries/readosm/default.nix new file mode 100644 index 00000000000..c1393fcaa34 --- /dev/null +++ b/pkgs/development/libraries/readosm/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, expat, zlib, geos, libspatialite }: + +stdenv.mkDerivation rec { + name = "readosm-1.0.0b"; + + src = fetchurl { + url = "http://www.gaia-gis.it/gaia-sins/readosm-sources/${name}.tar.gz"; + sha256 = "042pv31smc7l6y111rvp0hza5sw86wa8ldg2jyq78xgwzcbhszpd"; + }; + + buildInputs = [ expat zlib geos libspatialite ]; + + configureFlags = "--disable-freexl"; + + enableParallelBuilding = true; + + meta = { + description = "An open source library to extract valid data from within an Open Street Map input file"; + homepage = https://www.gaia-gis.it/fossil/readosm; + license = [ "GPLv2+" "LGPLv2+" "MPL1.1" ]; + }; +} diff --git a/pkgs/development/libraries/spatialite-tools/default.nix b/pkgs/development/libraries/spatialite-tools/default.nix new file mode 100644 index 00000000000..45756b79fd5 --- /dev/null +++ b/pkgs/development/libraries/spatialite-tools/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, sqlite, expat, zlib, proj, geos, libspatialite, readosm }: + +stdenv.mkDerivation rec { + name = "spatialite-tools-4.1.1"; + + src = fetchurl { + url = "http://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/${name}.tar.gz"; + sha256 = "14aqmhvab63ydbb82fglsbig7jw1wmci8jjvci07aavdhvh1pyrv"; + }; + + buildInputs = [ pkgconfig sqlite expat zlib proj geos libspatialite readosm ]; + + configureFlags = "--disable-freexl"; + + enableParallelBuilding = true; + + meta = { + description = "A complete sqlite3-compatible CLI front-end for libspatialite"; + homepage = https://www.gaia-gis.it/fossil/spatialite-tools; + license = [ "GPLv2+" "LGPLv2+" "MPL1.1" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0bd8d4ff31d..6eb1fc81654 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6925,6 +6925,8 @@ let readline63 = callPackage ../development/libraries/readline/6.3.nix { }; + readosm = callPackage ../development/libraries/readosm { }; + librdf_raptor = callPackage ../development/libraries/librdf/raptor.nix { }; librdf_raptor2 = callPackage ../development/libraries/librdf/raptor2.nix { }; @@ -7049,6 +7051,8 @@ let spandsp = callPackage ../development/libraries/spandsp {}; + spatialite_tools = callPackage ../development/libraries/spatialite-tools { }; + speechd = callPackage ../development/libraries/speechd { }; speech_tools = callPackage ../development/libraries/speech-tools {}; From 47f07849859c4400b3eaf8b4c9511325e593993c Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 18 Jan 2015 23:53:15 +0300 Subject: [PATCH 165/185] Fix license reference --- pkgs/development/libraries/readosm/default.nix | 1 + pkgs/development/libraries/spatialite-tools/default.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/readosm/default.nix b/pkgs/development/libraries/readosm/default.nix index c1393fcaa34..3ca7cab6c38 100644 --- a/pkgs/development/libraries/readosm/default.nix +++ b/pkgs/development/libraries/readosm/default.nix @@ -18,5 +18,6 @@ stdenv.mkDerivation rec { description = "An open source library to extract valid data from within an Open Street Map input file"; homepage = https://www.gaia-gis.it/fossil/readosm; license = [ "GPLv2+" "LGPLv2+" "MPL1.1" ]; + licenses = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; }; } diff --git a/pkgs/development/libraries/spatialite-tools/default.nix b/pkgs/development/libraries/spatialite-tools/default.nix index 45756b79fd5..9ac8a7d56f4 100644 --- a/pkgs/development/libraries/spatialite-tools/default.nix +++ b/pkgs/development/libraries/spatialite-tools/default.nix @@ -17,6 +17,6 @@ stdenv.mkDerivation rec { meta = { description = "A complete sqlite3-compatible CLI front-end for libspatialite"; homepage = https://www.gaia-gis.it/fossil/spatialite-tools; - license = [ "GPLv2+" "LGPLv2+" "MPL1.1" ]; + licenses = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; }; } From 5c2041ca5d81af0b2488fab291f7314437261029 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 18 Jan 2015 21:53:16 +0100 Subject: [PATCH 166/185] Add darkstat: light-weight network monitor web interface --- pkgs/tools/networking/darkstat/default.nix | 31 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/tools/networking/darkstat/default.nix diff --git a/pkgs/tools/networking/darkstat/default.nix b/pkgs/tools/networking/darkstat/default.nix new file mode 100644 index 00000000000..af15f6a62e5 --- /dev/null +++ b/pkgs/tools/networking/darkstat/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, libpcap, zlib }: + +stdenv.mkDerivation rec { + version = "3.0.718"; + name = "darkstat-${version}"; + + src = fetchurl { + url = "${meta.homepage}/${name}.tar.bz2"; + sha256 = "1zxd4bxdfk1pjpcxhrcp54l991g0lljl4sr312nsd7p8yi9kwbv8"; + }; + + buildInputs = [ libpcap zlib ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "Network statistics web interface"; + longDescription = '' + Captures network traffic, calculates statistics about usage, and serves + reports over HTTP. Features: + - Traffic graphs, reports per host, shows ports for each host. + - Embedded web-server with deflate compression. + - Asynchronous reverse DNS resolution using a child process. + - Small. Portable. Single-threaded. Efficient. + - Supports IPv6. + ''; + homepage = http://unix4lyfe.org/darkstat; + license = with licenses; gpl2; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 66dba26f70c..ecfa5b7193f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -969,6 +969,8 @@ let dar = callPackage ../tools/archivers/dar { }; + darkstat = callPackage ../tools/networking/darkstat { }; + davfs2 = callPackage ../tools/filesystems/davfs2 { }; dbench = callPackage ../development/tools/misc/dbench { }; From cfce8509b85281a967a5937f3f0c672125990474 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 11 Nov 2014 13:29:42 +0100 Subject: [PATCH 167/185] grsecurity: add GRKERNSEC_DENYUSB option (disabled by default) This option tells the kernel to ignore plug-in events of USB devices. Useful to protect against attacks with malicious hardware. Currently disabled by default, though. --- pkgs/build-support/grsecurity/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 91972838230..b2bffc781b3 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -10,6 +10,7 @@ let mode = "auto"; sysctl = false; denyChrootChmod = false; + denyUSB = false; restrictProc = false; restrictProcWithGroup = true; unrestrictProcGid = 121; # Ugh, an awful hack. See grsecurity NixOS gid @@ -106,6 +107,7 @@ let GRKERNSEC_SYSCTL ${boolToKernOpt cfg.config.sysctl} GRKERNSEC_CHROOT_CHMOD ${boolToKernOpt cfg.config.denyChrootChmod} + GRKERNSEC_DENYUSB ${boolToKernOpt cfg.config.denyUSB} GRKERNSEC_NO_RBAC ${boolToKernOpt cfg.config.disableRBAC} ${restrictLinks} From c6269eb0d80d7a532f6d74cd5235f80ec6f0b6ff Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Sun, 18 Jan 2015 22:24:16 +0100 Subject: [PATCH 168/185] libuv: pkgconfig --- pkgs/development/libraries/libuv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index decf9b3ac58..5f7eb7dad3b 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool }: +{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig }: let stable = "stable"; @@ -59,7 +59,7 @@ let mkWithAutotools = stability: version: sha256: stdenv.mkDerivation { name = mkName stability version; src = mkSrc version sha256; - buildInputs = [ automake autoconf libtool ]; + buildInputs = [ automake autoconf libtool pkgconfig ]; preConfigure = '' LIBTOOLIZE=libtoolize ./autogen.sh ''; From 130f66b683d37a0f636e6c8283873011b196eeac Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Jan 2015 14:21:40 -0800 Subject: [PATCH 169/185] nixos/sync-server: Respect the enable option --- nixos/modules/services/networking/firefox/sync-server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix index 6ed7a6beb9e..79f32f3358c 100644 --- a/nixos/modules/services/networking/firefox/sync-server.nix +++ b/nixos/modules/services/networking/firefox/sync-server.nix @@ -119,7 +119,7 @@ in }; }; - config = { + config = mkIf cfg.enable { systemd.services.syncserver = { after = [ "network.target" ]; From b64eeaf727c351ed7461793ca952ad4fee8ad12a Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Mon, 19 Jan 2015 03:52:26 +0100 Subject: [PATCH 170/185] new package: httping 2.3.4 --- pkgs/tools/networking/httping/default.nix | 26 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/tools/networking/httping/default.nix diff --git a/pkgs/tools/networking/httping/default.nix b/pkgs/tools/networking/httping/default.nix new file mode 100644 index 00000000000..7e9906e7971 --- /dev/null +++ b/pkgs/tools/networking/httping/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, gettext }: + +stdenv.mkDerivation rec { + name = "httping-${version}"; + + version = "2.3.4"; + + src = fetchurl { + url = "http://www.vanheusden.com/httping/httping-2.3.4.tgz"; + sha256 = "1hkbhdxb0phrvrddx9kcfpqlzm41xv9jvy82nfkqa7bb0v5p2qd7"; + }; + + buildInputs = [ gettext ]; + + makeFlags = [ + "DESTDIR=$(out)" + "PREFIX=" + ]; + + meta = { + homepage = "http://www.vanheusden.com/httping"; + description = "ping for HTTP requests"; + maintainers = with stdenv.lib.maintainers; [ rickynils ]; + platforms = with stdenv.lib.platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 49278d60924..72cab0fd1cb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1501,6 +1501,8 @@ let httpie = callPackage ../tools/networking/httpie { }; + httping = callPackage ../tools/networking/httping {}; + httpfs2 = callPackage ../tools/filesystems/httpfs { }; httptunnel = callPackage ../tools/networking/httptunnel { }; From 825f976b272d833275a04236247e8fe8345616fd Mon Sep 17 00:00:00 2001 From: Eduard Bachmakov Date: Wed, 14 Jan 2015 19:28:41 -0500 Subject: [PATCH 171/185] Add package: SDL_stretch-0.3.1 Added in preparation for 3dfsb. --- .../libraries/SDL_stretch/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/development/libraries/SDL_stretch/default.nix diff --git a/pkgs/development/libraries/SDL_stretch/default.nix b/pkgs/development/libraries/SDL_stretch/default.nix new file mode 100644 index 00000000000..52c43da9d16 --- /dev/null +++ b/pkgs/development/libraries/SDL_stretch/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, SDL }: + +stdenv.mkDerivation { + name = "SDL_stretch-0.3.1"; + + src = fetchurl { + url = "mirror://sourceforge/sdl-stretch/0.3.1/SDL_stretch-0.3.1.tar.bz2"; + sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw"; + }; + + buildInputs = [ SDL ]; + + meta = { + description = "Stretch Functions For SDL"; + homepage = "http://sdl-stretch.sourceforge.net/"; + license = stdenv.lib.licenses.lgpl2; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c7813320b14..261dec92aba 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6840,6 +6840,8 @@ let SDL_sound = callPackage ../development/libraries/SDL_sound { }; + SDL_stretch= callPackage ../development/libraries/SDL_stretch { }; + SDL_ttf = callPackage ../development/libraries/SDL_ttf { }; SDL2 = callPackage ../development/libraries/SDL2 { From 9b049948fa4b52c868c2bcfed89a180ca1536f5c Mon Sep 17 00:00:00 2001 From: Eduard Bachmakov Date: Wed, 14 Jan 2015 19:30:07 -0500 Subject: [PATCH 172/185] Add 3dfsb --- pkgs/applications/misc/3dfsb/default.nix | 32 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/applications/misc/3dfsb/default.nix diff --git a/pkgs/applications/misc/3dfsb/default.nix b/pkgs/applications/misc/3dfsb/default.nix new file mode 100644 index 00000000000..96bcfbd6bfe --- /dev/null +++ b/pkgs/applications/misc/3dfsb/default.nix @@ -0,0 +1,32 @@ +{ stdenv, makeWrapper, glibc, fetchgit, pkgconfig, SDL, SDL_image, SDL_stretch, + mesa, mesa_glu, freeglut, gst_all_1, gtk2, file, imagemagick }: + +stdenv.mkDerivation { + name = "3dfsb-1.0"; + + meta = with stdenv.lib; { + description = "3D File System Browser - cleaned up and improved fork of the old tdfsb which runs on GNU/Linux and should also run on BeOS/Haiku and FreeBSD"; + homepage = "https://github.com/tomvanbraeckel/3dfsb"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ eduarrrd ]; + }; + + src = fetchgit { + url = "git://github.com/tomvanbraeckel/3dfsb.git"; + rev = "a69a9dfad42acbe2816328d11b58b65f4186c4c5"; + sha256 = "191ndg4vfanjfx4qh186sszyy4pphx3l41rchins9mg8y5rm5ffp"; + }; + + buildInputs = with gst_all_1; [ makeWrapper glibc pkgconfig SDL SDL_image SDL_stretch mesa_glu freeglut gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav gtk2 file imagemagick ]; + + buildPhase = "sh ./compile.sh"; + dontStrip = true; + + installPhase = "mkdir $out/bin/ && cp 3dfsb $out/bin/"; + + preFixup = '' + wrapProgram $out/bin/3dfsb \ + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 261dec92aba..54f694e462e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -444,6 +444,10 @@ let ### TOOLS + "3dfsb" = callPackage ../applications/misc/3dfsb { + glibc = glibc.override { debugSymbols = true; }; + }; + abduco = callPackage ../tools/misc/abduco { }; acct = callPackage ../tools/system/acct { }; From 9fce7cced9a04e88159a13fab74619fc3aa3de21 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Jan 2015 14:24:39 -0800 Subject: [PATCH 173/185] kernel: 3.10.64 -> 3.10.65 --- pkgs/os-specific/linux/kernel/linux-3.10.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.10.nix b/pkgs/os-specific/linux/kernel/linux-3.10.nix index fbcab796dda..4e9af61309b 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.10.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, ... } @ args: import ./generic.nix (args // rec { - version = "3.10.64"; + version = "3.10.65"; extraMeta.branch = "3.10"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0k3n5q4d5y88xady3rdjvy3p3g12gk1fxszc27sw7a752hv41qpq"; + sha256 = "0nv6zwwpwmpd7zpkjvznbxszk2c5rkdivmmrb71b1a99q6iyxj0f"; }; features.iwlwifi = true; From f23cb7d92510bcb1dd8ffc1452d854ac0606c55c Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Jan 2015 14:24:51 -0800 Subject: [PATCH 174/185] kernel: 3.12.35 -> 3.12.36 --- pkgs/os-specific/linux/kernel/linux-3.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.12.nix b/pkgs/os-specific/linux/kernel/linux-3.12.nix index 1dd49edf6d7..86fc9045c0a 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.12.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.12.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, ... } @ args: import ./generic.nix (args // rec { - version = "3.12.35"; + version = "3.12.36"; extraMeta.branch = "3.12"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1krzd21hi93kwmffaxfbmyh8cbxl6afgma3yk14xm5ff5z0nlaxy"; + sha256 = "15b1hvsmnq63kjqv24w2p5l94z7gdkdz445niz5p21z5jdn8bcq0"; }; features.iwlwifi = true; From 2c02b7caff97c8fee6fea07ca64d06bafae8a005 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Jan 2015 14:24:56 -0800 Subject: [PATCH 175/185] kernel: 3.14.28 -> 3.14.29 --- pkgs/os-specific/linux/kernel/linux-3.14.nix | 4 ++-- pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.14.nix b/pkgs/os-specific/linux/kernel/linux-3.14.nix index 3ed4bf21107..b4fd4eeefbc 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.14.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, ... } @ args: import ./generic.nix (args // rec { - version = "3.14.28"; + version = "3.14.29"; # Remember to update grsecurity! extraMeta.branch = "3.14"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "08akxzqpj3708ixraxks81bwd5c69nzz4n6ysb53zpsl6h7vybbp"; + sha256 = "0hklzp0bv7f1pbhwgi84k2iqv9lb2aai1jgxzdrzilp6sz9z8f5v"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index c0a94ed2e76..f8509204037 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -65,10 +65,10 @@ rec { }; grsecurity_stable = grsecPatch - { kversion = "3.14.28"; - revision = "201501142323"; + { kversion = "3.14.29"; + revision = "201501182217"; branch = "stable"; - sha256 = "0wvksk3fbs4cd7lxmbgw8iq5rm2rggc2rx526nina71vjwr42j2m"; + sha256 = "1g3ijwrclcli2hxv3f9yhvcxcxzs5mmzsw3632zq4pd9vcmsn8iz"; }; grsecurity_unstable = grsecPatch From fb921695b635afccdead9f233994c87eb38b661e Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Jan 2015 21:10:59 -0800 Subject: [PATCH 176/185] kernel: Fix grsec patch for 3.18.3 --- pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index f8509204037..5d413a32102 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -72,10 +72,10 @@ rec { }; grsecurity_unstable = grsecPatch - { kversion = "3.18.2"; - revision = "201501142325"; + { kversion = "3.18.3"; + revision = "201501182219"; branch = "test"; - sha256 = "1szr3y876rllyw3dbw450cc3gz67ysfdxmdggaig31z470w9pikh"; + sha256 = "06s62kvxsc99rsslngkn3lrhyg58wmvnzq4p2zxyh8hm46bjm3ds"; }; grsec_fix_path = From c163baca3bf09af9431bc2c00a642282f5e64776 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 19 Jan 2015 11:06:00 +0300 Subject: [PATCH 177/185] Clean up glibcLocales environment handling -- manual merge of patch by wmertens (except Haskell part) --- pkgs/development/libraries/glibc/locales.nix | 7 +++- pkgs/top-level/all-packages.nix | 3 +- pkgs/top-level/python-packages.nix | 44 ++++++++++---------- 3 files changed, 30 insertions(+), 24 deletions(-) diff --git a/pkgs/development/libraries/glibc/locales.nix b/pkgs/development/libraries/glibc/locales.nix index 1dd15832f5b..5d6e678bfe6 100644 --- a/pkgs/development/libraries/glibc/locales.nix +++ b/pkgs/development/libraries/glibc/locales.nix @@ -6,7 +6,7 @@ http://sourceware.org/cgi-bin/cvsweb.cgi/libc/localedata/SUPPORTED?cvsroot=glibc */ -{ stdenv, fetchurl, allLocales ? true, locales ? ["en_US.UTF-8/UTF-8"] }: +{ stdenv, fetchurl, writeText, allLocales ? true, locales ? ["en_US.UTF-8/UTF-8"] }: let build = import ./common.nix; in @@ -43,5 +43,10 @@ build null { cp -v "$TMPDIR/$NIX_STORE/"*"/lib/locale/locale-archive" "$out/lib/locale" ''; + setupHook = writeText "locales-setup-hook.sh" + '' + export LOCALE_ARCHIVE=@out@/lib/locale/locale-archive + ''; + meta.description = "Locale information for the GNU C Library"; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b43012f0939..4fd5a5140e2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5425,7 +5425,8 @@ let installLocales = config.glibc.locales or false; }; - glibcLocales = callPackage ../development/libraries/glibc/locales.nix { }; + # Not supported on Darwin + glibcLocales = if (! stdenv.isDarwin) then (callPackage ../development/libraries/glibc/locales.nix { }) else null; glibcInfo = callPackage ../development/libraries/glibc/info.nix { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c9079257c7f..cf7d5d865fe 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -30,9 +30,6 @@ let crypt = null; }; - # glibcLocales doesn't build on Darwin - localePath = optionalString (! stdenv.isDarwin) "${pkgs.glibcLocales}/lib/locale/locale-archive"; - pythonPackages = modules // import ./python-packages-generated.nix { inherit pkgs python; inherit (pkgs) stdenv fetchurl; @@ -2107,8 +2104,9 @@ let propagatedBuildInputs = with self; [ self.six ]; + buildInputs = [ pkgs.glibcLocales ]; + preBuild = '' - export LOCALE_ARCHIVE=${localePath} export LC_ALL="en_US.UTF-8" ''; @@ -2821,8 +2819,9 @@ let sha256 = "0qk8fv8cszzqpdi3wl9vvkym1jil502ycn6sic4jrxckw5s9jsfj"; }; + buildInputs = [ pkgs.glibcLocales ]; + preBuild = '' - export LOCALE_ARCHIVE=${localePath} export LC_ALL="en_US.UTF-8" ''; @@ -4066,8 +4065,9 @@ let md5 = "92978492871342ad64e8ae0ccfcf200c"; }; + buildInputs = [ pkgs.glibcLocales ]; + preConfigure = '' - export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive export LC_ALL="en_US.UTF-8" ''; @@ -4833,11 +4833,10 @@ let }; preBuild = '' - export LOCALE_ARCHIVE=${localePath} export LC_ALL="en_US.UTF-8" ''; - buildInputs = with self; [ six ]; + buildInputs = with self; [ six pkgs.glibcLocales ]; meta = with stdenv.lib; { description = "Library collecting some useful snippets"; @@ -5766,7 +5765,6 @@ let doCheck = false; preBuild = '' - export LOCALE_ARCHIVE=${localePath} export LC_ALL="en_US.UTF-8" ''; @@ -5778,7 +5776,7 @@ let ''; buildInputs = with self; [ - pkgs.libjpeg pkgs.freetype pkgs.zlib + pkgs.libjpeg pkgs.freetype pkgs.zlib pkgs.glibcLocales pillow twitter pyfiglet requests arrow dateutil modules.readline pysocks ]; @@ -5965,9 +5963,10 @@ let md5 = "84a117c9a75b86842b0fa5f5c9c767f3"; }; + buildInputs = [ pkgs.glibcLocales ]; + # some files in tests dir include unicode names preBuild = '' - export LOCALE_ARCHIVE=${localePath} export LC_ALL="en_US.UTF-8" ''; @@ -6033,8 +6032,9 @@ let md5 = "9e17a181af72d04a291c9a960bc73d44"; }; + buildInputs = [ pkgs.glibcLocales ]; + preCheck = '' - export LOCALE_ARCHIVE=${localePath} export LC_ALL="en_US.UTF-8" ''; @@ -6965,7 +6965,6 @@ let }; preConfigure = '' - export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive export LC_ALL="en_US.UTF-8" ''; @@ -6973,6 +6972,8 @@ let #buildInputs = [nose mock]; doCheck = false; + buildInputs = [ pkgs.glibcLocales ]; + propagatedBuildInputs = with self; [ jinja2 pygments docutils pytz unidecode six dateutil feedgenerator blinker pillow beautifulsoup4 @@ -7263,10 +7264,11 @@ let url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.bz2"; sha1 = "ad346a18d92c1d95f2295397c7a8a4f489e48851"; }; + + buildInputs = [ pkgs.glibcLocales ]; preCheck = '' export LANG="en_US.UTF-8" - export LOCALE_ARCHIVE=${localePath} ''; meta = { @@ -9298,7 +9300,7 @@ let ''; checkPhase = '' - LOCALE_ARCHIVE=${localePath} LC_ALL="en_US.UTF-8" HOME=$TMPDIR ATLAS="" nosetests + LOCALE_ARCHIVE=${pkgs.glibcLocales} LC_ALL="en_US.UTF-8" HOME=$TMPDIR ATLAS="" nosetests ''; meta = { @@ -9481,11 +9483,10 @@ let sha256 = "099sc7ajpp6hbgrx3c0bl6hhkz1mhnr0ahvc7s4i3f3b7q1zfn7l"; }; - buildInputs = with self; [ pkgs.geos ]; + buildInputs = with self; [ pkgs.geos pkgs.glibcLocales ]; preConfigure = '' export LANG="en_US.UTF-8"; - export LOCALE_ARCHIVE=${localePath} ''; patchPhase = '' @@ -9541,9 +9542,10 @@ let sha256 = "0h1b9mx0snyyybj1x1ga69qssgjzkkgx2rw6nddjhyz1fknf8ywh"; }; + buildInputs = [ pkgs.glibcLocales ]; + preCheck = '' export LANG="en_US.UTF-8" - export LOCALE_ARCHIVE=${localePath} ''; meta = with stdenv.lib; { @@ -9606,10 +9608,9 @@ let preCheck = '' export LANG="en_US.UTF-8" - export LOCALE_ARCHIVE=${localePath} ''; - buildInputs = with self; [ pytest py mock ]; + buildInputs = with self; [ pytest py mock pkgs.glibcLocales ]; meta = with stdenv.lib; { maintainers = [ maintainers.iElectric ]; @@ -10122,7 +10123,6 @@ let version = "1.2.8"; preBuild = '' - export LOCALE_ARCHIVE=${localePath} export LC_ALL="en_US.UTF-8" ''; @@ -10135,7 +10135,7 @@ let sha256 = "0pgi9xg00wcw0m1pv5qp7jv53q38yffcmkf2fj1zlfi2b9c3njid"; }; - buildInputs = with self; [ nose ]; + buildInputs = with self; [ nose pkgs.glibcLocales ]; propagatedBuildInputs = with self; [ six mock ]; From 04be7262a62a413007fe6bf6e917a4e4d0f0df54 Mon Sep 17 00:00:00 2001 From: Andrey Arapov Date: Mon, 19 Jan 2015 10:45:20 +0100 Subject: [PATCH 178/185] nixos/dovecot: added configFile option and default Restart on-failure, PR #5845 Absolute path is required when one has such postfix configuration where he/she needs to specify the actual (real) path to active dovecot config. Without this commit applied, the dovecot is running in such way: /nix/store/hashAAA-dovecot-ver/sbin/dovecot -F -c /nix/store/hashBBB-dovecot2.conf and postfix can't be aware of the value of "hashBBB" via services.postfix.extraConfig = '' ... ''; (it can only be aware of "hashAAA" with ${pkgs.dovecot} parameter) Also enable Restart on-failure. Edit: set RestartSec to 1s --- nixos/modules/services/mail/dovecot.nix | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index 1fb7102e7f3..50ff1b38db1 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -45,8 +45,6 @@ let pop3_uidl_format = %08Xv%08Xu '' + cfg.extraConfig; - confFile = pkgs.writeText "dovecot.conf" dovecotConf; - in { @@ -88,6 +86,12 @@ in description = "Additional entries to put verbatim into Dovecot's config file."; }; + configFile = mkOption { + default = null; + description = "Config file used for the whole dovecot configuration."; + apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf; + }; + mailLocation = mkOption { default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */ example = "maildir:~/mail:INBOX=/var/spool/mail/%u"; @@ -144,10 +148,11 @@ in gid = config.ids.gids.dovecot2; }; - jobs.dovecot2 = + systemd.services.dovecot2 = { description = "Dovecot IMAP/POP3 server"; - startOn = "started networking"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; preStart = '' @@ -155,7 +160,13 @@ in ${pkgs.coreutils}/bin/chown -R ${cfg.user}:${cfg.group} /var/run/dovecot2 ''; - exec = "${pkgs.dovecot}/sbin/dovecot -F -c ${confFile}"; + serviceConfig = { + ExecStart = "${pkgs.dovecot}/sbin/dovecot -F -c ${cfg.configFile}"; + Restart = "on-failure"; + RestartSec = "1s"; + StartLimitInterval = "1min"; + }; + }; environment.systemPackages = [ pkgs.dovecot ]; From 4b0100774a12e5c92753080c3847a2da2923254a Mon Sep 17 00:00:00 2001 From: Longrin Wischnewski Date: Mon, 19 Jan 2015 11:41:18 +0100 Subject: [PATCH 179/185] systemd: extend checkUnitConfig with on-abnormal --- nixos/modules/system/boot/systemd-unit-options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/systemd-unit-options.nix b/nixos/modules/system/boot/systemd-unit-options.nix index 20851c626d7..2f4786c7896 100644 --- a/nixos/modules/system/boot/systemd-unit-options.nix +++ b/nixos/modules/system/boot/systemd-unit-options.nix @@ -58,7 +58,7 @@ let "simple" "forking" "oneshot" "dbus" "notify" "idle" ]) (assertValueOneOf "Restart" [ - "no" "on-success" "on-failure" "on-abort" "always" + "no" "on-success" "on-failure" "on-abnormal" "on-abort" "always" ]) ]; From 547f11f0155ec5d1725fa6c23661dbf6cdc45ede Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 17 Jan 2015 03:23:59 +0100 Subject: [PATCH 180/185] tyxml: update from 3.3.0 to 3.4.0 --- pkgs/development/ocaml-modules/tyxml/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/tyxml/default.nix b/pkgs/development/ocaml-modules/tyxml/default.nix index 265b94392b4..d3a0b3557c5 100644 --- a/pkgs/development/ocaml-modules/tyxml/default.nix +++ b/pkgs/development/ocaml-modules/tyxml/default.nix @@ -1,11 +1,11 @@ -{stdenv, fetchurl, ocaml, findlib, ocaml_oasis, camlp4, uutf}: +{ stdenv, fetchurl, ocaml, findlib, ocaml_oasis, camlp4, uutf }: stdenv.mkDerivation { - name = "tyxml-3.3.0"; + name = "tyxml-3.4.0"; src = fetchurl { - url = http://github.com/ocsigen/tyxml/archive/3.3.0.tar.gz; - sha256 = "0r1hj8qy91i48nd7wj0x2dqrgspqrry5awraxl4pl10vh0mn6pk7"; + url = http://github.com/ocsigen/tyxml/archive/3.4.0.tar.gz; + sha256 = "10hb0b2j33fjqzmx450ns7dmf4pqmx3gyvr6dk99mghqk13cj5ww"; }; buildInputs = [ocaml findlib ocaml_oasis camlp4]; From 763b2a77186fe6a3e9f841a0ffb8a30c5cac76a6 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 18 Jan 2015 12:32:44 +0100 Subject: [PATCH 181/185] merlin: update from 2.0 to 2.1 --- pkgs/development/tools/ocaml/merlin/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix index b20354e76b2..106581b8fea 100644 --- a/pkgs/development/tools/ocaml/merlin/default.nix +++ b/pkgs/development/tools/ocaml/merlin/default.nix @@ -5,11 +5,11 @@ assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00"; stdenv.mkDerivation { - name = "merlin-2.0"; + name = "merlin-2.1"; src = fetchurl { - url = https://github.com/the-lambda-church/merlin/archive/v2.0.tar.gz; - sha256 = "1khvmncj6gfk9p5wl07gp6ii9csc5s1bcv892lkfpfbnsspis7cp"; + url = https://github.com/the-lambda-church/merlin/archive/v2.1.tar.gz; + sha256 = "0rk5ffhr69wbhr50ixgw1vnv0wkhxwh1z3cpbcwkm72cnac74nj6"; }; buildInputs = [ ocaml findlib yojson menhir ] From f366483f36808b064d5503deae5e989fb72087cf Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 19 Jan 2015 15:09:07 +0300 Subject: [PATCH 182/185] Making StumpWM contrib separately available in line with upstream recommendations --- 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 4fd5a5140e2..554c63f8b14 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11079,8 +11079,8 @@ let stp = callPackage ../applications/science/logic/stp {}; + stumpwmContrib = callPackage ../applications/window-managers/stumpwm/contrib.nix { }; stumpwm = callPackage ../applications/window-managers/stumpwm { - stumpwmContrib = callPackage ../applications/window-managers/stumpwm/contrib.nix { }; sbcl = sbcl_1_2_5; lispPackages = lispPackagesFor (wrapLisp sbcl_1_2_5); }; From 134d1a80c6a9dbdfb34c01dfb6850b254872994e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 19 Jan 2015 12:12:28 +0100 Subject: [PATCH 183/185] Add a package set for GHC 7.10.1-rc1 and bump GHC HEAD to 7.11.x. Fixes https://github.com/NixOS/nixpkgs/issues/5836. --- pkgs/development/compilers/ghc/7.10.1.nix | 51 +++++++++++ pkgs/development/compilers/ghc/head.nix | 8 +- ...7.9.x.nix => configuration-ghc-7.10.x.nix} | 2 +- .../configuration-ghc-head.nix | 85 +++++++++++++++++++ pkgs/top-level/haskell-ng.nix | 12 +-- 5 files changed, 148 insertions(+), 10 deletions(-) create mode 100644 pkgs/development/compilers/ghc/7.10.1.nix rename pkgs/development/haskell-modules/{configuration-ghc-7.9.x.nix => configuration-ghc-7.10.x.nix} (98%) create mode 100644 pkgs/development/haskell-modules/configuration-ghc-head.nix diff --git a/pkgs/development/compilers/ghc/7.10.1.nix b/pkgs/development/compilers/ghc/7.10.1.nix new file mode 100644 index 00000000000..f09de480c5d --- /dev/null +++ b/pkgs/development/compilers/ghc/7.10.1.nix @@ -0,0 +1,51 @@ +{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: + +let + + buildMK = '' + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + DYNAMIC_BY_DEFAULT = NO + ''; + +in + +stdenv.mkDerivation rec { + version = "7.10.0.20141222"; + name = "ghc-${version}"; + + src = fetchurl { + url = "https://downloads.haskell.org/~ghc/7.10.1-rc1/ghc-7.10.0.20141222-src.tar.xz"; + sha256 = "0nncvvwksqqz1d991jbag3b4174i275nn0psadriq5hi3px11dkl"; + }; + + buildInputs = [ ghc perl ]; + + preConfigure = '' + echo >mk/build.mk "${buildMK}" + sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure + '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' + export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}" + ''; + + configureFlags = [ + "--with-gcc=${stdenv.cc}/bin/cc" + "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" + ]; + + enableParallelBuilding = true; + + # required, because otherwise all symbols from HSffi.o are stripped, and + # that in turn causes GHCi to abort + stripDebugFlags = [ "-S" "--keep-file-symbols" ]; + + meta = { + homepage = "http://haskell.org/ghc"; + description = "The Glasgow Haskell Compiler"; + maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + inherit (ghc.meta) license platforms; + }; + +} diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index 0f91e8591d1..71b51cf64ff 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ghc, perl, gmp, ncurses, happy, alex }: +{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: let @@ -13,12 +13,12 @@ let in stdenv.mkDerivation rec { - version = "7.10.0.20141222"; + version = "7.11.20150118"; name = "ghc-${version}"; src = fetchurl { - url = "https://downloads.haskell.org/~ghc/7.10.1-rc1/ghc-7.10.0.20141222-src.tar.xz"; - sha256 = "0nncvvwksqqz1d991jbag3b4174i275nn0psadriq5hi3px11dkl"; + url = "http://deb.haskell.org/dailies/2015-01-18/ghc_7.11.20150118.orig.tar.bz2"; + sha256 = "1zy960q2faq03camq2n4834bd748vkc15h83bapswc68dqncqj20"; }; buildInputs = [ ghc perl ]; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix similarity index 98% rename from pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix rename to pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 37ebda6f238..4dfb4ab96b9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -4,7 +4,7 @@ with import ./lib.nix { inherit pkgs; }; self: super: { - # Disable GHC 7.9.x core libraries. + # Disable GHC 7.10.x core libraries. array = null; base = null; binary = null; diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-head.nix new file mode 100644 index 00000000000..4c4065e8889 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-ghc-head.nix @@ -0,0 +1,85 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # Disable GHC 7.11.x core libraries. + array = null; + base = null; + binary = null; + bin-package-db = null; + bytestring = null; + Cabal = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + haskeline = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + terminfo = null; + time = null; + transformers = null; + unix = null; + xhtml = null; + + # We have Cabal 1.22.x. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; }; + + # GHC 7.10.x's Haddock binary cannot generate hoogle files. + # https://ghc.haskell.org/trac/ghc/ticket/9921 + mkDerivation = drv: super.mkDerivation (drv // { doHoogle = false; }); + + # haddock: No input file(s). + nats = dontHaddock super.nats; + + # These used to be core packages in GHC 7.8.x. + old-locale = self.old-locale_1_0_0_7; + old-time = self.old-time_1_1_0_3; + + # We have transformers 4.x + mtl = self.mtl_2_2_1; + transformers-compat = disableCabalFlag super.transformers-compat "three"; + + # We have time 1.5 + aeson = disableCabalFlag super.aeson "old-locale"; + + # Setup: At least the following dependencies are missing: base <4.8 + hspec-expectations = overrideCabal super.hspec-expectations (drv: { + patchPhase = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal"; + }); + utf8-string = overrideCabal super.utf8-string (drv: { + patchPhase = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal"; + }); + + # bos/attoparsec#92 + attoparsec = dontCheck super.attoparsec; + + # test suite hangs silently for at least 10 minutes + split = dontCheck super.split; + + # Test suite fails with some (seemingly harmless) error. + # https://code.google.com/p/scrapyourboilerplate/issues/detail?id=24 + syb = dontCheck super.syb; + + # Test suite has stricter version bounds + retry = dontCheck super.retry; + + # Test suite fails with time >= 1.5 + http-date = dontCheck super.http-date; + + # Version 1.19.5 fails its test suite. + happy = dontCheck super.happy; + + # Test suite hangs silently without consuming any CPU. + # https://github.com/ndmitchell/extra/issues/4 + extra = dontCheck super.extra; + +} diff --git a/pkgs/top-level/haskell-ng.nix b/pkgs/top-level/haskell-ng.nix index 19c70342c1b..220fca90a53 100644 --- a/pkgs/top-level/haskell-ng.nix +++ b/pkgs/top-level/haskell-ng.nix @@ -17,7 +17,8 @@ rec { ghc742 = callPackage ../development/compilers/ghc/7.4.2.nix { ghc = compiler.ghc704Binary; gmp = pkgs.gmp.override { withStatic = true; }; }; ghc763 = callPackage ../development/compilers/ghc/7.6.3.nix { ghc = compiler.ghc704Binary; gmp = pkgs.gmp.override { withStatic = true; }; }; ghc784 = callPackage ../development/compilers/ghc/7.8.4.nix { ghc = compiler.ghc742Binary; gmp = pkgs.gmp.override { withStatic = true; }; }; - ghcHEAD = callPackage ../development/compilers/ghc/head.nix { inherit (packages.ghc784) ghc alex happy; }; + ghc7101 = callPackage ../development/compilers/ghc/7.10.1.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; }; + ghcHEAD = callPackage ../development/compilers/ghc/head.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; }; ghc = compiler.ghc784; }; @@ -45,17 +46,18 @@ rec { ghc = compiler.ghc763; packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.6.x.nix { }; }; - ghc784 = callPackage ../development/haskell-modules { ghc = compiler.ghc784; packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.8.x.nix { }; }; - + ghc7101 = callPackage ../development/haskell-modules { + ghc = compiler.ghc7101; + packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { }; + }; ghcHEAD = callPackage ../development/haskell-modules { ghc = compiler.ghcHEAD; - packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.9.x.nix { }; + packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { }; }; - ghcjs = callPackage ../development/haskell-modules { packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { }; }; From e5703d21a7a2d034ff701dec07e8c5f96f5aeb3d Mon Sep 17 00:00:00 2001 From: wmertens Date: Mon, 19 Jan 2015 14:10:45 +0100 Subject: [PATCH 184/185] Fix glibclocales reference Environment is auto-added if supported on the platform --- pkgs/servers/dict/dictd-wiktionary.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/servers/dict/dictd-wiktionary.nix b/pkgs/servers/dict/dictd-wiktionary.nix index 370bfd39137..42eb3c0757e 100644 --- a/pkgs/servers/dict/dictd-wiktionary.nix +++ b/pkgs/servers/dict/dictd-wiktionary.nix @@ -17,7 +17,6 @@ stdenv.mkDerivation rec { mkdir -p $out/share/dictd/ cd $out/share/dictd - export LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive python -O ${convert} ${data} dictzip wiktionary-en.dict echo en_US.UTF-8 > locale From 7c3fa29e3028e946220252912b5dab50787ce82f Mon Sep 17 00:00:00 2001 From: Wout Mertens Date: Mon, 19 Jan 2015 14:49:10 +0100 Subject: [PATCH 185/185] Fix LOCALE_ARCHIVE handling --- pkgs/development/compilers/pakcs/default.nix | 1 - pkgs/top-level/python-packages.nix | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/pakcs/default.nix b/pkgs/development/compilers/pakcs/default.nix index 433301e7ac0..739804646c2 100644 --- a/pkgs/development/compilers/pakcs/default.nix +++ b/pkgs/development/compilers/pakcs/default.nix @@ -50,7 +50,6 @@ stdenv.mkDerivation rec { buildPhase = '' # Some comments in files are in UTF-8, so include the locale needed by GHC runtime. - export LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive export LC_ALL=en_US.UTF-8 # PAKCS must be build in place due to embedded filesystem references placed by swi. diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cf7d5d865fe..2129e0afe99 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9291,7 +9291,7 @@ let md5 = "d9822ad0238e17b382a3c756ea94fe0d"; }; - buildInputs = with self; [ nose pillow pkgs.gfortran ]; + buildInputs = with self; [ nose pillow pkgs.gfortran pkgs.glibcLocales ]; propagatedBuildInputs = with self; [ numpy scipy pkgs.atlas ]; buildPhase = '' @@ -9300,7 +9300,7 @@ let ''; checkPhase = '' - LOCALE_ARCHIVE=${pkgs.glibcLocales} LC_ALL="en_US.UTF-8" HOME=$TMPDIR ATLAS="" nosetests + LC_ALL="en_US.UTF-8" HOME=$TMPDIR ATLAS="" nosetests ''; meta = {