Merge recent master into staging
Hydra: ?compare=1149952 Conflicts: nixos/doc/manual/configuration.xml (changed split file) nixos/modules/config/users-groups.nix (choosing filterNull instead of inline definition) pkgs/development/libraries/readline/readline6.3.nix (auto-solved)
This commit is contained in:
22
pkgs/development/libraries/SDL2_net/default.nix
Normal file
22
pkgs/development/libraries/SDL2_net/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, SDL2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "SDL2_net-2.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.libsdl.org/projects/SDL_net/release/${name}.tar.gz";
|
||||
sha256 = "d715be30783cc99e541626da52079e308060b21d4f7b95f0224b1d06c1faacab";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [SDL2];
|
||||
|
||||
postInstall = "ln -s $out/include/SDL2/SDL_net.h $out/include/";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "SDL multiplatform networking library";
|
||||
homepage = https://www.libsdl.org/projects/SDL_net;
|
||||
license = licenses.zlib;
|
||||
maintainers = [ maintainers.MP2E ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
@@ -1,11 +1,11 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "boehm-gc-7.2d";
|
||||
name = "boehm-gc-7.2f";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2d.tar.gz;
|
||||
sha256 = "0phwa5driahnpn79zqff14w9yc8sn3599cxz91m78hqdcpl0mznr";
|
||||
url = http://www.hboehm.info/gc/gc_source/gc-7.2f.tar.gz;
|
||||
sha256 = "119x7p1cqw40mpwj80xfq879l9m1dkc7vbc1f3bz3kvkf8bf6p16";
|
||||
};
|
||||
|
||||
configureFlags = "--enable-cplusplus";
|
||||
|
||||
@@ -38,7 +38,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
homepage = "http://boost.org/";
|
||||
description = "Boost C++ Library Collection";
|
||||
description = "Collection of C++ libraries";
|
||||
license = "boost-license";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||
|
||||
@@ -44,7 +44,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
homepage = "http://boost.org/";
|
||||
description = "Boost C++ Library Collection";
|
||||
description = "Collection of C++ libraries";
|
||||
license = "boost-license";
|
||||
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
|
||||
@@ -45,7 +45,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
homepage = "http://boost.org/";
|
||||
description = "Boost C++ Library Collection";
|
||||
description = "Collection of C++ libraries";
|
||||
license = "boost-license";
|
||||
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "GNU ccRTP, an implementation of the IETF real-time transport protocol (RTP)";
|
||||
description = "An implementation of the IETF real-time transport protocol (RTP)";
|
||||
homepage = http://www.gnu.org/software/ccrtp/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with stdenv.lib.maintainers; [ marcweber ];
|
||||
|
||||
@@ -29,7 +29,7 @@ rec {
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
meta = {
|
||||
description = "CELT - low-delay audio codec";
|
||||
description = "Low-delay audio codec";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = http://heasarc.gsfc.nasa.gov/fitsio/;
|
||||
|
||||
description = "CFITSIO, a library for reading and writing FITS data files";
|
||||
description = "Library for reading and writing FITS data files";
|
||||
|
||||
longDescription =
|
||||
'' CFITSIO is a library of C and Fortran subroutines for reading and
|
||||
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Check, a unit testing framework for C";
|
||||
description = "Unit testing framework for C";
|
||||
|
||||
longDescription =
|
||||
'' Check is a unit testing framework for C. It features a simple
|
||||
|
||||
@@ -34,6 +34,6 @@ rec {
|
||||
|
||||
name = "chipmunk-" + version;
|
||||
meta = {
|
||||
description = "Chipmunk 2D physics engine";
|
||||
description = "2D physics engine";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, cmake, fftw, boost }:
|
||||
{ stdenv, fetchurl, cmake, ffmpeg, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chromaprint-${version}";
|
||||
@@ -9,11 +9,17 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "04nd8xmy4kgnpfffj6hw893f80bwhp43i01zpmrinn3497mdf53b";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake fftw boost ];
|
||||
buildInputs = [ cmake ffmpeg boost ];
|
||||
|
||||
meta = {
|
||||
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
|
||||
|
||||
postInstall = "installBin examples/fpcalc";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://acoustid.org/chromaprint";
|
||||
description = "AcoustID audio fingerprinting library";
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ emery ];
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "CLooG, the Chunky Loop Generator";
|
||||
description = "Library that generates loops for scanning polyhedra";
|
||||
|
||||
longDescription = ''
|
||||
CLooG is a free software library to generate code for scanning
|
||||
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
postBuild = "rm -rf $out/share/gtk-doc";
|
||||
|
||||
meta = {
|
||||
description = "Clutter-GST";
|
||||
description = "GStreamer bindings for clutter";
|
||||
|
||||
homepage = http://www.clutter-project.org/;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
#doCheck = true; # no tests possible without a display
|
||||
|
||||
meta = {
|
||||
description = "Clutter, a library for creating fast, dynamic graphical user interfaces";
|
||||
description = "Library for creating fast, dynamic graphical user interfaces";
|
||||
|
||||
longDescription =
|
||||
'' Clutter is free software library for creating fast, compelling,
|
||||
|
||||
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/browndeer/coprthr/archive/stable-${version}.zip";
|
||||
sha256 = "042aykmcxhdpck0j6k5rcp6a0b5i377fv2nz96v1bpfhzxd1mjwg";
|
||||
sha256 = "0ilx4v1ydppjnq1i0z5j0x4lmi29z39sappar7c0wqady0b5dpz9";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
@@ -33,5 +33,6 @@ stdenv.mkDerivation rec {
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "FOX is a C++ based class library for building Graphical User Interfaces";
|
||||
description = "C++ based class library for building Graphical User Interfaces";
|
||||
longDescription = ''
|
||||
FOX stands for Free Objects for X.
|
||||
It is a C++ based class library for building Graphical User Interfaces.
|
||||
|
||||
@@ -42,7 +42,7 @@ stdenv.mkDerivation (rec {
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "GNU gettext, a well integrated set of translation tools and documentation";
|
||||
description = "Well integrated set of translation tools and documentation";
|
||||
|
||||
longDescription = ''
|
||||
Usually, programs are written and documented in English, and use
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{stdenv, fetchurl, cmake, zlib, python}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.20.0";
|
||||
version = "0.21.1";
|
||||
name = "libgit2-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
name = "${name}.tar.gz";
|
||||
url = "https://github.com/libgit2/libgit2/tarball/v${version}";
|
||||
sha256 = "1iyncz8fqazw683dxjls3lf5pw3f5ma8kachkvjz7dsq57wxllbj";
|
||||
sha256 = "0afbvcsryg7bsmbfj23l09b1xngkmqhf043njl8wm44qslrxibkz";
|
||||
};
|
||||
|
||||
cmakeFlags = "-DTHREADSAFE=ON";
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
assert stdenv.gcc.gcc != null;
|
||||
|
||||
# TODO:
|
||||
# * Add gio-module-fam
|
||||
# Problem: cyclic dependency on gamin
|
||||
@@ -49,7 +51,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1d98mbqjmc34s8095lkw1j1bwvnnkw9581yfvjaikjvfjsaz29qd";
|
||||
};
|
||||
|
||||
patches = optional stdenv.isDarwin ./darwin-compilation.patch;
|
||||
patches = optional stdenv.isDarwin ./darwin-compilation.patch ++ optional doCheck ./skip-timer-test.patch;
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
@@ -105,7 +107,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GLib, a C library of programming buildings blocks";
|
||||
description = "C library of programming buildings blocks";
|
||||
homepage = http://www.gtk.org/;
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ lovek323 raskin urkud ];
|
||||
|
||||
17
pkgs/development/libraries/glib/skip-timer-test.patch
Normal file
17
pkgs/development/libraries/glib/skip-timer-test.patch
Normal file
@@ -0,0 +1,17 @@
|
||||
Description: Skip test which performs some unreliable floating point comparisons
|
||||
Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=722604
|
||||
|
||||
Index: b/glib/tests/timer.c
|
||||
===================================================================
|
||||
--- a/glib/tests/timer.c
|
||||
+++ b/glib/tests/timer.c
|
||||
@@ -203,7 +203,7 @@
|
||||
{
|
||||
g_test_init (&argc, &argv, NULL);
|
||||
|
||||
- g_test_add_func ("/timer/basic", test_timer_basic);
|
||||
+/* g_test_add_func ("/timer/basic", test_timer_basic);*/
|
||||
- g_test_add_func ("/timer/stop", test_timer_stop);
|
||||
+/* g_test_add_func ("/timer/stop", test_timer_stop);*/
|
||||
g_test_add_func ("/timer/continue", test_timer_continue);
|
||||
g_test_add_func ("/timer/reset", test_timer_reset);
|
||||
31
pkgs/development/libraries/glibc/2.19/multi.nix
Normal file
31
pkgs/development/libraries/glibc/2.19/multi.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{ runCommand, glibc, glibc32
|
||||
}:
|
||||
|
||||
runCommand "${glibc.name}-multi"
|
||||
{ inherit glibc32;
|
||||
glibc64 = glibc;
|
||||
}
|
||||
''
|
||||
mkdir -p $out
|
||||
ln -s $glibc64/* $out/
|
||||
|
||||
rm $out/lib $out/lib64
|
||||
mkdir -p $out/lib
|
||||
ln -s $glibc64/lib/* $out/lib
|
||||
ln -s $glibc32/lib $out/lib/32
|
||||
ln -s lib $out/lib64
|
||||
|
||||
# fixing ldd RLTDLIST
|
||||
rm $out/bin
|
||||
cp -rs $glibc64/bin $out
|
||||
chmod u+w $out/bin
|
||||
rm $out/bin/ldd
|
||||
sed -e "s|^RTLDLIST=.*$|RTLDLIST=\"$out/lib/ld-2.19.so $out/lib/32/ld-linux.so.2\"|g" \
|
||||
$glibc64/bin/ldd > $out/bin/ldd
|
||||
chmod 555 $out/bin/ldd
|
||||
|
||||
rm $out/include
|
||||
cp -rs $glibc32/include $out
|
||||
chmod -R u+w $out/include
|
||||
cp -rsf $glibc64/include $out
|
||||
''
|
||||
@@ -11,6 +11,6 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/google-glog/;
|
||||
license = "BSD";
|
||||
description = "The glog library implements application-level logging.";
|
||||
description = "Library for application-level logging";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "GMP, the GNU multiple precision arithmetic library";
|
||||
description = "GNU multiple precision arithmetic library";
|
||||
|
||||
longDescription =
|
||||
'' GMP is a free library for arbitrary precision arithmetic, operating
|
||||
|
||||
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "GMP, the GNU multiple precision arithmetic library";
|
||||
description = "GNU multiple precision arithmetic library";
|
||||
|
||||
longDescription =
|
||||
'' GMP is a free library for arbitrary precision arithmetic, operating
|
||||
|
||||
@@ -29,7 +29,7 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://gmplib.org/";
|
||||
description = "GMP, the GNU multiple precision arithmetic library";
|
||||
description = "GNU multiple precision arithmetic library";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
longDescription =
|
||||
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "GNU GSS Generic Security Service";
|
||||
description = "Generic Security Service";
|
||||
|
||||
longDescription =
|
||||
'' GSS is an implementation of the Generic Security Service Application
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
homepage = "http://gstreamer.freedesktop.org/modules/gnonlin.html";
|
||||
description = "http://gstreamer.freedesktop.org/modules/gnonlin.html";
|
||||
description = "Gstreamer Non-Linear Multimedia Editing Plugins";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = http://gstreamer.freedesktop.org;
|
||||
|
||||
description = "GStreamer, a library for constructing graphs of media-handling components";
|
||||
description = "Library for constructing graphs of media-handling components";
|
||||
|
||||
longDescription = ''
|
||||
GStreamer is a library for constructing graphs of media-handling
|
||||
|
||||
@@ -37,6 +37,13 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postInstall = "rm -rf $out/share/gtk-doc";
|
||||
|
||||
passthru = {
|
||||
gtkExeEnvPostBuild = ''
|
||||
rm $out/lib/gtk-2.0/2.10.0/immodules.cache
|
||||
$out/bin/gtk-query-immodules-2.0 $out/lib/gtk-2.0/2.10.0/immodules/*.so > $out/lib/gtk-2.0/2.10.0/immodules.cache
|
||||
''; # workaround for bug of nix-mode for Emacs */ '';
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A multi-platform toolkit for creating graphical user interfaces";
|
||||
homepage = http://www.gtk.org/;
|
||||
|
||||
@@ -38,6 +38,13 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postInstall = "rm -rf $out/share/gtk-doc";
|
||||
|
||||
passthru = {
|
||||
gtkExeEnvPostBuild = ''
|
||||
rm $out/lib/gtk-3.0/3.0.0/immodules.cache
|
||||
$out/bin/gtk-query-immodules-3.0 $out/lib/gtk-3.0/3.0.0/immodules/*.so > $out/lib/gtk-3.0/3.0.0/immodules.cache
|
||||
''; # workaround for bug of nix-mode for Emacs */ '';
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A multi-platform toolkit for creating graphical user interfaces";
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = http://trac.bjourne.webfactional.com/;
|
||||
|
||||
description = "The GtkImageView image viewer widget for GTK+";
|
||||
description = "Image viewer widget for GTK+";
|
||||
|
||||
longDescription =
|
||||
'' GtkImageView is a simple image viewer widget for GTK+. Similar to
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
homepage = http://helm.cs.unibo.it/mml-widget/;
|
||||
description = "GtkMathView is a C++ rendering engine for MathML documents";
|
||||
description = "C++ rendering engine for MathML documents";
|
||||
license = stdenv.lib.licenses.lgpl3Plus;
|
||||
maintainers = [ stdenv.lib.maintainers.roconnor ];
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gupnp.org/;
|
||||
description = "GUPnP is an implementation of the UPnP specification.";
|
||||
description = "An implementation of the UPnP specification";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, cpphs, JuicyPixels, linear, OpenGL, OpenGLRaw
|
||||
{ cabal, cpphs, filepath, JuicyPixels, linear, OpenGL, OpenGLRaw
|
||||
, transformers, vector
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "GLUtil";
|
||||
version = "0.8";
|
||||
sha256 = "00r9gmwsb9gx6bcc012rhz0z0hj3my8k1i0yjnaw0jmlqswm45h8";
|
||||
version = "0.8.1";
|
||||
sha256 = "026w6rsgs0vmjx9fj4x3r93rifdyjygb83spcwmch31a7qng6l7w";
|
||||
buildDepends = [
|
||||
cpphs JuicyPixels linear OpenGL OpenGLRaw transformers vector
|
||||
cpphs filepath JuicyPixels linear OpenGL OpenGLRaw transformers
|
||||
vector
|
||||
];
|
||||
buildTools = [ cpphs ];
|
||||
meta = {
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, caseInsensitive, conduit, conduitExtra, deepseq, httpdShed
|
||||
, httpTypes, HUnit, mtl, network, parsec, pureMD5, split
|
||||
, testFramework, testFrameworkHunit, wai, warp
|
||||
, httpTypes, HUnit, mtl, network, networkUri, parsec, pureMD5
|
||||
, split, testFramework, testFrameworkHunit, wai, warp
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "HTTP";
|
||||
version = "4000.2.17";
|
||||
sha256 = "1701mgf1gw00nxd70kkr86yl80qxy63rpqky2g9m2nfr6y4y5b59";
|
||||
buildDepends = [ mtl network parsec ];
|
||||
version = "4000.2.18";
|
||||
sha256 = "1jn0ikbdwhd32qjwpnsmpnmy0dxhmwfhf8851ifxik91fn7j5j4k";
|
||||
buildDepends = [ mtl network networkUri parsec ];
|
||||
testDepends = [
|
||||
caseInsensitive conduit conduitExtra deepseq httpdShed httpTypes
|
||||
HUnit mtl network pureMD5 split testFramework testFrameworkHunit
|
||||
wai warp
|
||||
HUnit mtl network networkUri pureMD5 split testFramework
|
||||
testFrameworkHunit wai warp
|
||||
];
|
||||
doCheck = false;
|
||||
noHaddock = self.stdenv.lib.versionOlder self.ghc.version "6.11";
|
||||
@@ -11,5 +11,6 @@ cabal.mkDerivation (self: {
|
||||
description = "Random-number generation monad";
|
||||
license = "unknown";
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
};
|
||||
})
|
||||
15
pkgs/development/libraries/haskell/MonadRandom/0.2.0.1.nix
Normal file
15
pkgs/development/libraries/haskell/MonadRandom/0.2.0.1.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, mtl, random, transformers }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "MonadRandom";
|
||||
version = "0.2.0.1";
|
||||
sha256 = "1689302z053zhcr46w5q3a57kd6z365kkgzxh638gcakzzk3pmwm";
|
||||
buildDepends = [ mtl random transformers ];
|
||||
meta = {
|
||||
description = "Random-number generation monad";
|
||||
license = "unknown";
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "auto-update";
|
||||
version = "0.1.1.1";
|
||||
sha256 = "0ksclbh3d7p2511ji86ind8f6jrh58mz61mc441kfz51ippkdk59";
|
||||
version = "0.1.1.2";
|
||||
sha256 = "0901zqky70wyxl17vwz6smhnpsfjnsk0f2xqiyz902vl7apx66c6";
|
||||
testDepends = [ hspec ];
|
||||
meta = {
|
||||
homepage = "https://github.com/yesodweb/wai";
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "aws";
|
||||
version = "0.10.2";
|
||||
sha256 = "15yr06z54wxnl37a94515ajlxrb7z9kii5dd0ssan32izh4nfrl2";
|
||||
version = "0.10.3";
|
||||
sha256 = "042vx5nhafvgw0crymkw8pyhiawhpxwj03n1k538y2wr181hmz5f";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "cabal-cargs";
|
||||
version = "0.7";
|
||||
sha256 = "1dzmvwmb9sxwdgkzszhk9d5qvq2alnqmprx83dlb17sdi6f9jns1";
|
||||
version = "0.7.1";
|
||||
sha256 = "0y6v663mw4giwypdv34qr2l2fy1q7zdjvgw39m16sjna5lbwvm1n";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "cabal-lenses";
|
||||
version = "0.3";
|
||||
sha256 = "13nx9cn81cx9cj7fk07akqvz4qkl49dlgb5wl5wanag6bafa6vhl";
|
||||
version = "0.3.1";
|
||||
sha256 = "17piwqyzd33shp12qa6j4s579rrs34l44x19p2nzz69anhc4g1j7";
|
||||
buildDepends = [ Cabal lens unorderedContainers ];
|
||||
meta = {
|
||||
description = "Lenses and traversals for the Cabal library";
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "compdata";
|
||||
version = "0.8.1.3";
|
||||
sha256 = "0rnvw5bdypl6i2k1wnc727a17hapl4hs7n208h16ngk075841gpb";
|
||||
version = "0.9";
|
||||
sha256 = "1wk9vj834l3fc64fcsrgc9hz5f2z7461hs8lv1ldkfsixx4mxyqc";
|
||||
buildDepends = [
|
||||
deepseq derive mtl QuickCheck thExpandSyns transformers treeView
|
||||
];
|
||||
|
||||
@@ -7,18 +7,18 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "diagrams-cairo";
|
||||
version = "1.2";
|
||||
sha256 = "0vzjp1i5hk971r7f55gpdl0jibrjg9j4ny7p408kb8zl2ynlxv6l";
|
||||
version = "1.2.0.1";
|
||||
sha256 = "0y7llxxs34i814nc3c79ykv75znplzqq7njvq7a5fyxl81ji0z4c";
|
||||
buildDepends = [
|
||||
cairo colour dataDefaultClass diagramsCore diagramsLib filepath
|
||||
hashable JuicyPixels lens mtl optparseApplicative pango split
|
||||
statestack time transformers vector
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/diagrams";
|
||||
description = "Cairo backend for diagrams drawing EDSL";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "diagrams-contrib";
|
||||
version = "1.1.2";
|
||||
sha256 = "1gljmzlhc6vck5lcsq9lhf2k4dik5pp62k85y2kkxgq0mxnmqf0g";
|
||||
version = "1.1.2.1";
|
||||
sha256 = "05jsqc9wm87hpnaclzfa376m5z8lnp4qgll6lqnfa5m49cqcabki";
|
||||
buildDepends = [
|
||||
arithmoi circlePacking colour dataDefault dataDefaultClass
|
||||
diagramsCore diagramsLib forceLayout lens MonadRandom mtl parsec
|
||||
@@ -20,11 +20,11 @@ cabal.mkDerivation (self: {
|
||||
diagramsLib HUnit QuickCheck testFramework testFrameworkHunit
|
||||
testFrameworkQuickcheck2
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/diagrams/";
|
||||
description = "Collection of user contributions to diagrams EDSL";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -6,17 +6,17 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "diagrams-core";
|
||||
version = "1.2.0.1";
|
||||
sha256 = "01rzd2zdg0pv7b299z6s6i6l6xggiszb2qs00vh5dbss295n1sps";
|
||||
version = "1.2.0.2";
|
||||
sha256 = "10glkp05pnxx7c7f33654rjcvahslxx010v36wf6zsa8nscdrccn";
|
||||
buildDepends = [
|
||||
dualTree lens MemoTrie monoidExtras newtype semigroups vectorSpace
|
||||
vectorSpacePoints
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/diagrams";
|
||||
description = "Core libraries for diagrams EDSL";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -8,19 +8,19 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "diagrams-lib";
|
||||
version = "1.2.0.1";
|
||||
sha256 = "0p7rq97hnal90dciq1nln1s16kdb1xk9rrwaxhkxqr6kjjr2njf4";
|
||||
version = "1.2.0.2";
|
||||
sha256 = "0ylrsldq7nmqvprgwbw7bkwp31zhgbyxjx462lcayk0lbhqb5k5p";
|
||||
buildDepends = [
|
||||
active colour dataDefaultClass diagramsCore dualTree filepath
|
||||
fingertree hashable intervals JuicyPixels lens MemoTrie
|
||||
monoidExtras optparseApplicative safe semigroups tagged vectorSpace
|
||||
vectorSpacePoints
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/diagrams";
|
||||
description = "Embedded domain-specific language for declarative graphics";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "diagrams-postscript";
|
||||
version = "1.1";
|
||||
sha256 = "0l077libp6h8ka9ygkmajvzdymndlhx60nb5f6jaqvp7yx80hz3m";
|
||||
version = "1.1.0.1";
|
||||
sha256 = "03747g5y33kzf76hs4y0ak9q6b79r92z130b03bcc2892na62ad6";
|
||||
buildDepends = [
|
||||
dataDefaultClass diagramsCore diagramsLib dlist filepath hashable
|
||||
lens monoidExtras mtl semigroups split vectorSpace
|
||||
@@ -18,7 +18,6 @@ cabal.mkDerivation (self: {
|
||||
description = "Postscript backend for diagrams drawing EDSL";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
broken = true;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -7,18 +7,18 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "diagrams-svg";
|
||||
version = "1.1";
|
||||
sha256 = "0b34rh35pay4x8dg0i06xvr3d865hbxzj2x77jly9l1j7sa1qaj1";
|
||||
version = "1.1.0.1";
|
||||
sha256 = "02krwy1v7rhcgg0ps7kd8ym50kh48dcfqm2xz3k6hr32jzqa5hlw";
|
||||
buildDepends = [
|
||||
base64Bytestring blazeMarkup blazeSvg colour diagramsCore
|
||||
diagramsLib filepath hashable JuicyPixels lens monoidExtras mtl
|
||||
split time vectorSpace
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/diagrams/";
|
||||
description = "SVG backend for diagrams drawing EDSL";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, aeson, digestiveFunctors, HUnit, lens, mtl, safe
|
||||
, scientific, tasty, tastyHunit, text, vector
|
||||
{ cabal, aeson, digestiveFunctors, HUnit, lens, lensAeson, mtl
|
||||
, safe, scientific, tasty, tastyHunit, text, vector
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "digestive-functors-aeson";
|
||||
version = "1.1.10";
|
||||
sha256 = "0ar165rksnj09sb58qx5hm71kn8gzm936ixmfhf7sqbw2kcbw4nx";
|
||||
buildDepends = [ aeson digestiveFunctors lens safe text vector ];
|
||||
version = "1.1.11";
|
||||
sha256 = "0jf62ssyc317x070xkjdnfbb2g8mb19a83hig08j95vyqwjgk4vg";
|
||||
buildDepends = [
|
||||
aeson digestiveFunctors lens lensAeson safe text vector
|
||||
];
|
||||
testDepends = [
|
||||
aeson digestiveFunctors HUnit mtl scientific tasty tastyHunit text
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://github.com/ocharles/digestive-functors-aeson";
|
||||
description = "Run digestive-functors forms against JSON";
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "dns";
|
||||
version = "1.4.3";
|
||||
sha256 = "15v24f338w71dn3cxrzwyg04hk3vxvrvswbv3nnf2ggjgg46yq3i";
|
||||
version = "1.4.4";
|
||||
sha256 = "1g910rlahvrhjlg6jl7gpya1y3mqkkpmihfr2jnmmlzykll10dnd";
|
||||
buildDepends = [
|
||||
attoparsec binary blazeBuilder conduit conduitExtra iproute mtl
|
||||
network random resourcet
|
||||
@@ -21,5 +21,6 @@ cabal.mkDerivation (self: {
|
||||
description = "DNS library in Haskell";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -7,13 +7,12 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "engine-io";
|
||||
version = "1.1.0";
|
||||
sha256 = "0l2jwgzi22ky13k9kmqhn15zyxyg5gr167rkywb458n1si4jr3jh";
|
||||
version = "1.1.2";
|
||||
sha256 = "1ry6rklrij7x1z8mw31vh41lc0axzj8l0lhmjsmhs554nv50062f";
|
||||
buildDepends = [
|
||||
aeson async attoparsec base64Bytestring either monadLoops mwcRandom
|
||||
stm text transformers unorderedContainers vector websockets
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://github.com/ocharles/engine.io";
|
||||
description = "A Haskell implementation of Engine.IO";
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, singletons, tagged, void }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "equational-reasoning";
|
||||
version = "0.2.0.4";
|
||||
sha256 = "1f94y6h7qg7rck7rxf6j8sygkh1xmfk0z1lr71inx6s74agjyc9j";
|
||||
buildDepends = [ singletons tagged void ];
|
||||
meta = {
|
||||
description = "Proof assistant for Haskell using DataKinds & PolyKinds";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
})
|
||||
@@ -4,15 +4,15 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "force-layout";
|
||||
version = "0.3.0.6";
|
||||
sha256 = "0qmzz9gbzf1jdk08w3nhnw7l3n5bq5sw5k4r0mdc5y11m38xpgm4";
|
||||
version = "0.3.0.7";
|
||||
sha256 = "1kq6fg90yj735rpipspykvkmzs2cnwyib6pkph58523bvahgi2dy";
|
||||
buildDepends = [
|
||||
dataDefaultClass lens vectorSpace vectorSpacePoints
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
description = "Simple force-directed layout";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ bergey ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -21,5 +21,6 @@ cabal.mkDerivation (self: {
|
||||
description = "Create games for free";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
|
||||
{ cabal, Cabal, convertible, deepseq, djinnGhc, doctest, emacs
|
||||
, filepath, ghcPaths, ghcSybUtils, haskellSrcExts, hlint, hspec
|
||||
, ioChoice, monadControl, monadJournal, mtl, split, syb, text, time
|
||||
, transformers, transformersBase
|
||||
, ioChoice, makeWrapper, monadControl, monadJournal, mtl, split
|
||||
, syb, text, time, transformers, transformersBase
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ghc-mod";
|
||||
version = "5.0.1";
|
||||
sha256 = "01awsi5rfzq6433shfvvnr69ifxb7h8v90mlknxv3dl34zmrhv19";
|
||||
version = "5.0.1.1";
|
||||
sha256 = "0qyl1653dj14ap3035kjj7xl8rsmgpwh32bj2lnwrmdm2223m8a3";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@@ -22,7 +22,7 @@ cabal.mkDerivation (self: {
|
||||
ghcSybUtils haskellSrcExts hlint hspec ioChoice monadControl
|
||||
monadJournal mtl split syb text time transformers transformersBase
|
||||
];
|
||||
buildTools = [ emacs ];
|
||||
buildTools = [ emacs makeWrapper ];
|
||||
doCheck = false;
|
||||
configureFlags = "--datasubdir=${self.pname}-${self.version}";
|
||||
postInstall = ''
|
||||
@@ -32,20 +32,10 @@ cabal.mkDerivation (self: {
|
||||
cd ..
|
||||
ensureDir "$out/share/emacs"
|
||||
mv $pname-$version emacs/site-lisp
|
||||
mv $out/bin/ghc-mod $out/bin/.ghc-mod-wrapped
|
||||
cat - > $out/bin/ghc-mod <<EOF
|
||||
#! ${self.stdenv.shell}
|
||||
eval exec $out/bin/.ghc-mod-wrapped \$( ${self.ghc.GHCGetPackages} ${self.ghc.version} | tr " " "\n" | tail -n +2 | paste -d " " - - | sed 's/.*/-g "&"/' | tr "\n" " ") "\$@"
|
||||
EOF
|
||||
|
||||
mv $out/bin/ghc-modi $out/bin/.ghc-modi-wrapped
|
||||
cat - > $out/bin/ghc-modi <<EOF
|
||||
#! ${self.stdenv.shell}
|
||||
eval exec $out/bin/.ghc-modi-wrapped \$( ${self.ghc.GHCGetPackages} ${self.ghc.version} | tr " " "\n" | tail -n +2 | paste -d " " - - | sed 's/.*/-g "&"/' | tr "\n" " ") "\$@"
|
||||
EOF
|
||||
|
||||
chmod +x $out/bin/ghc-mod
|
||||
chmod +x $out/bin/ghc-modi
|
||||
wrapProgram $out/bin/ghc-mod --add-flags \
|
||||
"\$(${self.ghc.GHCGetPackages} ${self.ghc.version} \"\$(dirname \$0)\" \"-g -package-db -g\")"
|
||||
wrapProgram $out/bin/ghc-modi --add-flags \
|
||||
"\$(${self.ghc.GHCGetPackages} ${self.ghc.version} \"\$(dirname \$0)\" \"-g -package-db -g\")"
|
||||
'';
|
||||
meta = {
|
||||
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ghc-syb-utils";
|
||||
version = "0.2.1.2";
|
||||
sha256 = "12k6a782gv06gmi6dvskzv4ihz54izhqslwa9cgilhsihw557i9p";
|
||||
version = "0.2.2";
|
||||
sha256 = "03r4x3a4hjivxladlw23jk8s2pgfh85lqf196ks1ngyg6ih1g6lk";
|
||||
buildDepends = [ syb ];
|
||||
meta = {
|
||||
homepage = "http://github.com/nominolo/ghc-syb";
|
||||
|
||||
@@ -7,18 +7,18 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "github";
|
||||
version = "0.10.0";
|
||||
sha256 = "1llwzkhyw5wazczpiv3w8dq4l7j3q49ii64yh7cxwakkp2h5yiwb";
|
||||
version = "0.11.0";
|
||||
sha256 = "13p0iplxr85fvgx5lird76xchmhh7xpddq900qr02kbvn5mqv607";
|
||||
buildDepends = [
|
||||
aeson attoparsec caseInsensitive conduit dataDefault failure
|
||||
hashable HTTP httpConduit httpTypes network text time
|
||||
unorderedContainers vector
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "https://github.com/fpco/github";
|
||||
description = "Access to the Github API, v3";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -1,23 +1,26 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, base64Bytestring, blazeHtml, ConfigFile, feed, filepath
|
||||
, filestore, ghcPaths, happstackServer, highlightingKate, hslogger
|
||||
, HStringTemplate, HTTP, json, mtl, network, pandoc, pandocTypes
|
||||
, parsec, random, recaptcha, safe, SHA, split, syb, tagsoup, text
|
||||
, time, uri, url, utf8String, xhtml, xml, xssSanitize, zlib
|
||||
{ cabal, aeson, base64Bytestring, blazeHtml, ConfigFile, feed
|
||||
, filepath, filestore, ghcPaths, happstackServer, highlightingKate
|
||||
, hoauth2, hslogger, HStringTemplate, HTTP, httpClient
|
||||
, httpClientTls, json, mtl, network, networkUri, pandoc
|
||||
, pandocTypes, parsec, random, recaptcha, safe, SHA, split, syb
|
||||
, tagsoup, text, time, uri, url, utf8String, xhtml, xml
|
||||
, xssSanitize, zlib
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "gitit";
|
||||
version = "0.10.4";
|
||||
sha256 = "1z06v1pamrpm70zisrw3z3kv0d19dsjkmm75pvj5yxkacxv7qk7n";
|
||||
version = "0.10.5";
|
||||
sha256 = "0p2x2l729rwals0kx8ymk6j3fqvlyjvrj6mmh8slcg93h4smwb4j";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
base64Bytestring blazeHtml ConfigFile feed filepath filestore
|
||||
ghcPaths happstackServer highlightingKate hslogger HStringTemplate
|
||||
HTTP json mtl network pandoc pandocTypes parsec random recaptcha
|
||||
safe SHA split syb tagsoup text time uri url utf8String xhtml xml
|
||||
aeson base64Bytestring blazeHtml ConfigFile feed filepath filestore
|
||||
ghcPaths happstackServer highlightingKate hoauth2 hslogger
|
||||
HStringTemplate HTTP httpClient httpClientTls json mtl network
|
||||
networkUri pandoc pandocTypes parsec random recaptcha safe SHA
|
||||
split syb tagsoup text time uri url utf8String xhtml xml
|
||||
xssSanitize zlib
|
||||
];
|
||||
jailbreak = true;
|
||||
@@ -26,7 +29,5 @@ cabal.mkDerivation (self: {
|
||||
description = "Wiki using happstack, git or darcs, and pandoc";
|
||||
license = "GPL";
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
broken = true;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
, HUnit, lrucache, mtl, network, pandoc, pandocCiteproc, parsec
|
||||
, QuickCheck, random, regexBase, regexTdfa, snapCore, snapServer
|
||||
, systemFilepath, tagsoup, testFramework, testFrameworkHunit
|
||||
, testFrameworkQuickcheck2, text, time
|
||||
, testFrameworkQuickcheck2, text, time, utillinux
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hakyll";
|
||||
version = "4.5.3.0";
|
||||
sha256 = "11ibpjff1zkihpxydlzvvzbgd1vxswi4c7g3lr0hhaaw89bikypy";
|
||||
version = "4.5.4.0";
|
||||
sha256 = "16srkm2fxjw1xg7zaikn49zz4xsz9awddnjm6ibv522k3xf3l24c";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@@ -25,15 +25,13 @@ cabal.mkDerivation (self: {
|
||||
filepath fsnotify httpConduit httpTypes HUnit lrucache mtl network
|
||||
pandoc pandocCiteproc parsec QuickCheck random regexBase regexTdfa
|
||||
snapCore snapServer systemFilepath tagsoup testFramework
|
||||
testFrameworkHunit testFrameworkQuickcheck2 text time
|
||||
testFrameworkHunit testFrameworkQuickcheck2 text time utillinux
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "http://jaspervdj.be/hakyll";
|
||||
description = "A static website compiler library";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
broken = true;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -20,5 +20,7 @@ cabal.mkDerivation (self: {
|
||||
description = "A testing library for command line applications";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
broken = true;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -12,5 +12,6 @@ cabal.mkDerivation (self: {
|
||||
description = "Library to handle the details of writing daemons for UNIX";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ aycanirican ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -1,21 +1,23 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, filepath, hspec, HUnit, parsec, split, template
|
||||
{ cabal, doctest, filepath, hspec, HUnit, parsec, split, template
|
||||
, temporaryRc, text, time
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hi";
|
||||
version = "0.0.8.1";
|
||||
sha256 = "14g1yfc6cv89whx6w0di5nayifc0xfvll9h07kkqxaajyfw6s32y";
|
||||
version = "0.0.8.2";
|
||||
sha256 = "0h94wjxdr6g6n3rvkn1xsjqr49p9fgidmraifvz5mzryn6rmd18r";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
filepath parsec split template temporaryRc text time
|
||||
];
|
||||
testDepends = [
|
||||
filepath hspec HUnit parsec split template temporaryRc text time
|
||||
doctest filepath hspec HUnit parsec split template temporaryRc text
|
||||
time
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/fujimura/hi";
|
||||
description = "Generate scaffold for cabal project";
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hplayground";
|
||||
version = "0.1.0.2";
|
||||
sha256 = "13lzw0fhv305zh2ry0d74y5k7vxppjlwsb8vi3iri5zpkkdpfhij";
|
||||
version = "0.1.0.3";
|
||||
sha256 = "1k46b94n9wkbh7374mjyg5jnwxxrhj8ai53q3r4lysx1rzgw7ak6";
|
||||
buildDepends = [
|
||||
dataDefault hasteCompiler hastePerch monadsTf transformers
|
||||
];
|
||||
|
||||
@@ -6,15 +6,14 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hsimport";
|
||||
version = "0.5";
|
||||
sha256 = "18rhldw6vbkjcpx373m784sppadccm2b3xx3zzr0l45dwmsh6rb4";
|
||||
version = "0.5.1";
|
||||
sha256 = "17yzfikfl8qvm6vp3d472l6p0kzzw694ng19xn3fmrb43qvki4jj";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
attoparsec cmdargs dyre haskellSrcExts lens mtl split text
|
||||
];
|
||||
testDepends = [ filepath haskellSrcExts tasty tastyGolden ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
description = "A command line program for extending the import list of a Haskell source file";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
|
||||
@@ -21,5 +21,6 @@ cabal.mkDerivation (self: {
|
||||
description = "Experimental Hspec support for testing WAI applications (depends on hspec2!)";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -25,5 +25,7 @@ cabal.mkDerivation (self: {
|
||||
description = "Alpha version of Hspec 2.0";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
broken = true;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -7,6 +7,7 @@ cabal.mkDerivation (self: {
|
||||
version = "2.0";
|
||||
sha256 = "02v698grn43bvikqhqiz9ys8x2amngdmhvl3i0ar9203p2x8q3pq";
|
||||
testDepends = [ doctest ];
|
||||
noHaddock = self.stdenv.lib.versionOlder self.ghc.version "6.11";
|
||||
meta = {
|
||||
homepage = "http://github.com/peti/hsyslog";
|
||||
description = "FFI interface to syslog(3) from POSIX.1-2001";
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "http-client";
|
||||
version = "0.3.7.1";
|
||||
sha256 = "0wfmzpjzazk5jr1pbkhkxxa32pd40mgm1p426k5bxjn3gw48r30c";
|
||||
version = "0.3.7.2";
|
||||
sha256 = "1llrf2bfbh5z01pwg40zdgmz93h45h60mg2pv1k6b8pmzlwr6aaz";
|
||||
buildDepends = [
|
||||
base64Bytestring blazeBuilder caseInsensitive cookie
|
||||
dataDefaultClass deepseq exceptions filepath httpTypes mimeTypes
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "http-conduit";
|
||||
version = "2.1.4";
|
||||
sha256 = "14xfd25y7r2lhg7dx9hfniihgyzhkz4c6642k5pr27fqjjlr6ijb";
|
||||
version = "2.1.4.1";
|
||||
sha256 = "1v65v2dky7vgyh5hfvih208zhbd2czxdrshw9zw0af1naq2m5hk2";
|
||||
buildDepends = [
|
||||
conduit httpClient httpClientTls httpTypes liftedBase monadControl
|
||||
mtl resourcet transformers
|
||||
|
||||
@@ -13,5 +13,6 @@ cabal.mkDerivation (self: {
|
||||
description = "Haskell Web Library";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ aycanirican ];
|
||||
};
|
||||
})
|
||||
|
||||
17
pkgs/development/libraries/haskell/ivory/default.nix
Normal file
17
pkgs/development/libraries/haskell/ivory/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, monadLib, parsec, thLift }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ivory";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "1rn1akrsci0k5nbk4zipxznkdm0y3rvv9la5mnrr9mkj5zikj5sc";
|
||||
buildDepends = [ monadLib parsec thLift ];
|
||||
meta = {
|
||||
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
|
||||
description = "Safe embedded C programming";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
broken = self.stdenv.lib.versionOlder "7.7" self.ghc.version;
|
||||
};
|
||||
})
|
||||
@@ -1,12 +1,12 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, aeson, indexed, indexedFree, lens, text }:
|
||||
{ cabal, aeson, indexed, indexedFree, lens, lensAeson, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "json-assertions";
|
||||
version = "1.0.4";
|
||||
sha256 = "07qjbbwmph75s8ds1yfy17ww7x2wcc9bpjpv2bq9ggmzllf6g8l5";
|
||||
buildDepends = [ aeson indexed indexedFree lens text ];
|
||||
version = "1.0.5";
|
||||
sha256 = "1vf6y8xbl48giq1p6d62294rfvfdw62l1q4dspy990ii0v5gkyck";
|
||||
buildDepends = [ aeson indexed indexedFree lens lensAeson text ];
|
||||
meta = {
|
||||
homepage = "http://github.com/ocharles/json-assertions.git";
|
||||
description = "Test that your (Aeson) JSON encoding matches your expectations";
|
||||
|
||||
@@ -17,6 +17,7 @@ cabal.mkDerivation (self: {
|
||||
aeson attoparsec genericAeson HUnit tagged tasty tastyHunit tastyTh
|
||||
text
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
description = "Types and type classes for defining JSON schemas";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "language-c";
|
||||
version = "0.4.5";
|
||||
sha256 = "0q0x1rm74g27ry4jja44hk8z0lqkwnimnxbcy54m2cphaxk7yjk4";
|
||||
version = "0.4.6";
|
||||
sha256 = "0pzd3g5q3sjfngs29biannza6l9am75kcjy5q0xcjv7xhz0z1m31";
|
||||
buildDepends = [ filepath syb ];
|
||||
buildTools = [ alex happy ];
|
||||
meta = {
|
||||
|
||||
24
pkgs/development/libraries/haskell/lens-aeson/default.nix
Normal file
24
pkgs/development/libraries/haskell/lens-aeson/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, aeson, attoparsec, doctest, filepath, genericDeriving
|
||||
, lens, scientific, semigroups, simpleReflect, text
|
||||
, unorderedContainers, vector
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "lens-aeson";
|
||||
version = "1";
|
||||
sha256 = "0zpfpba97kr92lzrmdfk08f3cl42alhx0d73w8sbbwxnnvv4489r";
|
||||
buildDepends = [
|
||||
aeson attoparsec lens scientific text unorderedContainers vector
|
||||
];
|
||||
testDepends = [
|
||||
doctest filepath genericDeriving semigroups simpleReflect
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/lens/lens-aeson/";
|
||||
description = "Law-abiding lenses for aeson";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -1,25 +1,23 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, aeson, attoparsec, bifunctors, comonad, contravariant
|
||||
, deepseq, distributive, doctest, exceptions, filepath, free
|
||||
, genericDeriving, hashable, hlint, HUnit, mtl, nats, parallel
|
||||
, primitive, profunctors, QuickCheck, reflection, scientific
|
||||
, semigroupoids, semigroups, simpleReflect, split, tagged
|
||||
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
||||
, testFrameworkTh, text, transformers, transformersCompat
|
||||
, unorderedContainers, vector, void, zlib
|
||||
{ cabal, bifunctors, comonad, contravariant, deepseq, distributive
|
||||
, doctest, exceptions, filepath, free, genericDeriving, hashable
|
||||
, hlint, HUnit, mtl, nats, parallel, primitive, profunctors
|
||||
, QuickCheck, reflection, semigroupoids, semigroups, simpleReflect
|
||||
, split, tagged, testFramework, testFrameworkHunit
|
||||
, testFrameworkQuickcheck2, testFrameworkTh, text, transformers
|
||||
, transformersCompat, unorderedContainers, vector, void, zlib
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "lens";
|
||||
version = "4.3.3";
|
||||
sha256 = "0k7qslnh15xnrj86wwsp0mvz6g363ma4g0dxkmvvg4sa1bxljr1f";
|
||||
version = "4.4.0.1";
|
||||
sha256 = "0d1z6jix58g7x9r1jvm335hg2psflqc7w6sq54q486wil55c5vrw";
|
||||
buildDepends = [
|
||||
aeson attoparsec bifunctors comonad contravariant distributive
|
||||
exceptions filepath free hashable mtl parallel primitive
|
||||
profunctors reflection scientific semigroupoids semigroups split
|
||||
tagged text transformers transformersCompat unorderedContainers
|
||||
vector void zlib
|
||||
bifunctors comonad contravariant distributive exceptions filepath
|
||||
free hashable mtl parallel primitive profunctors reflection
|
||||
semigroupoids semigroups split tagged text transformers
|
||||
transformersCompat unorderedContainers vector void zlib
|
||||
];
|
||||
testDepends = [
|
||||
deepseq doctest filepath genericDeriving hlint HUnit mtl nats
|
||||
@@ -27,7 +25,6 @@ cabal.mkDerivation (self: {
|
||||
testFrameworkHunit testFrameworkQuickcheck2 testFrameworkTh text
|
||||
transformers unorderedContainers vector
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/lens/";
|
||||
description = "Lenses, Folds and Traversals";
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "lifted-async";
|
||||
version = "0.2.0.1";
|
||||
sha256 = "1x3qdgy0jkqx71xndjh769lw3wrwq63k2kc33pxn6x11yyklcf1j";
|
||||
version = "0.2.0.2";
|
||||
sha256 = "07sqgd3lxplfwrpys4jhz0068sx99765lpx8n4nj3k117z32slgf";
|
||||
buildDepends = [ async liftedBase monadControl transformersBase ];
|
||||
testDepends = [
|
||||
async HUnit liftedBase monadControl mtl tasty tastyHunit tastyTh
|
||||
|
||||
27
pkgs/development/libraries/haskell/markdown/default.nix
Normal file
27
pkgs/development/libraries/haskell/markdown/default.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, attoparsec, blazeHtml, conduit, conduitExtra, dataDefault
|
||||
, hspec, systemFileio, systemFilepath, text, transformers
|
||||
, xssSanitize
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "markdown";
|
||||
version = "0.1.9";
|
||||
sha256 = "1bl86alrbl9i690sbqqlxb4hkdd0lv3x5aqc8zi55q9h0rfsi06l";
|
||||
buildDepends = [
|
||||
attoparsec blazeHtml conduit conduitExtra dataDefault text
|
||||
transformers xssSanitize
|
||||
];
|
||||
testDepends = [
|
||||
blazeHtml conduit conduitExtra hspec systemFileio systemFilepath
|
||||
text transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/snoyberg/markdown";
|
||||
description = "Convert Markdown to HTML, with XSS protection";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ ocharles ];
|
||||
};
|
||||
})
|
||||
@@ -7,8 +7,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "monad-logger";
|
||||
version = "0.3.7.1";
|
||||
sha256 = "0imr1bgcpfm19a91r4i6lii7gycx77ysfrdri030zr2jjrvggh9i";
|
||||
version = "0.3.7.2";
|
||||
sha256 = "03q8l28rwrg00c2zcv0gr5fpis5xz8c5zspziay6p2grbwfxmwda";
|
||||
buildDepends = [
|
||||
blazeBuilder conduit conduitExtra exceptions fastLogger liftedBase
|
||||
monadControl monadLoops mtl resourcet stm stmChans text
|
||||
|
||||
16
pkgs/development/libraries/haskell/monomorphic/default.nix
Normal file
16
pkgs/development/libraries/haskell/monomorphic/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "monomorphic";
|
||||
version = "0.0.3.2";
|
||||
sha256 = "13zw506wifz2lf7n4a48rkn7ym44jpiqag21zc1py6xxdlkbrhh2";
|
||||
meta = {
|
||||
homepage = "https://github.com/konn/monomorphic";
|
||||
description = "Library to convert polymorphic datatypes to/from its monomorphic represetation";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
})
|
||||
14
pkgs/development/libraries/haskell/network-fancy/default.nix
Normal file
14
pkgs/development/libraries/haskell/network-fancy/default.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "network-fancy";
|
||||
version = "0.1.5.2";
|
||||
sha256 = "039yrrir17sphkzarwl7hncj7fb4x471mh2lvpqixl3a6nij141c";
|
||||
meta = {
|
||||
homepage = "http://github.com/taruti/network-fancy";
|
||||
description = "Networking support with a cleaner API";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
preConfigure = ''substituteInPlace Setup.hs --replace '-> rt' '-> return ()' '';
|
||||
})
|
||||
@@ -17,5 +17,6 @@ cabal.mkDerivation (self: {
|
||||
description = "Low-level networking interface";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
};
|
||||
})
|
||||
|
||||
16
pkgs/development/libraries/haskell/network/2.6.0.1.nix
Normal file
16
pkgs/development/libraries/haskell/network/2.6.0.1.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, HUnit, testFramework, testFrameworkHunit }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "network";
|
||||
version = "2.6.0.1";
|
||||
sha256 = "0qfffsdbvrf9gs8wr9ps7iv5h6drz4vb2ja9rprmc7ypswsacxsq";
|
||||
testDepends = [ HUnit testFramework testFrameworkHunit ];
|
||||
meta = {
|
||||
homepage = "https://github.com/haskell/network";
|
||||
description = "Low-level networking interface";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -1,22 +0,0 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, charset, doctest, filepath, parsec, text, transformers
|
||||
, unorderedContainers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "parsers";
|
||||
version = "0.10.3";
|
||||
sha256 = "1s9n59q77h0w1csq7yh945b53847a9hnpvviashgxyi7ahvw7jli";
|
||||
buildDepends = [
|
||||
charset parsec text transformers unorderedContainers
|
||||
];
|
||||
testDepends = [ doctest filepath ];
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/parsers/";
|
||||
description = "Parsing combinators";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
};
|
||||
})
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "poppler";
|
||||
version = "0.12.3";
|
||||
sha256 = "1ny2r1cpsshpg00w6bd0f5mw26xsy99l7dgx2xq8f01zcwdy4nrp";
|
||||
version = "0.13";
|
||||
sha256 = "1fv0h2ixanzv5vy4l2ln23f9n8ghmgdxzlyx54hh69bwhrcg049s";
|
||||
buildDepends = [ cairo glib gtk mtl ];
|
||||
buildTools = [ gtk2hsBuildtools ];
|
||||
extraLibraries = [ libc ];
|
||||
@@ -18,7 +18,5 @@ cabal.mkDerivation (self: {
|
||||
license = self.stdenv.lib.licenses.gpl2;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ ianwookim ];
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
broken = true;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "postgresql-simple";
|
||||
version = "0.4.3.0";
|
||||
sha256 = "16i1qzshbscnbjb4rxz5hl1iaxjmsc21878prj5pp33zbm53dlcm";
|
||||
version = "0.4.4.0";
|
||||
sha256 = "1rx0rcafiicdv4qbf68dbsfqwiayrl7205dm0c5bdjlvszv576r7";
|
||||
buildDepends = [
|
||||
aeson attoparsec blazeBuilder blazeTextual hashable postgresqlLibpq
|
||||
scientific text time transformers uuid vector
|
||||
|
||||
@@ -11,5 +11,6 @@ cabal.mkDerivation (self: {
|
||||
description = "random number library";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
hydraPlatforms = self.stdenv.lib.platforms.none;
|
||||
};
|
||||
})
|
||||
|
||||
15
pkgs/development/libraries/haskell/random/1.0.1.3.nix
Normal file
15
pkgs/development/libraries/haskell/random/1.0.1.3.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, time }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "random";
|
||||
version = "1.0.1.3";
|
||||
sha256 = "06mbjx05c54iz5skn4biyjy9sqdr1qi6d33an8wya7sndnpakd21";
|
||||
buildDepends = [ time ];
|
||||
meta = {
|
||||
description = "random number library";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
23
pkgs/development/libraries/haskell/reserve/default.nix
Normal file
23
pkgs/development/libraries/haskell/reserve/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, baseCompat, hspec, httpConduit, httpKit, httpTypes
|
||||
, network, QuickCheck, warp
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "reserve";
|
||||
version = "0.1.0";
|
||||
sha256 = "09b570l6hyn0wfd4nb9xpqrpdb97gbaxnbjlz25y6s0pfg5s1yzp";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [ baseCompat httpKit httpTypes network ];
|
||||
testDepends = [
|
||||
baseCompat hspec httpConduit httpKit httpTypes network QuickCheck
|
||||
warp
|
||||
];
|
||||
meta = {
|
||||
description = "Reserve reloads web applications";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -8,8 +8,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "rest-core";
|
||||
version = "0.31.1";
|
||||
sha256 = "1cx1zmy1zr43n9nlrbar828izccpkvrvjkrda03ra9fkcjgd6qy6";
|
||||
version = "0.32";
|
||||
sha256 = "130kz1gsrbamw8gs4vc0fqfjh1gi7i52xxmj4fg1vl2dr77gf6my";
|
||||
buildDepends = [
|
||||
aeson aesonUtils either errors fclabels hxt hxtPickleUtils
|
||||
jsonSchema mtl multipart random restStringmap restTypes safe split
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "rest-gen";
|
||||
version = "0.14.2";
|
||||
sha256 = "1hmf77hs3pp6lf4glh3lbbwfjr029js185v69bk8ycr1c4ib8nbp";
|
||||
version = "0.14.2.1";
|
||||
sha256 = "1dvcs25ndmzwdann5yq4567zjirirzskf9v31gkrki0im8mi9x14";
|
||||
buildDepends = [
|
||||
aeson blazeHtml Cabal codeBuilder fclabels filepath hashable
|
||||
haskellSrcExts hslogger HStringTemplate hxt jsonSchema restCore
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "rest-happstack";
|
||||
version = "0.2.10";
|
||||
sha256 = "1np8y0v6jnk2lw0aqlzb9dn1vlk8cg75xrhkjmm6qh0z90fy3p6z";
|
||||
version = "0.2.10.1";
|
||||
sha256 = "0p4km3l8n50flj9cnxvjl34pp3msxz2yq4d91r318di8pacrgnxc";
|
||||
buildDepends = [ happstackServer mtl restCore restGen utf8String ];
|
||||
meta = {
|
||||
description = "Rest driver for Happstack";
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "rest-snap";
|
||||
version = "0.1.17.12";
|
||||
sha256 = "0hhpscdbph34psfn2h1g0znds0cz7ja9byr6bg7jmj0h86plz8al";
|
||||
version = "0.1.17.13";
|
||||
sha256 = "13c143dzxhfrshn19ylqfmhnxjirixfif8d1fmzagz1v893narkz";
|
||||
buildDepends = [
|
||||
caseInsensitive restCore safe snapCore unorderedContainers
|
||||
uriEncode utf8String
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "rest-types";
|
||||
version = "1.10.1";
|
||||
sha256 = "0i4y1s35ybly1nayqj9c2zqwikpxnzjamq24qbhg0lpqr0dpc1rg";
|
||||
version = "1.10.2";
|
||||
sha256 = "1j8fpv4xdhbf1awy0v9zn9a3sjwl42l6472wczp3wwwcpsi65d9q";
|
||||
buildDepends = [
|
||||
aeson genericAeson hxt jsonSchema mtl regular regularXmlpickler
|
||||
restStringmap text uuid
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "rest-wai";
|
||||
version = "0.1.0.2";
|
||||
sha256 = "06wnazy0262b2875q4km2xy9zz7l681vlfj3ny1ha9valnqr3q6w";
|
||||
version = "0.1.0.3";
|
||||
sha256 = "08pprgn9xnd3ipr6clify3snm4ahshlws869mfvziplc4hdcnb59";
|
||||
buildDepends = [
|
||||
caseInsensitive httpTypes mimeTypes mtl restCore restTypes text
|
||||
unorderedContainers utf8String wai
|
||||
|
||||
16
pkgs/development/libraries/haskell/servant-pool/default.nix
Normal file
16
pkgs/development/libraries/haskell/servant-pool/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, resourcePool, servant, time }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "servant-pool";
|
||||
version = "0.1";
|
||||
sha256 = "0if4lxb0fpdd4lnkz9j7z6vhjbrcc80pvz9jb6sdb9p6sbbgqf69";
|
||||
buildDepends = [ resourcePool servant time ];
|
||||
meta = {
|
||||
homepage = "http://github.com/zalora/servant-pool";
|
||||
description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -0,0 +1,18 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, postgresqlSimple, servant, servantPool, servantResponse }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "servant-postgresql";
|
||||
version = "0.1";
|
||||
sha256 = "1svy1v6sl5pq0zs8ms4qf7wn6zar63bqmfiyfqgz84ryli0wxrhj";
|
||||
buildDepends = [
|
||||
postgresqlSimple servant servantPool servantResponse
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/zalora/servant-postgresql";
|
||||
description = "Useful functions and instances for using servant with a PostgreSQL context";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -0,0 +1,16 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, aeson, httpTypes, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "servant-response";
|
||||
version = "0.1";
|
||||
sha256 = "0vgzi6nm3f1vjbnvhzcr6v2fh75fsl18wsps54ya0mbmfn2v6chy";
|
||||
buildDepends = [ aeson httpTypes text ];
|
||||
meta = {
|
||||
homepage = "http://github.com/zalora/servant";
|
||||
description = "Machinery to express how servant should turn results of database operations into proper JSON-encodable response types";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
@@ -0,0 +1,20 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, aeson, httpTypes, scotty, servant, servantResponse, text
|
||||
, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "servant-scotty";
|
||||
version = "0.1.1";
|
||||
sha256 = "0d3yc7aa2p1izizqnj81iscj9hbgbkpyav1ncmxzkr48svr6h783";
|
||||
buildDepends = [
|
||||
aeson httpTypes scotty servant servantResponse text transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/zalora/servant";
|
||||
description = "Generate a web service for servant 'Resource's using scotty and JSON";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user