lol

Merge remote-tracking branch 'upstream/master' into ios-mini-staging

+801 -1239
+1 -1
nixos/modules/services/network-filesystems/beegfs.nix
··· 31 31 connPortShift = ${toString cfg.connPortShift} 32 32 storeAllowFirstRunInit = false 33 33 34 - ${cfg.mgmtd.extraConfig} 34 + ${cfg.meta.extraConfig} 35 35 ''; 36 36 37 37 configStorage = name: cfg: pkgs.writeText "storage-${name}.conf" ''
+16 -16
pkgs/applications/editors/jetbrains/default.nix
··· 250 250 251 251 datagrip = buildDataGrip rec { 252 252 name = "datagrip-${version}"; 253 - version = "2018.1.2"; /* updated by script */ 253 + version = "2018.1.3"; /* updated by script */ 254 254 description = "Your Swiss Army Knife for Databases and SQL"; 255 255 license = stdenv.lib.licenses.unfree; 256 256 src = fetchurl { 257 257 url = "https://download.jetbrains.com/datagrip/${name}.tar.gz"; 258 - sha256 = "12rihb1ppl4i1i0j3yj4ih4qx3xf30kfx022pbvng1rjy0bpikp7"; /* updated by script */ 258 + sha256 = "0y959p9jsfqlf6cnj2k5m4bxc85yn5lv549rbacwicx4f0g6zp6r"; /* updated by script */ 259 259 }; 260 260 wmClass = "jetbrains-datagrip"; 261 261 update-channel = "datagrip_2018_1"; ··· 263 263 264 264 goland = buildGoland rec { 265 265 name = "goland-${version}"; 266 - version = "2018.1.2"; /* updated by script */ 266 + version = "2018.1.3"; /* updated by script */ 267 267 description = "Up and Coming Go IDE"; 268 268 license = stdenv.lib.licenses.unfree; 269 269 src = fetchurl { 270 270 url = "https://download.jetbrains.com/go/${name}.tar.gz"; 271 - sha256 = "1qhhxarvw6mzavyzackzkbq52yfr5437gljxdvlbr6rpi99hgfzb"; /* updated by script */ 271 + sha256 = "02nl6dssf2r4lk0fy40cvgm1m0nnfvaz2k6yygwzr35qmbsw2xjq"; /* updated by script */ 272 272 }; 273 273 wmClass = "jetbrains-goland"; 274 274 update-channel = "goland_release"; ··· 302 302 303 303 phpstorm = buildPhpStorm rec { 304 304 name = "phpstorm-${version}"; 305 - version = "2018.1.2"; /* updated by script */ 305 + version = "2018.1.4"; /* updated by script */ 306 306 description = "Professional IDE for Web and PHP developers"; 307 307 license = stdenv.lib.licenses.unfree; 308 308 src = fetchurl { 309 309 url = "https://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz"; 310 - sha256 = "13si8g7n1qvjm5ivbrazsbqlvwwlg65nia78k74nkaqp704z92cs"; /* updated by script */ 310 + sha256 = "0rrcsn44va942nrznldjkxymir45q8gq1lf3f8vg1w3k87cfk1zp"; /* updated by script */ 311 311 }; 312 312 wmClass = "jetbrains-phpstorm"; 313 313 update-channel = "PS2018.1"; ··· 315 315 316 316 pycharm-community = buildPycharm rec { 317 317 name = "pycharm-community-${version}"; 318 - version = "2018.1.2"; /* updated by script */ 318 + version = "2018.1.3"; /* updated by script */ 319 319 description = "PyCharm Community Edition"; 320 320 license = stdenv.lib.licenses.asl20; 321 321 src = fetchurl { 322 322 url = "https://download.jetbrains.com/python/${name}.tar.gz"; 323 - sha256 = "1phxzsz2qnyk0b0kkccsgjkxx4ak7rbm68k1lpgr59rwyxqnazy3"; /* updated by script */ 323 + sha256 = "1cwrqdcp6hwr8wd234g120bblc4bjmhwxwsgj9mmxblj31c7c6an"; /* updated by script */ 324 324 }; 325 325 wmClass = "jetbrains-pycharm-ce"; 326 326 update-channel = "PyCharm_Release"; ··· 328 328 329 329 pycharm-professional = buildPycharm rec { 330 330 name = "pycharm-professional-${version}"; 331 - version = "2018.1.2"; /* updated by script */ 331 + version = "2018.1.3"; /* updated by script */ 332 332 description = "PyCharm Professional Edition"; 333 333 license = stdenv.lib.licenses.unfree; 334 334 src = fetchurl { 335 335 url = "https://download.jetbrains.com/python/${name}.tar.gz"; 336 - sha256 = "08cfmrrmxs67dc61cvjc0ynzng0hnr2i78fv3m888k4x63cy6mv5"; /* updated by script */ 336 + sha256 = "1chri4cknfvvqhxy973dyf7dl5linqdxc97zshrzdqhmwq6y7580"; /* updated by script */ 337 337 }; 338 338 wmClass = "jetbrains-pycharm"; 339 339 update-channel = "PyCharm_Release"; ··· 341 341 342 342 rider = buildRider rec { 343 343 name = "rider-${version}"; 344 - version = "2017.3.1"; /* updated by script */ 344 + version = "2018.1"; /* updated by script */ 345 345 description = "A cross-platform .NET IDE based on the IntelliJ platform and ReSharper"; 346 346 license = stdenv.lib.licenses.unfree; 347 347 src = fetchurl { 348 - url = "https://download.jetbrains.com/resharper/JetBrains.Rider-${version}.tar.gz"; 349 - sha256 = "0k9yc00lmk826pylfs9jyxqnlczk9vhq7bs61b8nyfam1dqbgikv"; /* updated by script */ 348 + url = "https://download.jetbrains.com/rider/JetBrains.Rider-${version}.tar.gz"; 349 + sha256 = "0jhzfi9r18hy6mig8rrrr2n55lrfn5ysa7h347w5yv2dm7kx09ib"; /* updated by script */ 350 350 }; 351 351 wmClass = "jetbrains-rider"; 352 - update-channel = "rider_2017_3"; 352 + update-channel = "rider_2018_1"; 353 353 }; 354 354 355 355 ruby-mine = buildRubyMine rec { 356 356 name = "ruby-mine-${version}"; 357 - version = "2018.1.2"; /* updated by script */ 357 + version = "2018.1.3"; /* updated by script */ 358 358 description = "The Most Intelligent Ruby and Rails IDE"; 359 359 license = stdenv.lib.licenses.unfree; 360 360 src = fetchurl { 361 361 url = "https://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz"; 362 - sha256 = "0bnzn811rmgn0kig3mzbwgx85490dqg4sg3pmmmk20n8hcph8zca"; /* updated by script */ 362 + sha256 = "033rjsx6zjrfbl89i513ms14iw53ip56h4bkilrij32hshb7c2c5"; /* updated by script */ 363 363 }; 364 364 wmClass = "jetbrains-rubymine"; 365 365 update-channel = "rm2018.1";
+1 -1
pkgs/applications/misc/sc-im/default.nix
··· 37 37 description = "SC-IM - Spreadsheet Calculator Improvised - SC fork"; 38 38 license = licenses.bsdOriginal; 39 39 maintainers = [ ]; 40 - platforms = platforms.linux; # Cannot test others 40 + platforms = platforms.unix; 41 41 }; 42 42 43 43 }
+50
pkgs/applications/networking/feedreaders/feedreader/default.nix
··· 1 + { stdenv, fetchFromGitHub, meson, ninja, pkgconfig, vala_0_40, gettext 2 + , appstream-glib, desktop-file-utils, glibcLocales, wrapGAppsHook 3 + , curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite 4 + }: 5 + 6 + let 7 + pname = "FeedReader"; 8 + version = "2.2"; 9 + in stdenv.mkDerivation { 10 + name = "${pname}-${version}"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "jangernert"; 14 + repo = pname; 15 + rev = "v" + version; 16 + sha256 = "17588hsa7xv92ba55kmbyvnijypp373yrly48kbc391wadp1z939"; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + meson ninja pkgconfig vala_0_40 gettext appstream-glib desktop-file-utils 21 + glibcLocales wrapGAppsHook 22 + ]; 23 + 24 + buildInputs = [ 25 + curl glib json-glib libnotify libsecret sqlite 26 + ] ++ (with gnome3; [ 27 + gtk libgee libpeas libsoup rest webkitgtk gnome_online_accounts 28 + gsettings_desktop_schemas 29 + ]) ++ (with gst_all_1; [ 30 + gstreamer gst-plugins-base gst-plugins-good 31 + ]); 32 + 33 + # TODO: fix https://github.com/NixOS/nixpkgs/issues/39547 34 + LIBRARY_PATH = stdenv.lib.makeLibraryPath [ curl ]; 35 + 36 + # vcs_tag function fails with UnicodeDecodeError 37 + LC_ALL = "en_US.UTF-8"; 38 + 39 + postPatch = '' 40 + patchShebangs meson_post_install.py 41 + ''; 42 + 43 + meta = with stdenv.lib; { 44 + description = "A modern desktop application designed to complement existing web-based RSS accounts."; 45 + homepage = https://jangernert.github.io/FeedReader/; 46 + license = licenses.gpl3Plus; 47 + maintainers = with maintainers; [ edwtjo ]; 48 + platforms = platforms.linux; 49 + }; 50 + }
+3 -1
pkgs/applications/science/math/gmsh/default.nix
··· 15 15 # that is supposed to work without Fortran but didn't for me. 16 16 patches = [ ./CMakeLists.txt.patch ]; 17 17 18 - buildInputs = [ cmake blas liblapack gfortran gmm fltk libjpeg zlib libGLU_combined 18 + buildInputs = [ cmake blas liblapack gmm fltk libjpeg zlib libGLU_combined 19 19 libGLU xorg.libXrender xorg.libXcursor xorg.libXfixes xorg.libXext 20 20 xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE 21 21 ]; 22 + 23 + nativeBuildInputs = [ gfortran ]; 22 24 23 25 enableParallelBuilding = true; 24 26
+30
pkgs/build-support/nix-prefetch-github/default.nix
··· 1 + { python3 2 + , fetchFromGitHub 3 + , stdenv 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "nix-prefetch-github"; 8 + version = "1.3"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "seppeljordan"; 12 + repo = "nix-prefetch-github"; 13 + rev = "${version}"; 14 + sha256 = "1rinbv1q4q8m27ih6l81w1lsmwn6cz7q3iyjiycklywpi8684dh6"; 15 + }; 16 + 17 + propagatedBuildInputs = with python3.pkgs; [ 18 + attrs 19 + click 20 + effect 21 + jinja2 22 + requests 23 + ]; 24 + meta = with stdenv.lib; { 25 + description = "Prefetch sources from github"; 26 + homepage = https://github.com/seppeljordan/nix-prefetch-github; 27 + license = licenses.gpl3; 28 + maintainers = [ maintainers.seppeljordan ]; 29 + }; 30 + }
+22 -21
pkgs/development/compilers/llvm/3.7/default.nix
··· 1 1 { newScope, stdenv, libstdcxxHook, cmake, libxml2, python2, isl, fetchurl 2 2 , overrideCC, wrapCCWith, darwin 3 - , buildLlvmPackages # ourself, but from the previous stage, for cross 4 - , targetLlvmPackages # ourself, but from the next stage, for cross 3 + , buildLlvmTools # tools, but from the previous stage, for cross 4 + , targetLlvmLibraries # libraries, but from the next stage, for cross 5 5 }: 6 6 7 7 let 8 - callPackage = newScope (self // { inherit stdenv cmake libxml2 python2 isl version fetch; }); 9 - 10 8 version = "3.7.1"; 11 9 12 10 fetch = fetch_v version; ··· 18 16 compiler-rt_src = fetch "compiler-rt" "10c1mz2q4bdq9bqfgr3dirc6hz1h3sq8573srd5q5lr7m7j6jiwx"; 19 17 clang-tools-extra_src = fetch "clang-tools-extra" "0sxw2l3q5msbrwxv1ck72arggdw6n5ysi929gi69ikniranfv4aa"; 20 18 21 - self = { 19 + tools = let 20 + callPackage = newScope (tools // { inherit stdenv isl version fetch; }); 21 + in { 22 22 llvm = callPackage ./llvm.nix { 23 - inherit compiler-rt_src stdenv; 23 + inherit compiler-rt_src; 24 + inherit (targetLlvmLibraries) libcxxabi; 24 25 }; 25 26 26 27 clang-unwrapped = callPackage ./clang { 27 - inherit clang-tools-extra_src stdenv; 28 + inherit clang-tools-extra_src; 28 29 }; 29 30 30 - clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang; 31 + clang = if stdenv.cc.isGNU then tools.libstdcxxClang else tools.libcxxClang; 31 32 32 33 libstdcxxClang = wrapCCWith { 33 - cc = self.clang-unwrapped; 34 + cc = tools.clang-unwrapped; 34 35 extraPackages = [ libstdcxxHook ]; 35 36 }; 36 37 37 38 libcxxClang = wrapCCWith { 38 - cc = self.clang-unwrapped; 39 - extraPackages = [ targetLlvmPackages.libcxx targetLlvmPackages.libcxxabi ]; 39 + cc = tools.clang-unwrapped; 40 + extraPackages = [ targetLlvmLibraries.libcxx targetLlvmLibraries.libcxxabi ]; 40 41 }; 41 42 42 - stdenv = stdenv.override (drv: { 43 - allowedRequisites = null; 44 - cc = self.clang; 45 - }); 43 + lldb = callPackage ./lldb.nix {}; 44 + }; 45 + 46 + libraries = let 47 + callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv isl version fetch; }); 48 + in { 46 49 47 - libcxxStdenv = stdenv.override (drv: { 48 - allowedRequisites = null; 49 - cc = buildLlvmPackages.libcxxClang; 50 - }); 50 + stdenv = overrideCC stdenv buildLlvmTools.clang; 51 51 52 - lldb = callPackage ./lldb.nix {}; 52 + libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang; 53 53 54 54 libcxx = callPackage ./libc++ {}; 55 55 56 56 libcxxabi = callPackage ./libc++abi.nix {}; 57 57 }; 58 - in self 58 + 59 + in { inherit tools libraries; } // libraries // tools
+23 -22
pkgs/development/compilers/llvm/3.8/default.nix
··· 1 1 { newScope, stdenv, libstdcxxHook, isl, fetchurl, overrideCC, wrapCCWith, darwin 2 - , buildLlvmPackages # ourself, but from the previous stage, for cross 3 - , targetLlvmPackages # ourself, but from the next stage, for cross 2 + , buildLlvmTools # tools, but from the previous stage, for cross 3 + , targetLlvmLibraries # libraries, but from the next stage, for cross 4 4 }: 5 5 6 6 let 7 - callPackage = newScope (self // { inherit stdenv isl version fetch; }); 8 - 9 7 version = "3.8.1"; 10 8 11 9 fetch = fetch_v version; ··· 17 15 compiler-rt_src = fetch "compiler-rt" "0p0y85c7izndbpg2l816z7z7558axq11d5pwkm4h11sdw7d13w0d"; 18 16 clang-tools-extra_src = fetch "clang-tools-extra" "15n39r4ssphpaq4a0wzyjm7ilwxb0bch6nrapy8c5s8d49h5qjk6"; 19 17 20 - self = { 18 + tools = let 19 + callPackage = newScope (tools // { inherit stdenv isl version fetch; }); 20 + in { 21 21 llvm = callPackage ./llvm.nix { 22 - inherit compiler-rt_src stdenv; 22 + inherit compiler-rt_src; 23 + inherit (targetLlvmLibraries) libcxxabi; 23 24 }; 24 25 25 26 clang-unwrapped = callPackage ./clang { 26 - inherit clang-tools-extra_src stdenv; 27 + inherit clang-tools-extra_src; 27 28 }; 28 29 29 - libclang = self.clang-unwrapped.lib; 30 + libclang = tools.clang-unwrapped.lib; 30 31 31 - clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang; 32 + clang = if stdenv.cc.isGNU then tools.libstdcxxClang else tools.libcxxClang; 32 33 33 34 libstdcxxClang = wrapCCWith { 34 - cc = self.clang-unwrapped; 35 + cc = tools.clang-unwrapped; 35 36 extraPackages = [ libstdcxxHook ]; 36 37 }; 37 38 38 39 libcxxClang = wrapCCWith { 39 - cc = self.clang-unwrapped; 40 - extraPackages = [ targetLlvmPackages.libcxx targetLlvmPackages.libcxxabi ]; 40 + cc = tools.clang-unwrapped; 41 + extraPackages = [ targetLlvmLibraries.libcxx targetLlvmLibraries.libcxxabi ]; 41 42 }; 42 43 43 - stdenv = stdenv.override (drv: { 44 - allowedRequisites = null; 45 - cc = self.clang; 46 - }); 44 + lldb = callPackage ./lldb.nix {}; 45 + }; 47 46 48 - libcxxStdenv = stdenv.override (drv: { 49 - allowedRequisites = null; 50 - cc = buildLlvmPackages.libcxxClang; 51 - }); 47 + libraries = let 48 + callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv isl version fetch; }); 49 + in { 50 + 51 + stdenv = overrideCC stdenv buildLlvmTools.clang; 52 52 53 - lldb = callPackage ./lldb.nix {}; 53 + libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang; 54 54 55 55 libcxx = callPackage ./libc++ {}; 56 56 57 57 libcxxabi = callPackage ./libc++abi.nix {}; 58 58 }; 59 - in self 59 + 60 + in { inherit tools libraries; } // libraries // tools
+23 -22
pkgs/development/compilers/llvm/3.9/default.nix
··· 1 1 { newScope, stdenv, libstdcxxHook, isl, fetchurl, overrideCC, wrapCCWith, darwin 2 - , buildLlvmPackages # ourself, but from the previous stage, for cross 3 - , targetLlvmPackages # ourself, but from the next stage, for cross 2 + , buildLlvmTools # tools, but from the previous stage, for cross 3 + , targetLlvmLibraries # libraries, but from the next stage, for cross 4 4 }: 5 5 6 6 let 7 - callPackage = newScope (self // { inherit stdenv isl version fetch; }); 8 - 9 7 version = "3.9.1"; 10 8 11 9 fetch = fetch_v version; ··· 17 15 compiler-rt_src = fetch "compiler-rt" "16gc2gdmp5c800qvydrdhsp0bzb97s8wrakl6i8a4lgslnqnf2fk"; 18 16 clang-tools-extra_src = fetch "clang-tools-extra" "0d9nh7j7brbh9avigcn69dlaihsl9p3cf9s45mw6fxzzvrdvd999"; 19 17 20 - self = { 18 + tools = let 19 + callPackage = newScope (tools // { inherit stdenv isl version fetch; }); 20 + in { 21 21 llvm = callPackage ./llvm.nix { 22 - inherit compiler-rt_src stdenv; 22 + inherit compiler-rt_src; 23 + inherit (targetLlvmLibraries) libcxxabi; 23 24 }; 24 25 25 26 clang-unwrapped = callPackage ./clang { 26 - inherit clang-tools-extra_src stdenv; 27 + inherit clang-tools-extra_src; 27 28 }; 28 29 29 - libclang = self.clang-unwrapped.lib; 30 + libclang = tools.clang-unwrapped.lib; 30 31 31 - clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang; 32 + clang = if stdenv.cc.isGNU then tools.libstdcxxClang else tools.libcxxClang; 32 33 33 34 libstdcxxClang = wrapCCWith { 34 - cc = self.clang-unwrapped; 35 + cc = tools.clang-unwrapped; 35 36 extraPackages = [ libstdcxxHook ]; 36 37 }; 37 38 38 39 libcxxClang = wrapCCWith { 39 - cc = self.clang-unwrapped; 40 - extraPackages = [ targetLlvmPackages.libcxx targetLlvmPackages.libcxxabi ]; 40 + cc = tools.clang-unwrapped; 41 + extraPackages = [ targetLlvmLibraries.libcxx targetLlvmLibraries.libcxxabi ]; 41 42 }; 42 43 43 - stdenv = stdenv.override (drv: { 44 - allowedRequisites = null; 45 - cc = self.clang; 46 - }); 44 + lldb = callPackage ./lldb.nix {}; 45 + }; 47 46 48 - libcxxStdenv = stdenv.override (drv: { 49 - allowedRequisites = null; 50 - cc = buildLlvmPackages.libcxxClang; 51 - }); 47 + libraries = let 48 + callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv isl version fetch; }); 49 + in { 50 + 51 + stdenv = overrideCC stdenv buildLlvmTools.clang; 52 52 53 - lldb = callPackage ./lldb.nix {}; 53 + libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang; 54 54 55 55 libcxx = callPackage ./libc++ {}; 56 56 57 57 libcxxabi = callPackage ./libc++abi.nix {}; 58 58 }; 59 - in self 59 + 60 + in { inherit tools libraries; } // libraries // tools
+29 -32
pkgs/development/compilers/llvm/4/default.nix
··· 1 1 { lowPrio, newScope, stdenv, targetPlatform, cmake, libstdcxxHook 2 2 , libxml2, python2, isl, fetchurl, overrideCC, wrapCCWith 3 3 , darwin 4 - , buildLlvmPackages # ourself, but from the previous stage, for cross 5 - , targetLlvmPackages # ourself, but from the next stage, for cross 4 + , buildLlvmTools # tools, but from the previous stage, for cross 5 + , targetLlvmLibraries # libraries, but from the next stage, for cross 6 6 }: 7 7 8 8 let 9 - callPackage = newScope (self // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 10 - 11 9 release_version = "4.0.1"; 12 10 version = release_version; # differentiating these is important for rc's 13 11 ··· 24 22 let drv-manpages = drv.override { enableManpages = true; }; in 25 23 drv // { man = drv-manpages.out; /*outputs = drv.outputs ++ ["man"];*/ }; 26 24 27 - llvm = callPackage ./llvm.nix { 28 - inherit compiler-rt_src stdenv; 29 - }; 25 + tools = let 26 + callPackage = newScope (tools // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 27 + in { 30 28 31 - clang-unwrapped = callPackage ./clang { 32 - inherit clang-tools-extra_src stdenv; 33 - }; 29 + llvm = overrideManOutput (callPackage ./llvm.nix { 30 + inherit compiler-rt_src; 31 + inherit (targetLlvmLibraries) libcxxabi; 32 + }); 33 + clang-unwrapped = overrideManOutput (callPackage ./clang { 34 + inherit clang-tools-extra_src; 35 + }); 34 36 35 - self = { 36 - llvm = overrideManOutput llvm; 37 - clang-unwrapped = overrideManOutput clang-unwrapped; 37 + libclang = tools.clang-unwrapped.lib; 38 + llvm-manpages = lowPrio tools.llvm.man; 39 + clang-manpages = lowPrio tools.clang-unwrapped.man; 38 40 39 - libclang = self.clang-unwrapped.lib; 40 - llvm-manpages = lowPrio self.llvm.man; 41 - clang-manpages = lowPrio self.clang-unwrapped.man; 42 - 43 - clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang; 41 + clang = if stdenv.cc.isGNU then tools.libstdcxxClang else tools.libcxxClang; 44 42 45 43 libstdcxxClang = wrapCCWith { 46 - cc = self.clang-unwrapped; 44 + cc = tools.clang-unwrapped; 47 45 extraPackages = [ libstdcxxHook ]; 48 46 }; 49 47 50 48 libcxxClang = wrapCCWith { 51 - cc = self.clang-unwrapped; 52 - extraPackages = [ targetLlvmPackages.libcxx targetLlvmPackages.libcxxabi ]; 49 + cc = tools.clang-unwrapped; 50 + extraPackages = [ targetLlvmLibraries.libcxx targetLlvmLibraries.libcxxabi ]; 53 51 }; 54 52 55 - stdenv = stdenv.override (drv: { 56 - allowedRequisites = null; 57 - cc = self.clang; 58 - }); 59 - 60 - libcxxStdenv = stdenv.override (drv: { 61 - allowedRequisites = null; 62 - cc = buildLlvmPackages.libcxxClang; 63 - }); 64 - 65 53 lld = callPackage ./lld.nix {}; 66 54 67 55 lldb = callPackage ./lldb.nix {}; 56 + }; 57 + 58 + libraries = let 59 + callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 60 + in { 61 + 62 + stdenv = overrideCC stdenv buildLlvmTools.clang; 63 + 64 + libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang; 68 65 69 66 libcxx = callPackage ./libc++ {}; 70 67 ··· 73 70 openmp = callPackage ./openmp.nix {}; 74 71 }; 75 72 76 - in self 73 + in { inherit tools libraries; } // libraries // tools
+29 -32
pkgs/development/compilers/llvm/5/default.nix
··· 1 1 { lowPrio, newScope, stdenv, targetPlatform, cmake, libstdcxxHook 2 2 , libxml2, python2, isl, fetchurl, overrideCC, wrapCCWith 3 3 , darwin 4 - , buildLlvmPackages # ourself, but from the previous stage, for cross 5 - , targetLlvmPackages # ourself, but from the next stage, for cross 4 + , buildLlvmTools # tools, but from the previous stage, for cross 5 + , targetLlvmLibraries # libraries, but from the next stage, for cross 6 6 }: 7 7 8 8 let 9 - callPackage = newScope (self // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 10 - 11 9 release_version = "5.0.1"; 12 10 version = release_version; # differentiating these is important for rc's 13 11 ··· 24 22 let drv-manpages = drv.override { enableManpages = true; }; in 25 23 drv // { man = drv-manpages.out; /*outputs = drv.outputs ++ ["man"];*/ }; 26 24 27 - llvm = callPackage ./llvm.nix { 28 - inherit compiler-rt_src stdenv; 29 - }; 25 + tools = let 26 + callPackage = newScope (tools // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 27 + in { 30 28 31 - clang-unwrapped = callPackage ./clang { 32 - inherit clang-tools-extra_src stdenv; 33 - }; 29 + llvm = overrideManOutput (callPackage ./llvm.nix { 30 + inherit compiler-rt_src; 31 + inherit (targetLlvmLibraries) libcxxabi; 32 + }); 33 + clang-unwrapped = overrideManOutput (callPackage ./clang { 34 + inherit clang-tools-extra_src; 35 + }); 34 36 35 - self = { 36 - llvm = overrideManOutput llvm; 37 - clang-unwrapped = overrideManOutput clang-unwrapped; 37 + libclang = tools.clang-unwrapped.lib; 38 + llvm-manpages = lowPrio tools.llvm.man; 39 + clang-manpages = lowPrio tools.clang-unwrapped.man; 38 40 39 - libclang = self.clang-unwrapped.lib; 40 - llvm-manpages = lowPrio self.llvm.man; 41 - clang-manpages = lowPrio self.clang-unwrapped.man; 42 - 43 - clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang; 41 + clang = if stdenv.cc.isGNU then tools.libstdcxxClang else tools.libcxxClang; 44 42 45 43 libstdcxxClang = wrapCCWith { 46 - cc = self.clang-unwrapped; 44 + cc = tools.clang-unwrapped; 47 45 extraPackages = [ libstdcxxHook ]; 48 46 }; 49 47 50 48 libcxxClang = wrapCCWith { 51 - cc = self.clang-unwrapped; 52 - extraPackages = [ targetLlvmPackages.libcxx targetLlvmPackages.libcxxabi ]; 49 + cc = tools.clang-unwrapped; 50 + extraPackages = [ targetLlvmLibraries.libcxx targetLlvmLibraries.libcxxabi ]; 53 51 }; 54 52 55 - stdenv = stdenv.override (drv: { 56 - allowedRequisites = null; 57 - cc = self.clang; 58 - }); 59 - 60 - libcxxStdenv = stdenv.override (drv: { 61 - allowedRequisites = null; 62 - cc = buildLlvmPackages.libcxxClang; 63 - }); 64 - 65 53 lld = callPackage ./lld.nix {}; 66 54 67 55 lldb = callPackage ./lldb.nix {}; 56 + }; 57 + 58 + libraries = let 59 + callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 60 + in { 61 + 62 + stdenv = overrideCC stdenv buildLlvmTools.clang; 63 + 64 + libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang; 68 65 69 66 libcxx = callPackage ./libc++ {}; 70 67 ··· 73 70 openmp = callPackage ./openmp.nix {}; 74 71 }; 75 72 76 - in self 73 + in { inherit tools libraries; } // libraries // tools
+29 -32
pkgs/development/compilers/llvm/6/default.nix
··· 1 1 { lowPrio, newScope, stdenv, targetPlatform, cmake, libstdcxxHook 2 2 , libxml2, python2, isl, fetchurl, overrideCC, wrapCCWith 3 3 , darwin 4 - , buildLlvmPackages # ourself, but from the previous stage, for cross 5 - , targetLlvmPackages # ourself, but from the next stage, for cross 4 + , buildLlvmTools # tools, but from the previous stage, for cross 5 + , targetLlvmLibraries # libraries, but from the next stage, for cross 6 6 }: 7 7 8 8 let 9 - callPackage = newScope (self // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 10 - 11 9 release_version = "6.0.0"; 12 10 version = release_version; # differentiating these is important for rc's 13 11 ··· 24 22 let drv-manpages = drv.override { enableManpages = true; }; in 25 23 drv // { man = drv-manpages.out; /*outputs = drv.outputs ++ ["man"];*/ }; 26 24 27 - llvm = callPackage ./llvm.nix { 28 - inherit compiler-rt_src stdenv; 29 - }; 25 + tools = let 26 + callPackage = newScope (tools // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 27 + in { 30 28 31 - clang-unwrapped = callPackage ./clang { 32 - inherit clang-tools-extra_src stdenv; 33 - }; 29 + llvm = overrideManOutput (callPackage ./llvm.nix { 30 + inherit compiler-rt_src; 31 + inherit (targetLlvmLibraries) libcxxabi; 32 + }); 33 + clang-unwrapped = overrideManOutput (callPackage ./clang { 34 + inherit clang-tools-extra_src; 35 + }); 34 36 35 - self = { 36 - llvm = overrideManOutput llvm; 37 - clang-unwrapped = overrideManOutput clang-unwrapped; 37 + libclang = tools.clang-unwrapped.lib; 38 + llvm-manpages = lowPrio tools.llvm.man; 39 + clang-manpages = lowPrio tools.clang-unwrapped.man; 38 40 39 - libclang = self.clang-unwrapped.lib; 40 - llvm-manpages = lowPrio self.llvm.man; 41 - clang-manpages = lowPrio self.clang-unwrapped.man; 42 - 43 - clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang; 41 + clang = if stdenv.cc.isGNU then tools.libstdcxxClang else tools.libcxxClang; 44 42 45 43 libstdcxxClang = wrapCCWith { 46 - cc = self.clang-unwrapped; 44 + cc = tools.clang-unwrapped; 47 45 extraPackages = [ libstdcxxHook ]; 48 46 }; 49 47 50 48 libcxxClang = wrapCCWith { 51 - cc = self.clang-unwrapped; 52 - extraPackages = [ targetLlvmPackages.libcxx targetLlvmPackages.libcxxabi ]; 49 + cc = tools.clang-unwrapped; 50 + extraPackages = [ targetLlvmLibraries.libcxx targetLlvmLibraries.libcxxabi ]; 53 51 }; 54 52 55 - stdenv = stdenv.override (drv: { 56 - allowedRequisites = null; 57 - cc = self.clang; 58 - }); 59 - 60 - libcxxStdenv = stdenv.override (drv: { 61 - allowedRequisites = null; 62 - cc = buildLlvmPackages.libcxxClang; 63 - }); 64 - 65 53 lld = callPackage ./lld.nix {}; 66 54 67 55 lldb = callPackage ./lldb.nix {}; 56 + }; 57 + 58 + libraries = let 59 + callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; }); 60 + in { 61 + 62 + stdenv = overrideCC stdenv buildLlvmTools.clang; 63 + 64 + libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang; 68 65 69 66 libcxx = callPackage ./libc++ {}; 70 67 ··· 73 70 openmp = callPackage ./openmp.nix {}; 74 71 }; 75 72 76 - in self 73 + in { inherit tools libraries; } // libraries // tools
+89 -47
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 38 38 - ghcjs-base-0 39 39 40 40 default-package-overrides: 41 - # LTS Haskell 11.9 41 + # LTS Haskell 11.10 42 42 - abstract-deque ==0.3 43 43 - abstract-deque-tests ==0.3 44 44 - abstract-par ==0.3.3 ··· 67 67 - aeson-better-errors ==0.9.1.0 68 68 - aeson-casing ==0.1.0.5 69 69 - aeson-compat ==0.3.7.1 70 - - aeson-diff ==1.1.0.4 70 + - aeson-diff ==1.1.0.5 71 71 - aeson-extra ==0.4.1.0 72 72 - aeson-generic-compat ==0.0.1.2 73 73 - aeson-injector ==1.1.0.0 ··· 152 152 - base-compat ==0.9.3 153 153 - basement ==0.0.7 154 154 - base-orphans ==0.7 155 - - base-prelude ==1.2.0.1 155 + - base-prelude ==1.2.1 156 156 - base-unicode-symbols ==0.2.2.4 157 157 - basic-prelude ==0.7.0 158 158 - bbdb ==0.8 ··· 180 180 - binary-search ==1.0.0.3 181 181 - binary-shared ==0.8.3 182 182 - binary-tagged ==0.1.4.2 183 - - bindings-DSL ==1.0.24 183 + - bindings-DSL ==1.0.25 184 184 - bindings-GLFW ==3.1.2.4 185 185 - bindings-libzip ==1.0.1 186 186 - bindings-uname ==0.1 ··· 234 234 - brittany ==0.9.0.1 235 235 - broadcast-chan ==0.1.1 236 236 - bsb-http-chunked ==0.0.0.2 237 - - bson ==0.3.2.3 237 + - bson ==0.3.2.6 238 238 - bson-lens ==0.1.1 239 239 - btrfs ==0.1.2.3 240 240 - buchhaltung ==0.0.7 ··· 260 260 - Cabal ==2.0.1.1 261 261 - cabal-doctest ==1.0.6 262 262 - cabal-file-th ==0.2.4 263 - - cabal-rpm ==0.12.2 263 + - cabal-rpm ==0.12.3 264 264 - cabal-toolkit ==0.0.5 265 265 - cache ==0.1.1.0 266 266 - cairo ==0.13.5.0 ··· 278 278 - cassava-records ==0.1.0.4 279 279 - cassette ==0.1.0 280 280 - cast ==0.1.0.2 281 - - cayley-client ==0.4.5 281 + - cayley-client ==0.4.6 282 282 - cereal ==0.5.5.0 283 283 - cereal-conduit ==0.8.0 284 284 - cereal-text ==0.1.0.2 ··· 308 308 - circle-packing ==0.1.0.6 309 309 - cisco-spark-api ==0.1.0.3 310 310 - clang-compilation-database ==0.1.0.1 311 - - classyplate ==0.3.0.2 311 + - classyplate ==0.3.1.0 312 312 - classy-prelude ==1.4.0 313 313 - classy-prelude-conduit ==1.4.0 314 314 - classy-prelude-yesod ==1.4.0 ··· 415 415 - crypto-random-api ==0.2.0 416 416 - crypt-sha512 ==0 417 417 - csp ==1.3.1 418 - - css-syntax ==0.0.5 418 + - css-syntax ==0.0.7 419 419 - css-text ==0.1.3.0 420 420 - csv ==0.1.2 421 421 - csv-conduit ==0.6.8.1 ··· 481 481 - dependent-sum ==0.4 482 482 - dependent-sum-template ==0.0.0.6 483 483 - deque ==0.2.1 484 - - deriving-compat ==0.4.1 484 + - deriving-compat ==0.4.2 485 485 - descriptive ==0.9.4 486 486 - dhall ==1.11.1 487 487 - dhall-json ==1.0.13 ··· 511 511 - distributive ==0.5.3 512 512 - diversity ==0.8.1.0 513 513 - djinn-ghc ==0.0.2.3 514 - - djinn-lib ==0.0.1.2 514 + - djinn-lib ==0.0.1.3 515 515 - dlist ==0.8.0.4 516 516 - dlist-instances ==0.1.1.1 517 517 - dlist-nonempty ==0.1.1 518 - - dns ==3.0.2 518 + - dns ==3.0.3 519 519 - docker ==0.5.1.1 520 520 - docker-build-cacher ==1.9.2 521 521 - dockerfile ==0.1.0.1 ··· 540 540 - dynamic-state ==0.3 541 541 - dyre ==0.8.12 542 542 - Earley ==0.12.1.0 543 - - easy-file ==0.2.1 543 + - easy-file ==0.2.2 544 544 - Ebnf2ps ==1.0.15 545 545 - echo ==0.1.3 546 546 - ed25519 ==0.0.5.0 ··· 593 593 - eventsource-geteventstore-store ==1.1.0 594 594 - eventsource-store-specs ==1.1.1 595 595 - eventsource-stub-store ==1.0.3 596 - - eventstore ==1.1.2 596 + - eventstore ==1.1.3 597 597 - every ==0.0.1 598 598 - exact-combinatorics ==0.2.0.8 599 599 - exact-pi ==0.4.1.3 ··· 607 607 - expiring-cache-map ==0.0.6.1 608 608 - explicit-exception ==0.1.9.2 609 609 - exp-pairs ==0.1.6.0 610 - - extensible ==0.4.8 610 + - extensible ==0.4.9 611 611 - extensible-effects ==2.4.0.0 612 612 - extensible-exceptions ==0.1.1.4 613 613 - extra ==1.6.6 ··· 682 682 - from-sum ==0.2.1.0 683 683 - frontmatter ==0.1.0.2 684 684 - fsnotify ==0.2.1.1 685 - - fsnotify-conduit ==0.1.0.0 685 + - fsnotify-conduit ==0.1.1.0 686 686 - funcmp ==1.9 687 687 - functor-classes-compat ==1 688 688 - fuzzcheck ==0.1.1 ··· 732 732 - ghcjs-perch ==0.3.3.2 733 733 - ghc-parser ==0.2.0.2 734 734 - ghc-paths ==0.1.0.9 735 - - ghc-prof ==1.4.1.1 735 + - ghc-prof ==1.4.1.2 736 736 - ghc-syb-utils ==0.2.3.3 737 737 - ghc-tcplugins-extra ==0.2.5 738 738 - ghc-typelits-extra ==0.2.4 ··· 740 740 - ghc-typelits-natnormalise ==0.5.10 741 741 - ghost-buster ==0.1.1.0 742 742 - gi-atk ==2.0.15 743 - - gi-cairo ==1.0.15 743 + - gi-cairo ==1.0.17 744 744 - gi-glib ==2.0.16 745 745 - gi-gobject ==2.0.16 746 746 - gi-javascriptcore ==4.0.15 ··· 798 798 - hackage-db ==2.0 799 799 - hackage-security ==0.5.3.0 800 800 - haddock-library ==1.4.5 801 - - hailgun ==0.4.1.7 801 + - hailgun ==0.4.1.8 802 802 - hailgun-simple ==0.1.0.0 803 803 - hakyll ==4.12.2.0 804 804 - half ==0.2.2.3 ··· 841 841 - hasmin ==1.0.2 842 842 - hasql ==1.1.1 843 843 - hasql-migration ==0.1.3 844 - - hasql-optparse-applicative ==0.3 844 + - hasql-optparse-applicative ==0.3.0.1 845 845 - hasql-pool ==0.4.3 846 846 - hasql-transaction ==0.6 847 847 - hastache ==0.6.1 ··· 875 875 - hexml-lens ==0.2.1 876 876 - hexpat ==0.20.13 877 877 - hexstring ==0.11.1 878 - - hformat ==0.3.1.0 878 + - hformat ==0.3.2.0 879 879 - hfsevents ==0.1.6 880 880 - hid ==0.2.2 881 881 - hidapi ==0.1.4 ··· 931 931 - hsdns ==1.7.1 932 932 - hsebaysdk ==0.4.0.0 933 933 - hsemail ==2 934 + - HSet ==0.0.1 934 935 - hset ==2.2.0 935 - - HSet ==0.0.1 936 936 - hsexif ==0.6.1.5 937 937 - hs-GeoIP ==0.3 938 938 - hsignal ==0.2.7.5 ··· 1013 1013 - hw-mquery ==0.1.0.1 1014 1014 - hworker ==0.1.0.1 1015 1015 - hw-parser ==0.0.0.3 1016 - - hw-prim ==0.5.0.3 1016 + - hw-prim ==0.5.0.5 1017 1017 - hw-rankselect ==0.10.0.3 1018 1018 - hw-rankselect-base ==0.2.0.2 1019 1019 - hw-string-parse ==0.0.0.4 ··· 1082 1082 - io-streams-haproxy ==1.0.0.2 1083 1083 - ip ==1.1.2 1084 1084 - ip6addr ==0.5.3 1085 - - iproute ==1.7.4 1085 + - iproute ==1.7.5 1086 1086 - IPv6Addr ==1.0.3 1087 1087 - IPv6DB ==0.2.6 1088 1088 - ipython-kernel ==0.9.0.2 ··· 1113 1113 - json ==0.9.2 1114 1114 - json-autotype ==1.0.18 1115 1115 - json-builder ==0.3 1116 - - json-rpc-generic ==0.2.1.3 1116 + - json-rpc-generic ==0.2.1.4 1117 1117 - json-schema ==0.7.4.1 1118 1118 - json-stream ==0.4.2.3 1119 1119 - JuicyPixels ==3.2.9.5 1120 1120 - JuicyPixels-extra ==0.3.0 1121 - - JuicyPixels-scale-dct ==0.1.1.2 1121 + - JuicyPixels-scale-dct ==0.1.2 1122 1122 - justified-containers ==0.3.0.0 1123 1123 - jvm ==0.4.2 1124 1124 - jvm-batching ==0.1.1 ··· 1297 1297 - mmap ==0.5.9 1298 1298 - mmark ==0.0.5.6 1299 1299 - mmark-cli ==0.0.3.0 1300 - - mmark-ext ==0.2.0.0 1300 + - mmark-ext ==0.2.1.0 1301 1301 - mmorph ==1.1.2 1302 1302 - mnist-idx ==0.1.2.8 1303 1303 - mockery ==0.3.5 ··· 1344 1344 - monoid-transformer ==0.0.4 1345 1345 - mono-traversable ==1.0.8.1 1346 1346 - mono-traversable-instances ==0.1.0.0 1347 - - morte ==1.6.18 1347 + - morte ==1.6.19 1348 1348 - mountpoints ==1.0.2 1349 1349 - mstate ==0.2.7 1350 1350 - mtl ==2.2.2 ··· 1394 1394 - network-ip ==0.3.0.2 1395 1395 - network-multicast ==0.2.0 1396 1396 - Network-NineP ==0.4.3 1397 - - network-simple ==0.4.0.5 1397 + - network-simple ==0.4.1 1398 1398 - network-transport ==0.5.2 1399 1399 - network-transport-composed ==0.2.1 1400 1400 - network-transport-inmemory ==0.5.2 ··· 1418 1418 - NoTrace ==0.3.0.2 1419 1419 - nsis ==0.3.2 1420 1420 - n-tuple ==0.0.2.0 1421 - - numbers ==3000.2.0.1 1421 + - numbers ==3000.2.0.2 1422 1422 - numeric-extras ==0.1 1423 1423 - numeric-prelude ==0.4.3 1424 1424 - numhask ==0.1.4.0 ··· 1438 1438 - once ==0.2 1439 1439 - one-liner ==0.9.2 1440 1440 - one-liner-instances ==0.1.2.1 1441 - - OneTuple ==0.2.1 1441 + - OneTuple ==0.2.2 1442 1442 - online ==0.2.1.0 1443 1443 - Only ==0.1 1444 1444 - oo-prototypes ==0.1.0.0 1445 - - opaleye ==0.6.1.0 1445 + - opaleye ==0.6.7000.0 1446 1446 - OpenAL ==1.7.0.4 1447 1447 - open-browser ==0.2.1.0 1448 1448 - openexr-write ==0.1.0.1 ··· 1525 1525 - picoparsec ==0.1.2.3 1526 1526 - picosat ==0.1.4 1527 1527 - pid1 ==0.1.2.0 1528 - - pinboard ==0.9.12.9 1528 + - pinboard ==0.9.12.10 1529 1529 - pinch ==0.3.2.0 1530 1530 - pipes ==4.3.9 1531 1531 - pipes-aeson ==0.4.1.8 ··· 1540 1540 - pipes-group ==1.0.10 1541 1541 - pipes-misc ==0.4.0.1 1542 1542 - pipes-mongodb ==0.1.0.0 1543 - - pipes-network ==0.6.4.1 1543 + - pipes-network ==0.6.5 1544 1544 - pipes-parse ==3.0.8 1545 1545 - pipes-random ==1.0.0.4 1546 1546 - pipes-safe ==2.2.9 ··· 1562 1562 - pooled-io ==0.0.2.1 1563 1563 - PortMidi ==0.1.6.1 1564 1564 - posix-paths ==0.2.1.5 1565 - - postgresql-binary ==0.12.1 1565 + - postgresql-binary ==0.12.1.1 1566 1566 - postgresql-libpq ==0.9.4.1 1567 1567 - postgresql-schema ==0.1.14 1568 1568 - postgresql-simple ==0.5.3.0 ··· 1653 1653 - raaz ==0.2.0 1654 1654 - rainbow ==0.28.0.4 1655 1655 - rainbox ==0.18.0.10 1656 - - rakuten ==0.1.1.2 1656 + - rakuten ==0.1.1.3 1657 1657 - ramus ==0.1.2 1658 1658 - random ==1.1 1659 1659 - random-fu ==0.2.7.0 1660 1660 - random-shuffle ==0.0.4 1661 1661 - random-source ==0.3.0.6 1662 1662 - random-tree ==0.6.0.5 1663 - - range-set-list ==0.1.2.0 1663 + - range-set-list ==0.1.2.1 1664 1664 - rank1dynamic ==0.4.0 1665 1665 - rank2classes ==1.0.2 1666 1666 - rank-product ==0.2.0.1 ··· 1837 1837 - signal ==0.1.0.4 1838 1838 - silently ==1.2.5 1839 1839 - simple ==0.11.2 1840 - - simple-log ==0.9.3 1840 + - simple-log ==0.9.4 1841 1841 - simple-reflect ==0.3.3 1842 1842 - simple-sendfile ==0.2.27 1843 1843 - simple-session ==0.10.1.1 ··· 1852 1852 - slack-web ==0.2.0.4 1853 1853 - slave-thread ==1.0.2 1854 1854 - slug ==0.1.7 1855 - - smallcheck ==1.1.3.1 1855 + - smallcheck ==1.1.4 1856 1856 - smoothie ==0.4.2.8 1857 1857 - smtp-mail ==0.1.4.6 1858 1858 - snap ==1.1.0.0 ··· 1977 1977 - tar-conduit ==0.2.3 1978 1978 - tardis ==0.4.1.0 1979 1979 - tasty ==1.0.1.1 1980 - - tasty-ant-xml ==1.1.3 1980 + - tasty-ant-xml ==1.1.4 1981 1981 - tasty-auto ==0.2.0.0 1982 1982 - tasty-dejafu ==1.1.0.2 1983 1983 - tasty-discover ==4.2.0 ··· 1990 1990 - tasty-kat ==0.0.3 1991 1991 - tasty-program ==1.0.5 1992 1992 - tasty-quickcheck ==0.9.2 1993 - - tasty-rerun ==1.1.11 1993 + - tasty-rerun ==1.1.12 1994 1994 - tasty-silver ==3.1.11 1995 1995 - tasty-smallcheck ==0.8.1 1996 - - tasty-stats ==0.2.0.3 1996 + - tasty-stats ==0.2.0.4 1997 1997 - tasty-th ==0.1.7 1998 1998 - TCache ==0.12.1 1999 1999 - tce-conf ==1.3 ··· 2042 2042 - these ==0.7.4 2043 2043 - th-expand-syns ==0.4.4.0 2044 2044 - th-extras ==0.0.0.4 2045 - - th-lift ==0.7.8 2045 + - th-lift ==0.7.10 2046 2046 - th-lift-instances ==0.1.11 2047 2047 - th-orphans ==0.13.5 2048 2048 - thread-hierarchy ==0.3.0.0 ··· 2239 2239 - wai-predicates ==0.10.0 2240 2240 - wai-route ==0.3.1.2 2241 2241 - wai-routing ==0.13.0 2242 - - wai-session ==0.3.2 2242 + - wai-session ==0.3.3 2243 2243 - wai-session-postgresql ==0.2.1.2 2244 2244 - wai-slack-middleware ==0.2.0 2245 2245 - wai-transformers ==0.0.7 ··· 2262 2262 - websockets ==0.12.4.1 2263 2263 - websockets-rpc ==0.6.0 2264 2264 - websockets-simple ==0.0.6.3 2265 - - websockets-snap ==0.10.2.5 2266 - - weigh ==0.0.11 2265 + - websockets-snap ==0.10.3.0 2266 + - weigh ==0.0.12 2267 2267 - wide-word ==0.1.0.6 2268 2268 - wikicfp-scraper ==0.1.0.9 2269 2269 - wild-bind ==0.1.2.0 ··· 2343 2343 - yesod-auth ==1.6.3 2344 2344 - yesod-auth-fb ==1.9.0 2345 2345 - yesod-auth-hashdb ==1.7 2346 - - yesod-bin ==1.6.0.2 2346 + - yesod-bin ==1.6.0.3 2347 2347 - yesod-core ==1.6.5 2348 2348 - yesod-csp ==0.2.4.0 2349 2349 - yesod-eventsource ==1.6.0 ··· 2718 2718 AesonBson: [ i686-linux, x86_64-linux, x86_64-darwin ] 2719 2719 affection: [ i686-linux, x86_64-linux, x86_64-darwin ] 2720 2720 affine-invariant-ensemble-mcmc: [ i686-linux, x86_64-linux, x86_64-darwin ] 2721 + affine: [ i686-linux, x86_64-linux, x86_64-darwin ] 2721 2722 afv: [ i686-linux, x86_64-linux, x86_64-darwin ] 2722 2723 Agata: [ i686-linux, x86_64-linux, x86_64-darwin ] 2723 2724 Agda-executable: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 2894 2895 Animas: [ i686-linux, x86_64-linux, x86_64-darwin ] 2895 2896 animascii: [ i686-linux, x86_64-linux, x86_64-darwin ] 2896 2897 animate-example: [ i686-linux, x86_64-linux, x86_64-darwin ] 2898 + animate-preview: [ i686-linux, x86_64-linux, x86_64-darwin ] 2899 + animate-sdl2: [ i686-linux, x86_64-linux, x86_64-darwin ] 2897 2900 animate: [ i686-linux, x86_64-linux, x86_64-darwin ] 2898 2901 annah: [ i686-linux, x86_64-linux, x86_64-darwin ] 2899 2902 anonymous-sums-tests: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3102 3105 battlenet-yesod: [ i686-linux, x86_64-linux, x86_64-darwin ] 3103 3106 battlenet: [ i686-linux, x86_64-linux, x86_64-darwin ] 3104 3107 battleplace-api: [ i686-linux, x86_64-linux, x86_64-darwin ] 3108 + battleplace: [ i686-linux, x86_64-linux, x86_64-darwin ] 3105 3109 battleships: [ i686-linux, x86_64-linux, x86_64-darwin ] 3106 3110 bayes-stack: [ i686-linux, x86_64-linux, x86_64-darwin ] 3107 3111 BCMtools: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3319 3323 bytable: [ i686-linux, x86_64-linux, x86_64-darwin ] 3320 3324 bytestring-class: [ i686-linux, x86_64-linux, x86_64-darwin ] 3321 3325 bytestring-csv: [ i686-linux, x86_64-linux, x86_64-darwin ] 3326 + bytestring-encodings: [ i686-linux, x86_64-linux, x86_64-darwin ] 3322 3327 bytestring-read: [ i686-linux, x86_64-linux, x86_64-darwin ] 3323 3328 bytestring-rematch: [ i686-linux, x86_64-linux, x86_64-darwin ] 3324 3329 bytestring-strict-builder: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3641 3646 competition: [ i686-linux, x86_64-linux, x86_64-darwin ] 3642 3647 compilation: [ i686-linux, x86_64-linux, x86_64-darwin ] 3643 3648 complexity: [ i686-linux, x86_64-linux, x86_64-darwin ] 3649 + componentm-devel: [ i686-linux, x86_64-linux, x86_64-darwin ] 3650 + componentm: [ i686-linux, x86_64-linux, x86_64-darwin ] 3644 3651 compose-trans: [ i686-linux, x86_64-linux, x86_64-darwin ] 3645 3652 composite-aeson-refined: [ i686-linux, x86_64-linux, x86_64-darwin ] 3646 3653 composite-aeson: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3699 3706 constrained-dynamic: [ i686-linux, x86_64-linux, x86_64-darwin ] 3700 3707 constrained-monads: [ i686-linux, x86_64-linux, x86_64-darwin ] 3701 3708 constraint-manip: [ i686-linux, x86_64-linux, x86_64-darwin ] 3709 + constraint-reflection: [ i686-linux, x86_64-linux, x86_64-darwin ] 3702 3710 constraint: [ i686-linux, x86_64-linux, x86_64-darwin ] 3703 3711 ConstraintKinds: [ i686-linux, x86_64-linux, x86_64-darwin ] 3704 3712 constructive-algebra: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3986 3994 derive-trie: [ i686-linux, x86_64-linux, x86_64-darwin ] 3987 3995 derive: [ i686-linux, x86_64-linux, x86_64-darwin ] 3988 3996 derp-lib: [ i686-linux, x86_64-linux, x86_64-darwin ] 3997 + descript-lang: [ i686-linux, x86_64-linux, x86_64-darwin ] 3989 3998 deterministic-game-engine: [ i686-linux, x86_64-linux, x86_64-darwin ] 3990 3999 deunicode: [ i686-linux, x86_64-linux, x86_64-darwin ] 3991 4000 dewdrop: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3996 4005 dhall-bash: [ i686-linux, x86_64-linux, x86_64-darwin ] 3997 4006 dhall-check: [ i686-linux, x86_64-linux, x86_64-darwin ] 3998 4007 dhall-nix: [ i686-linux, x86_64-linux, x86_64-darwin ] 4008 + dhall-text: [ i686-linux, x86_64-linux, x86_64-darwin ] 3999 4009 dhall-to-cabal: [ i686-linux, x86_64-linux, x86_64-darwin ] 4000 4010 dhcp-lease-parser: [ i686-linux, x86_64-linux, x86_64-darwin ] 4011 + di-df1: [ i686-linux, x86_64-linux, x86_64-darwin ] 4012 + di-handle: [ i686-linux, x86_64-linux, x86_64-darwin ] 4013 + di-monad: [ i686-linux, x86_64-linux, x86_64-darwin ] 4014 + di: [ i686-linux, x86_64-linux, x86_64-darwin ] 4001 4015 diagrams-boolean: [ i686-linux, x86_64-linux, x86_64-darwin ] 4002 4016 diagrams-braille: [ i686-linux, x86_64-linux, x86_64-darwin ] 4003 4017 diagrams-builder: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4027 4041 dicom: [ i686-linux, x86_64-linux, x86_64-darwin ] 4028 4042 dictparser: [ i686-linux, x86_64-linux, x86_64-darwin ] 4029 4043 diffcabal: [ i686-linux, x86_64-linux, x86_64-darwin ] 4044 + difference-monoid: [ i686-linux, x86_64-linux, x86_64-darwin ] 4030 4045 DifferenceLogic: [ i686-linux, x86_64-linux, x86_64-darwin ] 4031 4046 DifferentialEvolution: [ i686-linux, x86_64-linux, x86_64-darwin ] 4032 4047 difftodo: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4207 4222 ehs: [ i686-linux, x86_64-linux, x86_64-darwin ] 4208 4223 eibd-client-simple: [ i686-linux, x86_64-linux, x86_64-darwin ] 4209 4224 Eight-Ball-Pool-Hack-Cheats: [ i686-linux, x86_64-linux, x86_64-darwin ] 4225 + either-both: [ i686-linux, x86_64-linux, x86_64-darwin ] 4210 4226 EitherT: [ i686-linux, x86_64-linux, x86_64-darwin ] 4211 4227 ekg-cloudwatch: [ i686-linux, x86_64-linux, x86_64-darwin ] 4212 4228 ekg-elastic: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4337 4353 explore: [ i686-linux, x86_64-linux, x86_64-darwin ] 4338 4354 exposed-containers: [ i686-linux, x86_64-linux, x86_64-darwin ] 4339 4355 expressions-z3: [ i686-linux, x86_64-linux, x86_64-darwin ] 4356 + expressions: [ i686-linux, x86_64-linux, x86_64-darwin ] 4340 4357 extcore: [ i686-linux, x86_64-linux, x86_64-darwin ] 4341 4358 extemp: [ i686-linux, x86_64-linux, x86_64-darwin ] 4342 4359 extended-categories: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4558 4575 friday-scale-dct: [ i686-linux, x86_64-linux, x86_64-darwin ] 4559 4576 frown: [ i686-linux, x86_64-linux, x86_64-darwin ] 4560 4577 frp-arduino: [ i686-linux, x86_64-linux, x86_64-darwin ] 4578 + frpnow-gtk3: [ i686-linux, x86_64-linux, x86_64-darwin ] 4561 4579 frpnow-vty: [ i686-linux, x86_64-linux, x86_64-darwin ] 4562 4580 fs-events: [ i686-linux, x86_64-linux, x86_64-darwin ] 4563 4581 fsh-csv: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4585 4603 functor-utils: [ i686-linux, x86_64-linux, x86_64-darwin ] 4586 4604 functor: [ i686-linux, x86_64-linux, x86_64-darwin ] 4587 4605 functorm: [ i686-linux, x86_64-linux, x86_64-darwin ] 4606 + funflow: [ i686-linux, x86_64-linux, x86_64-darwin ] 4588 4607 Fungi: [ i686-linux, x86_64-linux, x86_64-darwin ] 4589 4608 funion: [ i686-linux, x86_64-linux, x86_64-darwin ] 4590 4609 funpat: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4708 4727 ghc-session: [ i686-linux, x86_64-linux, x86_64-darwin ] 4709 4728 ghc-simple: [ i686-linux, x86_64-linux, x86_64-darwin ] 4710 4729 ghc-syb: [ i686-linux, x86_64-linux, x86_64-darwin ] 4730 + ghc-syntax-highlighter: [ i686-linux, x86_64-linux, x86_64-darwin ] 4711 4731 ghc-time-alloc-prof: [ i686-linux, x86_64-linux, x86_64-darwin ] 4712 4732 ghc-vis: [ i686-linux, x86_64-linux, x86_64-darwin ] 4713 4733 ghci-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4990 5010 grammar-combinators: [ i686-linux, x86_64-linux, x86_64-darwin ] 4991 5011 GrammarProducts: [ i686-linux, x86_64-linux, x86_64-darwin ] 4992 5012 grammatical-parsers: [ i686-linux, x86_64-linux, x86_64-darwin ] 5013 + grapefruit-ui-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ] 4993 5014 graph-matchings: [ i686-linux, x86_64-linux, x86_64-darwin ] 4994 5015 graph-rewriting-cl: [ i686-linux, x86_64-linux, x86_64-darwin ] 4995 5016 graph-rewriting-gl: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 5246 5267 haskarrow: [ i686-linux, x86_64-linux, x86_64-darwin ] 5247 5268 haskbot-core: [ i686-linux, x86_64-linux, x86_64-darwin ] 5248 5269 haskdeep: [ i686-linux, x86_64-linux, x86_64-darwin ] 5270 + haskdogs: [ i686-linux, x86_64-linux, x86_64-darwin ] 5249 5271 haskeem: [ i686-linux, x86_64-linux, x86_64-darwin ] 5250 5272 haskeline-class: [ i686-linux, x86_64-linux, x86_64-darwin ] 5251 5273 haskelisp: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 5352 5374 haskore-synthesizer: [ i686-linux, x86_64-linux, x86_64-darwin ] 5353 5375 haskore: [ i686-linux, x86_64-linux, x86_64-darwin ] 5354 5376 HaskRel: [ i686-linux, x86_64-linux, x86_64-darwin ] 5377 + hasktags: [ i686-linux, x86_64-linux, x86_64-darwin ] 5355 5378 haskus-binary: [ i686-linux, x86_64-linux, x86_64-darwin ] 5356 5379 haskus-system-build: [ i686-linux, x86_64-linux, x86_64-darwin ] 5357 5380 haskus-utils: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 5497 5520 hevolisa: [ i686-linux, x86_64-linux, x86_64-darwin ] 5498 5521 hexchat: [ i686-linux, x86_64-linux, x86_64-darwin ] 5499 5522 hexif: [ i686-linux, x86_64-linux, x86_64-darwin ] 5523 + hexmino: [ i686-linux, x86_64-linux, x86_64-darwin ] 5500 5524 hexml-lens: [ i686-linux, x86_64-linux, x86_64-darwin ] 5501 5525 hexpat-iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ] 5502 5526 hexpat-lens: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 5573 5597 hinquire: [ i686-linux, x86_64-linux, x86_64-darwin ] 5574 5598 hinstaller: [ i686-linux, x86_64-linux, x86_64-darwin ] 5575 5599 hint-server: [ i686-linux, x86_64-linux, x86_64-darwin ] 5600 + hinter: [ i686-linux, x86_64-linux, x86_64-darwin ] 5576 5601 hinterface: [ i686-linux, x86_64-linux, x86_64-darwin ] 5577 5602 hinvaders: [ i686-linux, x86_64-linux, x86_64-darwin ] 5578 5603 hinze-streams: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 5727 5752 hpc-tracer: [ i686-linux, x86_64-linux, x86_64-darwin ] 5728 5753 hPDB-examples: [ i686-linux, x86_64-linux, x86_64-darwin ] 5729 5754 hPDB: [ i686-linux, x86_64-linux, x86_64-darwin ] 5755 + HPDF: [ i686-linux, x86_64-linux, x86_64-darwin ] 5730 5756 hpdft: [ i686-linux, x86_64-linux, x86_64-darwin ] 5731 5757 HPhone: [ i686-linux, x86_64-linux, x86_64-darwin ] 5732 5758 HPi: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 6108 6134 instapaper-sender: [ i686-linux, x86_64-linux, x86_64-darwin ] 6109 6135 int-multimap: [ i686-linux, x86_64-linux, x86_64-darwin ] 6110 6136 integer-pure: [ i686-linux, x86_64-linux, x86_64-darwin ] 6137 + integreat: [ i686-linux, x86_64-linux, x86_64-darwin ] 6111 6138 intel-aes: [ i686-linux, x86_64-linux, x86_64-darwin ] 6112 6139 interleavableGen: [ i686-linux, x86_64-linux, x86_64-darwin ] 6113 6140 interleavableIO: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 6316 6343 KiCS: [ i686-linux, x86_64-linux, x86_64-darwin ] 6317 6344 kif-parser: [ i686-linux, x86_64-linux, x86_64-darwin ] 6318 6345 kit: [ i686-linux, x86_64-linux, x86_64-darwin ] 6346 + kleene: [ i686-linux, x86_64-linux, x86_64-darwin ] 6319 6347 kmeans-par: [ i686-linux, x86_64-linux, x86_64-darwin ] 6320 6348 kmp-dfa: [ i686-linux, x86_64-linux, x86_64-darwin ] 6321 6349 knead-arithmetic: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 6495 6523 libxslt: [ i686-linux, x86_64-linux, x86_64-darwin ] 6496 6524 LibZip: [ i686-linux, x86_64-linux, x86_64-darwin ] 6497 6525 lifted-protolude: [ i686-linux, x86_64-linux, x86_64-darwin ] 6526 + lifted-stm: [ i686-linux, x86_64-linux, x86_64-darwin ] 6498 6527 lifter: [ i686-linux, x86_64-linux, x86_64-darwin ] 6499 6528 ligature: [ i686-linux, x86_64-linux, x86_64-darwin ] 6500 6529 lightning-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 6577 6606 lock-file: [ i686-linux, x86_64-linux, x86_64-darwin ] 6578 6607 locked-poll: [ i686-linux, x86_64-linux, x86_64-darwin ] 6579 6608 lockpool: [ i686-linux, x86_64-linux, x86_64-darwin ] 6609 + log-effect-syslog: [ i686-linux, x86_64-linux, x86_64-darwin ] 6580 6610 log-effect: [ i686-linux, x86_64-linux, x86_64-darwin ] 6581 6611 log-postgres: [ i686-linux, x86_64-linux, x86_64-darwin ] 6582 6612 log-utils: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 7387 7417 PerfectHash: [ i686-linux, x86_64-linux, x86_64-darwin ] 7388 7418 periodic: [ i686-linux, x86_64-linux, x86_64-darwin ] 7389 7419 perm: [ i686-linux, x86_64-linux, x86_64-darwin ] 7420 + permutations: [ i686-linux, x86_64-linux, x86_64-darwin ] 7390 7421 permute: [ i686-linux, x86_64-linux, x86_64-darwin ] 7391 7422 PermuteEffects: [ i686-linux, x86_64-linux, x86_64-darwin ] 7392 7423 persist2er: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 8281 8312 shellish: [ i686-linux, x86_64-linux, x86_64-darwin ] 8282 8313 shellmate-extras: [ i686-linux, x86_64-linux, x86_64-darwin ] 8283 8314 shikensu: [ i686-linux, x86_64-linux, x86_64-darwin ] 8315 + shivers-cfg: [ i686-linux, x86_64-linux, x86_64-darwin ] 8284 8316 shoap: [ i686-linux, x86_64-linux, x86_64-darwin ] 8285 8317 shopify: [ i686-linux, x86_64-linux, x86_64-darwin ] 8286 8318 shorten-strings: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 8592 8624 stego-uuid: [ i686-linux, x86_64-linux, x86_64-darwin ] 8593 8625 stemmer-german: [ i686-linux, x86_64-linux, x86_64-darwin ] 8594 8626 stemmer: [ i686-linux, x86_64-linux, x86_64-darwin ] 8627 + step-function: [ i686-linux, x86_64-linux, x86_64-darwin ] 8595 8628 stepwise: [ i686-linux, x86_64-linux, x86_64-darwin ] 8596 8629 stgi: [ i686-linux, x86_64-linux, x86_64-darwin ] 8597 8630 stitch: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 8648 8681 subhask: [ i686-linux, x86_64-linux, x86_64-darwin ] 8649 8682 subleq-toolchain: [ i686-linux, x86_64-linux, x86_64-darwin ] 8650 8683 submark: [ i686-linux, x86_64-linux, x86_64-darwin ] 8684 + subsample: [ i686-linux, x86_64-linux, x86_64-darwin ] 8651 8685 suffix-array: [ i686-linux, x86_64-linux, x86_64-darwin ] 8652 8686 suffixarray: [ i686-linux, x86_64-linux, x86_64-darwin ] 8653 8687 SuffixStructures: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 8732 8766 Tablify: [ i686-linux, x86_64-linux, x86_64-darwin ] 8733 8767 tablize: [ i686-linux, x86_64-linux, x86_64-darwin ] 8734 8768 tabloid: [ i686-linux, x86_64-linux, x86_64-darwin ] 8769 + taffybar: [ i686-linux, x86_64-linux, x86_64-darwin ] 8735 8770 tag-bits: [ i686-linux, x86_64-linux, x86_64-darwin ] 8736 8771 tagged-exception-core: [ i686-linux, x86_64-linux, x86_64-darwin ] 8737 8772 tagged-list: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 8843 8878 text-containers: [ i686-linux, x86_64-linux, x86_64-darwin ] 8844 8879 text-generic-pretty: [ i686-linux, x86_64-linux, x86_64-darwin ] 8845 8880 text-icu-normalized: [ i686-linux, x86_64-linux, x86_64-darwin ] 8881 + text-icu-translit: [ i686-linux, x86_64-linux, x86_64-darwin ] 8846 8882 text-json-qq: [ i686-linux, x86_64-linux, x86_64-darwin ] 8847 8883 text-lens: [ i686-linux, x86_64-linux, x86_64-darwin ] 8848 8884 text-markup: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 8881 8917 thimk: [ i686-linux, x86_64-linux, x86_64-darwin ] 8882 8918 Thingie: [ i686-linux, x86_64-linux, x86_64-darwin ] 8883 8919 thorn: [ i686-linux, x86_64-linux, x86_64-darwin ] 8920 + threadscope: [ i686-linux, x86_64-linux, x86_64-darwin ] 8884 8921 threepenny-gui-contextmenu: [ i686-linux, x86_64-linux, x86_64-darwin ] 8885 8922 Thrift: [ i686-linux, x86_64-linux, x86_64-darwin ] 8886 8923 thrift: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 9016 9053 tsuntsun: [ i686-linux, x86_64-linux, x86_64-darwin ] 9017 9054 tsvsql: [ i686-linux, x86_64-linux, x86_64-darwin ] 9018 9055 ttask: [ i686-linux, x86_64-linux, x86_64-darwin ] 9056 + tttool: [ i686-linux, x86_64-linux, x86_64-darwin ] 9019 9057 tuntap: [ i686-linux, x86_64-linux, x86_64-darwin ] 9020 9058 tup-functor: [ i686-linux, x86_64-linux, x86_64-darwin ] 9021 9059 tuple-gen: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 9108 9146 unbounded-delays-units: [ i686-linux, x86_64-linux, x86_64-darwin ] 9109 9147 unboxed-containers: [ i686-linux, x86_64-linux, x86_64-darwin ] 9110 9148 unbreak: [ i686-linux, x86_64-linux, x86_64-darwin ] 9149 + unexceptionalio-trans: [ i686-linux, x86_64-linux, x86_64-darwin ] 9111 9150 uni-events: [ i686-linux, x86_64-linux, x86_64-darwin ] 9112 9151 uni-graphs: [ i686-linux, x86_64-linux, x86_64-darwin ] 9113 9152 uni-htk: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 9220 9259 verbalexpressions: [ i686-linux, x86_64-linux, x86_64-darwin ] 9221 9260 verdict-json: [ i686-linux, x86_64-linux, x86_64-darwin ] 9222 9261 verdict: [ i686-linux, x86_64-linux, x86_64-darwin ] 9262 + verifiable-expressions: [ i686-linux, x86_64-linux, x86_64-darwin ] 9223 9263 verify: [ i686-linux, x86_64-linux, x86_64-darwin ] 9224 9264 verilog: [ i686-linux, x86_64-linux, x86_64-darwin ] 9225 9265 vicinity: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 9372 9412 woffex: [ i686-linux, x86_64-linux, x86_64-darwin ] 9373 9413 wolf: [ i686-linux, x86_64-linux, x86_64-darwin ] 9374 9414 word2vec-model: [ i686-linux, x86_64-linux, x86_64-darwin ] 9415 + word: [ i686-linux, x86_64-linux, x86_64-darwin ] 9375 9416 WordAlignment: [ i686-linux, x86_64-linux, x86_64-darwin ] 9376 9417 wordchoice: [ i686-linux, x86_64-linux, x86_64-darwin ] 9377 9418 Wordlint: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 9455 9496 xml-tydom-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ] 9456 9497 xml2json: [ i686-linux, x86_64-linux, x86_64-darwin ] 9457 9498 xml2x: [ i686-linux, x86_64-linux, x86_64-darwin ] 9499 + XML: [ i686-linux, x86_64-linux, x86_64-darwin ] 9458 9500 xmlbf-xeno: [ i686-linux, x86_64-linux, x86_64-darwin ] 9459 9501 xmlbf-xmlhtml: [ i686-linux, x86_64-linux, x86_64-darwin ] 9460 9502 XmlHtmlWriter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+2 -2
pkgs/development/haskell-modules/generic-builder.nix
··· 20 20 , buildTools ? [], libraryToolDepends ? [], executableToolDepends ? [], testToolDepends ? [], benchmarkToolDepends ? [] 21 21 , configureFlags ? [] 22 22 , description ? "" 23 - , doCheck ? !isCross && (stdenv.lib.versionOlder "7.4" ghc.version) 23 + , doCheck ? !isCross && stdenv.lib.versionOlder "7.4" ghc.version 24 24 , doBenchmark ? false 25 25 , doHoogle ? true 26 26 , editedCabalFile ? null ··· 172 172 buildTools ++ libraryToolDepends ++ executableToolDepends; 173 173 propagatedBuildInputs = buildDepends ++ libraryHaskellDepends ++ executableHaskellDepends; 174 174 otherBuildInputs = setupHaskellDepends ++ extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++ 175 - optionals (allPkgconfigDepends != []) allPkgconfigDepends ++ 175 + allPkgconfigDepends ++ 176 176 optionals doCheck (testDepends ++ testHaskellDepends ++ testSystemDepends ++ testToolDepends) ++ 177 177 optionals doBenchmark (benchmarkDepends ++ benchmarkHaskellDepends ++ benchmarkSystemDepends ++ benchmarkToolDepends); 178 178 allBuildInputs = propagatedBuildInputs ++ otherBuildInputs;
+365 -962
pkgs/development/haskell-modules/hackage-packages.nix
··· 6427 6427 }: 6428 6428 mkDerivation { 6429 6429 pname = "Gamgine"; 6430 - version = "0.5.2"; 6431 - sha256 = "0kry2ni9ba3sf2dpsjz0dq4dwnbgjicr1lwl7q4r8w6my94gkas0"; 6430 + version = "0.5.3"; 6431 + sha256 = "08awl1f1310ifx9gzjrinsv37n7k2yaxvmjaymjh01pawlp3w4gc"; 6432 6432 enableSeparateDataOutput = true; 6433 6433 libraryHaskellDepends = [ 6434 6434 array base bytestring composition cpphs data-lens directory ··· 8337 8337 homepage = "http://www.alpheccar.org"; 8338 8338 description = "Generation of PDF documents"; 8339 8339 license = stdenv.lib.licenses.bsd3; 8340 + hydraPlatforms = stdenv.lib.platforms.none; 8340 8341 }) {}; 8341 8342 8342 8343 "HPath" = callPackage ··· 11031 11032 }: 11032 11033 mkDerivation { 11033 11034 pname = "JuicyPixels-scale-dct"; 11034 - version = "0.1.1.2"; 11035 - sha256 = "15py0slh1jij8wrd68q0fqs9yarnabr470xm04i92904a809vgcs"; 11036 - revision = "3"; 11037 - editedCabalFile = "0z1ks049q9jsc5ysh12idkqf3rz0bnvv74rhlaw24r5q2xj8lv8i"; 11038 - libraryHaskellDepends = [ 11039 - base base-compat carray fft JuicyPixels 11040 - ]; 11041 - testHaskellDepends = [ 11042 - base base-compat carray fft JuicyPixels time 11043 - ]; 11044 - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; 11045 - description = "Scale JuicyPixels images with DCT"; 11046 - license = stdenv.lib.licenses.bsd3; 11047 - }) {}; 11048 - 11049 - "JuicyPixels-scale-dct_0_1_2" = callPackage 11050 - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels, time 11051 - }: 11052 - mkDerivation { 11053 - pname = "JuicyPixels-scale-dct"; 11054 11035 version = "0.1.2"; 11055 11036 sha256 = "04rhrmjnh12hh2nz04k245avgdcwqfyjnsbpcrz8j9328j41nf7p"; 11056 11037 libraryHaskellDepends = [ ··· 11062 11043 homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; 11063 11044 description = "Scale JuicyPixels images with DCT"; 11064 11045 license = stdenv.lib.licenses.bsd3; 11065 - hydraPlatforms = stdenv.lib.platforms.none; 11066 11046 }) {}; 11067 11047 11068 11048 "JuicyPixels-stbir" = callPackage ··· 12839 12819 ]; 12840 12820 description = "Random-number generation monad"; 12841 12821 license = stdenv.lib.licenses.bsd3; 12822 + }) {}; 12823 + 12824 + "MonadRandom_0_5_1_1" = callPackage 12825 + ({ mkDerivation, base, mtl, primitive, random, transformers 12826 + , transformers-compat 12827 + }: 12828 + mkDerivation { 12829 + pname = "MonadRandom"; 12830 + version = "0.5.1.1"; 12831 + sha256 = "0w44jl1n3kqvqaflh82l1wj3xxbhzfs3kf4m8rk7w6fgg8llmnmb"; 12832 + libraryHaskellDepends = [ 12833 + base mtl primitive random transformers transformers-compat 12834 + ]; 12835 + description = "Random-number generation monad"; 12836 + license = stdenv.lib.licenses.bsd3; 12837 + hydraPlatforms = stdenv.lib.platforms.none; 12842 12838 }) {}; 12843 12839 12844 12840 "MonadRandomLazy" = callPackage ··· 13970 13966 ({ mkDerivation, base }: 13971 13967 mkDerivation { 13972 13968 pname = "OneTuple"; 13973 - version = "0.2.1"; 13974 - sha256 = "1x52b68zh3k9lnps5s87kzan7dzvqp6mrwgayjq15w9dv6v78vsb"; 13975 - revision = "1"; 13976 - editedCabalFile = "1kb7f21n9vwwrk4kipqdwdqs94k34zai6yy0kgdn22zi442yicjh"; 13977 - libraryHaskellDepends = [ base ]; 13978 - description = "Singleton Tuple"; 13979 - license = stdenv.lib.licenses.bsd3; 13980 - }) {}; 13981 - 13982 - "OneTuple_0_2_2" = callPackage 13983 - ({ mkDerivation, base }: 13984 - mkDerivation { 13985 - pname = "OneTuple"; 13986 13969 version = "0.2.2"; 13987 13970 sha256 = "1p14cvjk3rgfc0xxcn7ffaajd2ii1ljnlayil2yyzgdwhlj70bnq"; 13988 13971 libraryHaskellDepends = [ base ]; 13989 13972 description = "Singleton Tuple"; 13990 13973 license = stdenv.lib.licenses.bsd3; 13991 - hydraPlatforms = stdenv.lib.platforms.none; 13992 13974 }) {}; 13993 13975 13994 13976 "Only" = callPackage ··· 19859 19841 testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; 19860 19842 description = "Extensible Markup Language"; 19861 19843 license = stdenv.lib.licenses.bsd3; 19844 + hydraPlatforms = stdenv.lib.platforms.none; 19862 19845 }) {}; 19863 19846 19864 19847 "XMLParser" = callPackage ··· 22056 22039 }: 22057 22040 mkDerivation { 22058 22041 pname = "adb"; 22059 - version = "0.1.0.0"; 22060 - sha256 = "17dxvdzmg3i8n0gbgbj0jyhm90w0dq7j27id8n24frild2w4c0d0"; 22042 + version = "0.1.0.1"; 22043 + sha256 = "19v7v308z6db5f61lalhwnn8z38s9v50f6hqd39i7krjd26f0n9a"; 22061 22044 libraryHaskellDepends = [ 22062 22045 base bytestring cereal containers mtl network 22063 22046 ]; ··· 22522 22505 22523 22506 "aeson-diff" = callPackage 22524 22507 ({ mkDerivation, aeson, base, bytestring, directory, doctest 22525 - , edit-distance-vector, filepath, Glob, hashable, hlint, mtl 22526 - , optparse-applicative, QuickCheck, quickcheck-instances 22527 - , scientific, text, unordered-containers, vector 22528 - }: 22529 - mkDerivation { 22530 - pname = "aeson-diff"; 22531 - version = "1.1.0.4"; 22532 - sha256 = "03lbghmivvmgj326ha3rxqldd73nyq88hyjigkb09nrd8vwy9wc7"; 22533 - isLibrary = true; 22534 - isExecutable = true; 22535 - libraryHaskellDepends = [ 22536 - aeson base bytestring edit-distance-vector hashable mtl scientific 22537 - text unordered-containers vector 22538 - ]; 22539 - executableHaskellDepends = [ 22540 - aeson base bytestring optparse-applicative text 22541 - ]; 22542 - testHaskellDepends = [ 22543 - aeson base bytestring directory doctest filepath Glob hlint 22544 - QuickCheck quickcheck-instances text unordered-containers vector 22545 - ]; 22546 - homepage = "https://github.com/thsutton/aeson-diff"; 22547 - description = "Extract and apply patches to JSON documents"; 22548 - license = stdenv.lib.licenses.bsd3; 22549 - hydraPlatforms = stdenv.lib.platforms.none; 22550 - }) {}; 22551 - 22552 - "aeson-diff_1_1_0_5" = callPackage 22553 - ({ mkDerivation, aeson, base, bytestring, directory, doctest 22554 22508 , edit-distance-vector, filepath, Glob, hashable, mtl 22555 22509 , optparse-applicative, QuickCheck, quickcheck-instances 22556 22510 , scientific, text, unordered-containers, vector ··· 23208 23162 libraryHaskellDepends = [ alg base ]; 23209 23163 description = "Affine spaces (generalized)"; 23210 23164 license = stdenv.lib.licenses.bsd3; 23165 + hydraPlatforms = stdenv.lib.platforms.none; 23211 23166 }) {}; 23212 23167 23213 23168 "affine-invariant-ensemble-mcmc" = callPackage ··· 27821 27776 homepage = "https://github.com/jxv/animate-preview#readme"; 27822 27777 description = "Preview tool for sprite animation"; 27823 27778 license = stdenv.lib.licenses.bsd3; 27779 + hydraPlatforms = stdenv.lib.platforms.none; 27824 27780 }) {}; 27825 27781 27826 27782 "animate-sdl2" = callPackage ··· 27833 27789 homepage = "https://github.com/jxv/animate-sdl2#readme"; 27834 27790 description = "sdl2 + animate auxiliary library"; 27835 27791 license = stdenv.lib.licenses.bsd3; 27792 + hydraPlatforms = stdenv.lib.platforms.none; 27836 27793 }) {}; 27837 27794 27838 27795 "anki-tools" = callPackage ··· 33920 33877 ({ mkDerivation, base }: 33921 33878 mkDerivation { 33922 33879 pname = "base-prelude"; 33923 - version = "1.2.0.1"; 33924 - sha256 = "17hivs7lmsglagdlzxd9q9zsddmgqin2788mpq911zwnb57lj6l1"; 33925 - libraryHaskellDepends = [ base ]; 33926 - homepage = "https://github.com/nikita-volkov/base-prelude"; 33927 - description = "The most complete prelude formed solely from the \"base\" package"; 33928 - license = stdenv.lib.licenses.mit; 33929 - }) {}; 33930 - 33931 - "base-prelude_1_2_1" = callPackage 33932 - ({ mkDerivation, base }: 33933 - mkDerivation { 33934 - pname = "base-prelude"; 33935 33880 version = "1.2.1"; 33936 33881 sha256 = "1f4s2f454zpcfrb5qi7pdlmljsfyw8zpk0kzs3dngki0ysh0rwq7"; 33937 33882 libraryHaskellDepends = [ base ]; 33938 33883 homepage = "https://github.com/nikita-volkov/base-prelude"; 33939 33884 description = "The most complete prelude formed solely from the \"base\" package"; 33940 33885 license = stdenv.lib.licenses.mit; 33941 - hydraPlatforms = stdenv.lib.platforms.none; 33942 33886 }) {}; 33943 33887 33944 33888 "base-unicode-symbols" = callPackage ··· 34197 34141 license = stdenv.lib.licenses.bsd3; 34198 34142 }) {}; 34199 34143 34144 + "basic" = callPackage 34145 + ({ mkDerivation, base, stm, template-haskell, transformers, util }: 34146 + mkDerivation { 34147 + pname = "basic"; 34148 + version = "0.1.0.0"; 34149 + sha256 = "13ikd2pkg2qspkdq0h21wa3clyaj47cm41239024g0sdv8m03bpb"; 34150 + libraryHaskellDepends = [ 34151 + base stm template-haskell transformers util 34152 + ]; 34153 + description = "Lifting values from base types"; 34154 + license = stdenv.lib.licenses.bsd3; 34155 + }) {}; 34156 + 34200 34157 "basic-cpuid" = callPackage 34201 34158 ({ mkDerivation, base }: 34202 34159 mkDerivation { ··· 34377 34334 ]; 34378 34335 description = "Core definitions for BattlePlace.io service"; 34379 34336 license = stdenv.lib.licenses.mit; 34337 + hydraPlatforms = stdenv.lib.platforms.none; 34380 34338 }) {}; 34381 34339 34382 34340 "battleplace-api" = callPackage ··· 34905 34863 license = stdenv.lib.licenses.bsd3; 34906 34864 }) {}; 34907 34865 34866 + "bench-graph" = callPackage 34867 + ({ mkDerivation, base, bytestring, Chart, Chart-diagrams, csv 34868 + , directory, filepath, split, text, transformers, Unique 34869 + }: 34870 + mkDerivation { 34871 + pname = "bench-graph"; 34872 + version = "0.1.0"; 34873 + sha256 = "0cmb15q4yrgi8f78ijgn8h51g2f183maslffh4l4dxmi2aqn7z8q"; 34874 + libraryHaskellDepends = [ 34875 + base bytestring Chart Chart-diagrams csv directory filepath 34876 + transformers Unique 34877 + ]; 34878 + testHaskellDepends = [ base split text ]; 34879 + homepage = "https://github.com/composewell/bench-graph"; 34880 + description = "Plot and compare benchmarks"; 34881 + license = stdenv.lib.licenses.bsd3; 34882 + }) {}; 34883 + 34908 34884 "benchmark-function" = callPackage 34909 34885 ({ mkDerivation, base, process, random, time }: 34910 34886 mkDerivation { ··· 36181 36157 ({ mkDerivation, base }: 36182 36158 mkDerivation { 36183 36159 pname = "bindings-DSL"; 36184 - version = "1.0.24"; 36185 - sha256 = "03n8z5qxrrq4l6h2f3xyav45f5v2gr112g4l4r4jw8yfvr8qyk93"; 36186 - libraryHaskellDepends = [ base ]; 36187 - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; 36188 - description = "FFI domain specific language, on top of hsc2hs"; 36189 - license = stdenv.lib.licenses.bsd3; 36190 - }) {}; 36191 - 36192 - "bindings-DSL_1_0_25" = callPackage 36193 - ({ mkDerivation, base }: 36194 - mkDerivation { 36195 - pname = "bindings-DSL"; 36196 36160 version = "1.0.25"; 36197 36161 sha256 = "0kqrd78nspl3lk4a0fqn47d8dirjg3b24dkvkigcrlb81hw35pk3"; 36198 36162 libraryHaskellDepends = [ base ]; 36199 36163 homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; 36200 36164 description = "FFI domain specific language, on top of hsc2hs"; 36201 36165 license = stdenv.lib.licenses.bsd3; 36202 - hydraPlatforms = stdenv.lib.platforms.none; 36203 36166 }) {}; 36204 36167 36205 36168 "bindings-EsounD" = callPackage ··· 37330 37293 }: 37331 37294 mkDerivation { 37332 37295 pname = "bishbosh"; 37333 - version = "0.0.0.2"; 37334 - sha256 = "18smrav39awp25j43c7k9r1laxwf7iix61qb2yi5h2b6djbgxq9h"; 37296 + version = "0.0.0.3"; 37297 + sha256 = "0kwscgfwpyn5ppwg8kfvxbmm6gmg1cvf9d7dhmbi6qydxaj0n11v"; 37335 37298 isLibrary = true; 37336 37299 isExecutable = true; 37337 37300 enableSeparateDataOutput = true; ··· 40441 40404 }: 40442 40405 mkDerivation { 40443 40406 pname = "bson"; 40444 - version = "0.3.2.3"; 40445 - sha256 = "10j96x6014g3w7i6szx5klr5c7cn1r0b7k581fyzpkb5ad1vlflv"; 40446 - libraryHaskellDepends = [ 40447 - base binary bytestring cryptohash data-binary-ieee754 mtl network 40448 - text time 40449 - ]; 40450 - testHaskellDepends = [ 40451 - base binary bytestring cryptohash data-binary-ieee754 mtl network 40452 - QuickCheck test-framework test-framework-quickcheck2 text time 40453 - ]; 40454 - homepage = "http://github.com/mongodb-haskell/bson"; 40455 - description = "BSON documents are JSON-like objects with a standard binary encoding"; 40456 - license = "unknown"; 40457 - }) {}; 40458 - 40459 - "bson_0_3_2_6" = callPackage 40460 - ({ mkDerivation, base, binary, bytestring, cryptohash 40461 - , data-binary-ieee754, mtl, network, QuickCheck, test-framework 40462 - , test-framework-quickcheck2, text, time 40463 - }: 40464 - mkDerivation { 40465 - pname = "bson"; 40466 40407 version = "0.3.2.6"; 40467 40408 sha256 = "106fdxzwpkp5vrnfsrjjwy8dn9rgmxrp79ji7xaxv8dgb9hw73bk"; 40468 40409 libraryHaskellDepends = [ ··· 40476 40417 homepage = "http://github.com/mongodb-haskell/bson"; 40477 40418 description = "BSON documents are JSON-like objects with a standard binary encoding"; 40478 40419 license = stdenv.lib.licenses.asl20; 40479 - hydraPlatforms = stdenv.lib.platforms.none; 40480 40420 }) {}; 40481 40421 40482 40422 "bson-generic" = callPackage ··· 41480 41420 benchmarkHaskellDepends = [ base bytestring gauge text ]; 41481 41421 description = "checks to see if a given bytestring adheres to a certain encoding"; 41482 41422 license = stdenv.lib.licenses.mit; 41423 + hydraPlatforms = stdenv.lib.platforms.none; 41483 41424 }) {}; 41484 41425 41485 41426 "bytestring-from" = callPackage ··· 42135 42076 }) {}; 42136 42077 42137 42078 "cabal-cargs" = callPackage 42138 - ({ mkDerivation, base, Cabal, cabal-lenses, cmdargs, directory 42139 - , either, filepath, lens, strict, system-fileio, system-filepath 42079 + ({ mkDerivation, base, bytestring, Cabal, cabal-lenses, cmdargs 42080 + , directory, either, filepath, lens, system-fileio, system-filepath 42140 42081 , tasty, tasty-golden, text, transformers, unordered-containers 42141 42082 }: 42142 42083 mkDerivation { 42143 42084 pname = "cabal-cargs"; 42144 - version = "0.9.0"; 42145 - sha256 = "0w371991841m4d9r73nr86j4jnr0jilj9jnvkmgh9a055vyi573s"; 42085 + version = "0.9.1"; 42086 + sha256 = "13qbp6416k684chd0f1mk0dw9xkjh85cj6yrgxb9cbhq2944zydi"; 42146 42087 isLibrary = true; 42147 42088 isExecutable = true; 42148 42089 libraryHaskellDepends = [ 42149 - base Cabal cabal-lenses cmdargs directory either lens strict 42090 + base bytestring Cabal cabal-lenses cmdargs directory either lens 42150 42091 system-fileio system-filepath text transformers 42151 42092 unordered-containers 42152 42093 ]; ··· 42515 42456 }: 42516 42457 mkDerivation { 42517 42458 pname = "cabal-lenses"; 42518 - version = "0.7.0"; 42519 - sha256 = "07xyn4sy2snj8a5983p6g6w9pwklzmd3w9wzj02ig4pdnz7682ls"; 42459 + version = "0.7.1"; 42460 + sha256 = "1y6s99slblishngi2hw0brf6byd5w72kqz10x30vhxw2zdmprvl0"; 42520 42461 libraryHaskellDepends = [ 42521 42462 base Cabal either lens strict system-fileio system-filepath text 42522 42463 transformers unordered-containers ··· 42679 42620 }: 42680 42621 mkDerivation { 42681 42622 pname = "cabal-rpm"; 42682 - version = "0.12.2"; 42683 - sha256 = "00i3v62ys6fhq2rnw9q2hhc2h54v8my14ll746vpma2gfdy90y1c"; 42684 - isLibrary = false; 42685 - isExecutable = true; 42686 - executableHaskellDepends = [ 42687 - base bytestring Cabal directory filepath http-client 42688 - http-client-tls http-conduit process time unix 42689 - ]; 42690 - homepage = "https://github.com/juhp/cabal-rpm"; 42691 - description = "RPM packaging tool for Haskell Cabal-based packages"; 42692 - license = stdenv.lib.licenses.gpl3; 42693 - }) {}; 42694 - 42695 - "cabal-rpm_0_12_3" = callPackage 42696 - ({ mkDerivation, base, bytestring, Cabal, directory, filepath 42697 - , http-client, http-client-tls, http-conduit, process, time, unix 42698 - }: 42699 - mkDerivation { 42700 - pname = "cabal-rpm"; 42701 42623 version = "0.12.3"; 42702 42624 sha256 = "0nid91q38k4b3hgjrhv6sy68y5h74f85j08991hmfbwzd727dzfg"; 42703 42625 isLibrary = false; ··· 42709 42631 homepage = "https://github.com/juhp/cabal-rpm"; 42710 42632 description = "RPM packaging tool for Haskell Cabal-based packages"; 42711 42633 license = stdenv.lib.licenses.gpl3; 42712 - hydraPlatforms = stdenv.lib.platforms.none; 42713 42634 }) {}; 42714 42635 42715 42636 "cabal-scripts" = callPackage ··· 44998 44919 }: 44999 44920 mkDerivation { 45000 44921 pname = "cayley-client"; 45001 - version = "0.4.5"; 45002 - sha256 = "12gmav4bwf3i44wbwc68vgrnal7j6q3428d6wl5zq078pv2c3x7w"; 45003 - libraryHaskellDepends = [ 45004 - aeson attoparsec base binary bytestring exceptions http-client 45005 - http-conduit lens lens-aeson mtl text transformers 45006 - unordered-containers vector 45007 - ]; 45008 - testHaskellDepends = [ aeson base hspec unordered-containers ]; 45009 - homepage = "https://github.com/MichelBoucey/cayley-client"; 45010 - description = "A Haskell client for the Cayley graph database"; 45011 - license = stdenv.lib.licenses.bsd3; 45012 - hydraPlatforms = stdenv.lib.platforms.none; 45013 - }) {}; 45014 - 45015 - "cayley-client_0_4_6" = callPackage 45016 - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring 45017 - , exceptions, hspec, http-client, http-conduit, lens, lens-aeson 45018 - , mtl, text, transformers, unordered-containers, vector 45019 - }: 45020 - mkDerivation { 45021 - pname = "cayley-client"; 45022 44922 version = "0.4.6"; 45023 44923 sha256 = "1wyf6bz87b83lxcdbm84db7ziv3ggb3zbj4qd2cvfc7m4wr9a0v6"; 45024 44924 libraryHaskellDepends = [ ··· 45078 44978 pname = "cbor-tool"; 45079 44979 version = "0.2.0.0"; 45080 44980 sha256 = "0m8ic53vbzk06xw8rxs9vndnmbdjmcslc8zqa7lafhnl3lgqaybp"; 44981 + revision = "1"; 44982 + editedCabalFile = "08yd8qv9kalgr6hn2kwwzmqzaq4i05fp7d7pfmnkfm7jg6zm8kwy"; 45081 44983 isLibrary = false; 45082 44984 isExecutable = true; 45083 44985 executableHaskellDepends = [ ··· 45113 45015 pname = "cborg-json"; 45114 45016 version = "0.2.0.0"; 45115 45017 sha256 = "09ps2lyvxg0qpki9f0lydag9hyys20q5ywgxim0jcaa0jky0j92x"; 45018 + revision = "1"; 45019 + editedCabalFile = "1v0brbq9ri5fx19kb2ijhd3h3ibqadfprgcisja0mx6amzkbqnrz"; 45116 45020 libraryHaskellDepends = [ 45117 45021 aeson aeson-pretty base cborg scientific text unordered-containers 45118 45022 vector ··· 47784 47688 }: 47785 47689 mkDerivation { 47786 47690 pname = "classyplate"; 47787 - version = "0.3.0.2"; 47788 - sha256 = "0dpllaahq81bn7h0vb0h8s1lf6w0knd2dgqyycimrxfc0aqh1md8"; 47789 - libraryHaskellDepends = [ base template-haskell ]; 47790 - benchmarkHaskellDepends = [ base criterion parallel uniplate ]; 47791 - description = "Fuseable type-class based generics"; 47792 - license = stdenv.lib.licenses.bsd3; 47793 - }) {}; 47794 - 47795 - "classyplate_0_3_1_0" = callPackage 47796 - ({ mkDerivation, base, criterion, parallel, template-haskell 47797 - , uniplate 47798 - }: 47799 - mkDerivation { 47800 - pname = "classyplate"; 47801 47691 version = "0.3.1.0"; 47802 47692 sha256 = "0ayiyxslvnhzngf8afqb82jz20i83par8piqf81s0yldk4lg4j4m"; 47803 47693 libraryHaskellDepends = [ base template-haskell ]; 47804 47694 benchmarkHaskellDepends = [ base criterion parallel uniplate ]; 47805 47695 description = "Fuseable type-class based generics"; 47806 47696 license = stdenv.lib.licenses.bsd3; 47807 - hydraPlatforms = stdenv.lib.platforms.none; 47808 47697 }) {}; 47809 47698 47810 47699 "clay" = callPackage ··· 50974 50863 homepage = "https://github.com/roman/Haskell-componentm#readme"; 50975 50864 description = "Monad for allocation and cleanup of application resources"; 50976 50865 license = stdenv.lib.licenses.mit; 50866 + hydraPlatforms = stdenv.lib.platforms.none; 50977 50867 }) {}; 50978 50868 50979 50869 "componentm-devel" = callPackage ··· 50988 50878 homepage = "https://github.com/roman/Haskell-componentm#readme"; 50989 50879 description = "Easy REPL driven development using ComponentM"; 50990 50880 license = stdenv.lib.licenses.mit; 50881 + hydraPlatforms = stdenv.lib.platforms.none; 50991 50882 }) {}; 50992 50883 50993 50884 "composable-associations" = callPackage ··· 52883 52774 }) {}; 52884 52775 52885 52776 "connection-string" = callPackage 52886 - ({ mkDerivation, base, containers, doctest, megaparsec 52887 - , parser-combinators, text 52777 + ({ mkDerivation, base, case-insensitive, containers, doctest 52778 + , megaparsec, parser-combinators, text 52888 52779 }: 52889 52780 mkDerivation { 52890 52781 pname = "connection-string"; 52891 - version = "0.1.0.0"; 52892 - sha256 = "0hkszhms7n6vp9w8agik0qndz2a3f8l56yxidw9l9mjn3sx769g2"; 52893 - revision = "1"; 52894 - editedCabalFile = "0zirgds0ha3245cagx3fhssz58bpyzci7zv4mw9rfnc1k48v69b2"; 52782 + version = "0.2.0.0"; 52783 + sha256 = "0gj9czggj7nrp0jjwbi0v1fzl0qvyw3yvi1q5kvjnx3l6ikk3z1j"; 52895 52784 libraryHaskellDepends = [ 52896 - base containers megaparsec parser-combinators 52785 + base case-insensitive containers megaparsec parser-combinators 52897 52786 ]; 52898 52787 testHaskellDepends = [ base doctest text ]; 52899 52788 homepage = "https://github.com/Porges/connection-string-hs"; ··· 53096 52985 libraryHaskellDepends = [ base category constraint reflection ]; 53097 52986 description = "Constraint reflection"; 53098 52987 license = stdenv.lib.licenses.bsd3; 52988 + hydraPlatforms = stdenv.lib.platforms.none; 53099 52989 }) {}; 53100 52990 53101 52991 "constraints" = callPackage ··· 56812 56702 }: 56813 56703 mkDerivation { 56814 56704 pname = "css-syntax"; 56815 - version = "0.0.5"; 56816 - sha256 = "17hbwnhwz9c6xdw508chygq684h7hrrv16yyrmqdj7f8hfzy0s9r"; 56817 - revision = "3"; 56818 - editedCabalFile = "0p32287dxngmz6bk2xpvj8vh0kawjcrdxxdnczmay6pa1bzyhrik"; 56819 - libraryHaskellDepends = [ 56820 - attoparsec base bytestring scientific text 56821 - ]; 56822 - testHaskellDepends = [ 56823 - attoparsec base bytestring directory hspec scientific text 56824 - ]; 56825 - description = "This package implments a parser for the CSS syntax"; 56826 - license = stdenv.lib.licenses.mit; 56827 - }) {}; 56828 - 56829 - "css-syntax_0_0_7" = callPackage 56830 - ({ mkDerivation, attoparsec, base, bytestring, directory, hspec 56831 - , scientific, text 56832 - }: 56833 - mkDerivation { 56834 - pname = "css-syntax"; 56835 56705 version = "0.0.7"; 56836 56706 sha256 = "0r30rnwpmzvwbhj9di5rvbsigfn1w325c700hvjyw826x53ivz13"; 56837 56707 libraryHaskellDepends = [ ··· 56842 56712 ]; 56843 56713 description = "This package implments a parser for the CSS syntax"; 56844 56714 license = stdenv.lib.licenses.mit; 56845 - hydraPlatforms = stdenv.lib.platforms.none; 56846 56715 }) {}; 56847 56716 56848 56717 "css-text" = callPackage ··· 58862 58731 license = stdenv.lib.licenses.bsd3; 58863 58732 }) {}; 58864 58733 58865 - "data-diverse_3_1_0_0" = callPackage 58734 + "data-diverse_4_0_0_0" = callPackage 58866 58735 ({ mkDerivation, base, containers, criterion, deepseq, ghc-prim 58867 58736 , hspec, tagged 58868 58737 }: 58869 58738 mkDerivation { 58870 58739 pname = "data-diverse"; 58871 - version = "3.1.0.0"; 58872 - sha256 = "0jg8g8zp8s14qalrmqa3faspg9kfifzdv0mi8a25xmqgi6rz64aq"; 58740 + version = "4.0.0.0"; 58741 + sha256 = "0kxhfxqb97hcp2pynsmpa9a5akg49x754ivqlm7dr0jy5kay0fa3"; 58873 58742 libraryHaskellDepends = [ 58874 58743 base containers deepseq ghc-prim tagged 58875 58744 ]; ··· 58900 58769 license = stdenv.lib.licenses.bsd3; 58901 58770 }) {}; 58902 58771 58903 - "data-diverse-lens_3_1_1_0" = callPackage 58772 + "data-diverse-lens_4_0_0_0" = callPackage 58904 58773 ({ mkDerivation, base, data-diverse, data-has, generic-lens, hspec 58905 58774 , lens, profunctors, tagged 58906 58775 }: 58907 58776 mkDerivation { 58908 58777 pname = "data-diverse-lens"; 58909 - version = "3.1.1.0"; 58910 - sha256 = "1ynw9j8a92ny8327i0r037swsc3rj3723dnlar77x640849nif0p"; 58778 + version = "4.0.0.0"; 58779 + sha256 = "06k8s7dfql4gdwws6nsajhj2g7fl1bs3nvgv76x6kxqwr42l675a"; 58911 58780 libraryHaskellDepends = [ 58912 58781 base data-diverse data-has generic-lens lens profunctors tagged 58913 58782 ]; ··· 62422 62291 }: 62423 62292 mkDerivation { 62424 62293 pname = "deriving-compat"; 62425 - version = "0.4.1"; 62426 - sha256 = "0lzcbnvzcnrrvr61mrqdx4i8fylknf4jwrpncxr9lhpxgp4fqqk4"; 62427 - revision = "1"; 62428 - editedCabalFile = "12pzj7ng66xyyj6aixd0mds8vf0p9syivngrjz9xcsi63d76dsbn"; 62429 - libraryHaskellDepends = [ 62430 - base containers ghc-boot-th ghc-prim template-haskell 62431 - th-abstraction transformers transformers-compat 62432 - ]; 62433 - testHaskellDepends = [ 62434 - base base-compat base-orphans hspec QuickCheck tagged 62435 - template-haskell transformers transformers-compat 62436 - ]; 62437 - testToolDepends = [ hspec-discover ]; 62438 - homepage = "https://github.com/haskell-compat/deriving-compat"; 62439 - description = "Backports of GHC deriving extensions"; 62440 - license = stdenv.lib.licenses.bsd3; 62441 - }) {}; 62442 - 62443 - "deriving-compat_0_4_2" = callPackage 62444 - ({ mkDerivation, base, base-compat, base-orphans, containers 62445 - , ghc-boot-th, ghc-prim, hspec, hspec-discover, QuickCheck, tagged 62446 - , template-haskell, th-abstraction, transformers 62447 - , transformers-compat 62448 - }: 62449 - mkDerivation { 62450 - pname = "deriving-compat"; 62451 62294 version = "0.4.2"; 62452 62295 sha256 = "0vwpir5sd0x0r5ml83qg9hrwyq1s2psalpl8m007mh3hr8d4wgvz"; 62453 62296 libraryHaskellDepends = [ ··· 62462 62305 homepage = "https://github.com/haskell-compat/deriving-compat"; 62463 62306 description = "Backports of GHC deriving extensions"; 62464 62307 license = stdenv.lib.licenses.bsd3; 62465 - hydraPlatforms = stdenv.lib.platforms.none; 62466 62308 }) {}; 62467 62309 62468 62310 "derp" = callPackage ··· 62549 62391 homepage = "https://bitbucket.org/jakobeha/descript-lang/src/master/README.md"; 62550 62392 description = "Library, interpreter, and CLI for Descript programming language"; 62551 62393 license = stdenv.lib.licenses.gpl3; 62394 + hydraPlatforms = stdenv.lib.platforms.none; 62552 62395 }) {}; 62553 62396 62554 62397 "descriptive" = callPackage ··· 62974 62817 executableHaskellDepends = [ base dhall optparse-generic text ]; 62975 62818 description = "Template text using Dhall"; 62976 62819 license = stdenv.lib.licenses.bsd3; 62820 + hydraPlatforms = stdenv.lib.platforms.none; 62977 62821 }) {}; 62978 62822 62979 62823 "dhall-to-cabal" = callPackage ··· 63039 62883 homepage = "https://github.com/k0001/di"; 63040 62884 description = "Typeful hierarchical structured logging using di, mtl and df1"; 63041 62885 license = stdenv.lib.licenses.bsd3; 62886 + hydraPlatforms = stdenv.lib.platforms.none; 63042 62887 }) {}; 63043 62888 63044 62889 "di-core" = callPackage ··· 63077 62922 homepage = "https://github.com/k0001/di"; 63078 62923 description = "Write logs in the df1 format using the di logging framework"; 63079 62924 license = stdenv.lib.licenses.bsd3; 62925 + hydraPlatforms = stdenv.lib.platforms.none; 63080 62926 }) {}; 63081 62927 63082 62928 "di-handle" = callPackage ··· 63091 62937 homepage = "https://github.com/k0001/di"; 63092 62938 description = "IO support for file handles in di-core"; 63093 62939 license = stdenv.lib.licenses.bsd3; 62940 + hydraPlatforms = stdenv.lib.platforms.none; 63094 62941 }) {}; 63095 62942 63096 62943 "di-monad" = callPackage ··· 63107 62954 homepage = "https://github.com/k0001/di"; 63108 62955 description = "mtl flavoured typeful hierarchical structured logging for di-core"; 63109 62956 license = stdenv.lib.licenses.bsd3; 62957 + hydraPlatforms = stdenv.lib.platforms.none; 63110 62958 }) {}; 63111 62959 63112 62960 "dia-base" = callPackage ··· 63528 63376 63529 63377 "diagrams-postscript" = callPackage 63530 63378 ({ mkDerivation, base, containers, data-default-class 63531 - , diagrams-core, diagrams-lib, dlist, filepath, hashable, lens 63532 - , monoid-extras, mtl, semigroups, split, statestack 63379 + , diagrams-core, diagrams-lib, dlist, hashable, lens, monoid-extras 63380 + , mtl, semigroups, split, statestack 63533 63381 }: 63534 63382 mkDerivation { 63535 63383 pname = "diagrams-postscript"; 63536 - version = "1.4"; 63537 - sha256 = "1d4dbwd4qgrlwm0m9spwqklpg3plf0ghrnrah1k6yw900l0z0n7y"; 63538 - revision = "1"; 63539 - editedCabalFile = "0vmiv3b74nml0ahb7dicq0m0vz2lahzfapln9aby0jb2saa0sf58"; 63384 + version = "1.4.1"; 63385 + sha256 = "171c53msr2x8da87fghl7jikbmrwy7gdxwhdviixc2y3k4fijn57"; 63540 63386 libraryHaskellDepends = [ 63541 63387 base containers data-default-class diagrams-core diagrams-lib dlist 63542 - filepath hashable lens monoid-extras mtl semigroups split 63543 - statestack 63388 + hashable lens monoid-extras mtl semigroups split statestack 63544 63389 ]; 63545 63390 homepage = "http://projects.haskell.org/diagrams/"; 63546 63391 description = "Postscript backend for diagrams drawing EDSL"; ··· 63994 63839 ]; 63995 63840 homepage = "https://github.com/oisdk/difference-monoid#readme"; 63996 63841 license = stdenv.lib.licenses.mit; 63842 + hydraPlatforms = stdenv.lib.platforms.none; 63997 63843 }) {}; 63998 63844 63999 63845 "difftodo" = callPackage ··· 65846 65692 ({ mkDerivation, base, containers, mtl, pretty }: 65847 65693 mkDerivation { 65848 65694 pname = "djinn-lib"; 65849 - version = "0.0.1.2"; 65850 - sha256 = "048hs27awl4j9lg04qbnpf8c51mzbgy2afckis19zcswmavi1zn0"; 65851 - libraryHaskellDepends = [ base containers mtl pretty ]; 65852 - homepage = "http://www.augustsson.net/Darcs/Djinn/"; 65853 - description = "Generate Haskell code from a type. Library extracted from djinn package."; 65854 - license = stdenv.lib.licenses.bsd3; 65855 - }) {}; 65856 - 65857 - "djinn-lib_0_0_1_3" = callPackage 65858 - ({ mkDerivation, base, containers, mtl, pretty }: 65859 - mkDerivation { 65860 - pname = "djinn-lib"; 65861 65695 version = "0.0.1.3"; 65862 65696 sha256 = "0r1kby67flpyizj117r5q0q3sj61csqxd44za5r9292hj3cacd9v"; 65863 65697 libraryHaskellDepends = [ base containers mtl pretty ]; 65864 65698 homepage = "http://www.augustsson.net/Darcs/Djinn/"; 65865 65699 description = "Generate Haskell code from a type. Library extracted from djinn package."; 65866 65700 license = stdenv.lib.licenses.bsd3; 65867 - hydraPlatforms = stdenv.lib.platforms.none; 65868 65701 }) {}; 65869 65702 65870 65703 "djinn-th" = callPackage ··· 66052 65885 66053 65886 "dns" = callPackage 66054 65887 ({ mkDerivation, async, attoparsec, auto-update, base 66055 - , base64-bytestring, binary, bytestring, conduit, conduit-extra 66056 - , containers, cryptonite, doctest, hspec, iproute, mtl, network 66057 - , psqueues, QuickCheck, safe, time, word8 65888 + , base64-bytestring, binary, bytestring, containers, cryptonite 65889 + , doctest, hspec, iproute, mtl, network, psqueues, QuickCheck, safe 65890 + , time, word8 66058 65891 }: 66059 65892 mkDerivation { 66060 65893 pname = "dns"; 66061 - version = "3.0.2"; 66062 - sha256 = "193j67jnhxkih3gbfzdx9cpzvqryk4kzc3yhl1yagdg16shrba7i"; 65894 + version = "3.0.3"; 65895 + sha256 = "0m7xgf5vgh3xj5yrv8hyvhx3lligx1xrnq22a9b6s2prbywyllfv"; 66063 65896 libraryHaskellDepends = [ 66064 65897 async attoparsec auto-update base base64-bytestring binary 66065 - bytestring conduit conduit-extra containers cryptonite iproute mtl 66066 - network psqueues safe time 65898 + bytestring containers cryptonite iproute mtl network psqueues safe 65899 + time 66067 65900 ]; 66068 65901 testHaskellDepends = [ 66069 - base bytestring doctest hspec iproute QuickCheck word8 65902 + base bytestring doctest hspec iproute network QuickCheck word8 66070 65903 ]; 66071 65904 testTarget = "spec"; 66072 65905 description = "DNS library in Haskell"; ··· 68515 68348 ({ mkDerivation, base, directory, filepath, time, unix }: 68516 68349 mkDerivation { 68517 68350 pname = "easy-file"; 68518 - version = "0.2.1"; 68519 - sha256 = "0v75081bx4qzlqy29hh639nzlr7dncwza3qxbzm9njc4jarf31pz"; 68520 - libraryHaskellDepends = [ base directory filepath time unix ]; 68521 - homepage = "http://github.com/kazu-yamamoto/easy-file"; 68522 - description = "Cross-platform File handling"; 68523 - license = stdenv.lib.licenses.bsd3; 68524 - }) {}; 68525 - 68526 - "easy-file_0_2_2" = callPackage 68527 - ({ mkDerivation, base, directory, filepath, time, unix }: 68528 - mkDerivation { 68529 - pname = "easy-file"; 68530 68351 version = "0.2.2"; 68531 68352 sha256 = "0zmlcz723051qpn8l8vi51c5rx1blwrw4094jcshkmj8p9r2xxaj"; 68532 68353 libraryHaskellDepends = [ base directory filepath time unix ]; 68533 68354 homepage = "http://github.com/kazu-yamamoto/easy-file"; 68534 68355 description = "Cross-platform File handling"; 68535 68356 license = stdenv.lib.licenses.bsd3; 68536 - hydraPlatforms = stdenv.lib.platforms.none; 68537 68357 }) {}; 68538 68358 68539 68359 "easyjson" = callPackage ··· 69378 69198 libraryHaskellDepends = [ base ]; 69379 69199 description = "Either or both"; 69380 69200 license = stdenv.lib.licenses.bsd3; 69201 + hydraPlatforms = stdenv.lib.platforms.none; 69381 69202 }) {}; 69382 69203 69383 69204 "either-list-functions" = callPackage ··· 72711 72532 , interpolate, lifted-async, lifted-base, machines, monad-control 72712 72533 , monad-logger, mono-traversable, mtl, protobuf, random 72713 72534 , safe-exceptions, semigroups, stm, stm-chans, tasty, tasty-hspec 72714 - , tasty-hunit, text, text-format, time, transformers-base 72715 - , unordered-containers, uuid 72716 - }: 72717 - mkDerivation { 72718 - pname = "eventstore"; 72719 - version = "1.1.2"; 72720 - sha256 = "1f2pqmsppln3p0zfw35hck5784np9hhs3f5f6h6j12k43gyj3847"; 72721 - libraryHaskellDepends = [ 72722 - aeson array base bifunctors bytestring cereal clock connection 72723 - containers dns dotnet-timespan ekg-core exceptions fast-logger 72724 - hashable http-client interpolate lifted-async lifted-base machines 72725 - monad-control monad-logger mono-traversable mtl protobuf random 72726 - safe-exceptions semigroups stm stm-chans text text-format time 72727 - transformers-base unordered-containers uuid 72728 - ]; 72729 - testHaskellDepends = [ 72730 - aeson async base bytestring cereal connection containers 72731 - dotnet-timespan exceptions fast-logger hashable lifted-async 72732 - lifted-base monad-control mono-traversable protobuf safe-exceptions 72733 - semigroups stm stm-chans tasty tasty-hspec tasty-hunit text time 72734 - transformers-base unordered-containers uuid 72735 - ]; 72736 - homepage = "https://github.com/YoEight/eventstore#readme"; 72737 - description = "EventStore TCP Client"; 72738 - license = stdenv.lib.licenses.bsd3; 72739 - platforms = [ "x86_64-darwin" "x86_64-linux" ]; 72740 - hydraPlatforms = stdenv.lib.platforms.none; 72741 - }) {}; 72742 - 72743 - "eventstore_1_1_3" = callPackage 72744 - ({ mkDerivation, aeson, array, async, base, bifunctors, bytestring 72745 - , cereal, clock, connection, containers, dns, dotnet-timespan 72746 - , ekg-core, exceptions, fast-logger, hashable, http-client 72747 - , interpolate, lifted-async, lifted-base, machines, monad-control 72748 - , monad-logger, mono-traversable, mtl, protobuf, random 72749 - , safe-exceptions, semigroups, stm, stm-chans, tasty, tasty-hspec 72750 72535 , tasty-hunit, text, time, transformers-base, unordered-containers 72751 72536 , uuid 72752 72537 }: ··· 73377 73162 description = "Monad transformer for exit codes"; 73378 73163 license = stdenv.lib.licenses.bsd3; 73379 73164 hydraPlatforms = stdenv.lib.platforms.none; 73165 + }) {}; 73166 + 73167 + "exp-cache" = callPackage 73168 + ({ mkDerivation, array, base, containers, criterion, deepseq 73169 + , hashable, HUnit, psqueues, QuickCheck, random, tasty, tasty-hunit 73170 + , tasty-quickcheck, time, unordered-containers 73171 + }: 73172 + mkDerivation { 73173 + pname = "exp-cache"; 73174 + version = "0.1.0.0"; 73175 + sha256 = "01y5kxskbai7a34xkr1b0clsawj3583m3m7l86zziyjfsbn048nm"; 73176 + isLibrary = true; 73177 + isExecutable = true; 73178 + libraryHaskellDepends = [ 73179 + array base containers deepseq hashable psqueues random time 73180 + unordered-containers 73181 + ]; 73182 + executableHaskellDepends = [ base criterion random ]; 73183 + testHaskellDepends = [ 73184 + base HUnit QuickCheck random tasty tasty-hunit tasty-quickcheck 73185 + ]; 73186 + homepage = "https://github.com/ChrisCoffey/exp-cache#readme"; 73187 + license = stdenv.lib.licenses.mit; 73380 73188 }) {}; 73381 73189 73382 73190 "exp-extended" = callPackage ··· 73472 73280 }: 73473 73281 mkDerivation { 73474 73282 pname = "expiring-containers"; 73475 - version = "0.1.2"; 73476 - sha256 = "10j5hqlp7bmiywa79xcgp1a87x6a9kxvzdg061innyh08344k0sv"; 73283 + version = "0.2"; 73284 + sha256 = "1bqcxq42x4s8kj7wpa9iqgaxww6m7vqzkd2dakry1ssy9dv8wp28"; 73477 73285 libraryHaskellDepends = [ 73478 73286 base containers hashable int-multimap time timestamp 73479 73287 unordered-containers ··· 73672 73480 testHaskellDepends = [ base singletons text ]; 73673 73481 description = "Expressions and Formulae a la carte"; 73674 73482 license = stdenv.lib.licenses.bsd3; 73483 + hydraPlatforms = stdenv.lib.platforms.none; 73675 73484 }) {}; 73676 73485 73677 73486 "expressions-z3" = callPackage ··· 73769 73578 "extensible" = callPackage 73770 73579 ({ mkDerivation, aeson, base, bytestring, cassava, comonad 73771 73580 , constraints, deepseq, ghc-prim, hashable, lens, monad-skeleton 73772 - , mtl, primitive, profunctors, QuickCheck, semigroups, StateVar 73773 - , tagged, template-haskell, text, transformers 73774 - , unordered-containers, vector 73775 - }: 73776 - mkDerivation { 73777 - pname = "extensible"; 73778 - version = "0.4.8"; 73779 - sha256 = "1bm7yqshaknnd50yf6bgb6qxl2lv21pqxhb674v3ifpwx1swrkm2"; 73780 - libraryHaskellDepends = [ 73781 - aeson base bytestring cassava comonad constraints deepseq ghc-prim 73782 - hashable monad-skeleton mtl primitive profunctors QuickCheck 73783 - semigroups StateVar tagged template-haskell text transformers 73784 - unordered-containers vector 73785 - ]; 73786 - testHaskellDepends = [ base lens QuickCheck template-haskell ]; 73787 - homepage = "https://github.com/fumieval/extensible"; 73788 - description = "Extensible, efficient, optics-friendly data types and effects"; 73789 - license = stdenv.lib.licenses.bsd3; 73790 - }) {}; 73791 - 73792 - "extensible_0_4_9" = callPackage 73793 - ({ mkDerivation, aeson, base, bytestring, cassava, comonad 73794 - , constraints, deepseq, ghc-prim, hashable, lens, monad-skeleton 73795 73581 , mtl, prettyprinter, primitive, profunctors, QuickCheck 73796 73582 , semigroups, StateVar, tagged, template-haskell, text, th-lift 73797 73583 , transformers, unordered-containers, vector ··· 73810 73596 homepage = "https://github.com/fumieval/extensible"; 73811 73597 description = "Extensible, efficient, optics-friendly data types and effects"; 73812 73598 license = stdenv.lib.licenses.bsd3; 73813 - hydraPlatforms = stdenv.lib.platforms.none; 73814 73599 }) {}; 73815 73600 73816 73601 "extensible-data" = callPackage ··· 74091 73876 }: 74092 73877 mkDerivation { 74093 73878 pname = "factory"; 74094 - version = "0.3.1.4"; 74095 - sha256 = "0k5bb0imp001f1sj785qqy9k67wvb91mr4fpdcg5riykiv8j9l1x"; 73879 + version = "0.3.2.0"; 73880 + sha256 = "1ihyqs8b2rgxny69iqaxh55a2pkamp4mb4i3gcy9c6pphjrbmyz3"; 74096 73881 isLibrary = true; 74097 73882 isExecutable = true; 74098 73883 libraryHaskellDepends = [ ··· 74106 73891 array base containers data-default deepseq primes QuickCheck random 74107 73892 toolshed 74108 73893 ]; 74109 - homepage = "http://functionalley.eu/Factory/factory.html"; 73894 + homepage = "https://functionalley.eu/Factory/factory.html"; 74110 73895 description = "Rational arithmetic in an irrational world"; 74111 73896 license = "GPL"; 74112 73897 }) {}; ··· 80132 79917 homepage = "https://github.com/george-steel/frpnow-gtk3"; 80133 79918 description = "Program GUIs with GTK3 and frpnow!"; 80134 79919 license = stdenv.lib.licenses.bsd3; 79920 + hydraPlatforms = stdenv.lib.platforms.none; 80135 79921 }) {}; 80136 79922 80137 79923 "frpnow-vty" = callPackage ··· 80264 80050 }) {}; 80265 80051 80266 80052 "fsnotify-conduit" = callPackage 80267 - ({ mkDerivation, async, base, conduit, directory, filepath 80268 - , fsnotify, hspec, resourcet, temporary, transformers 80269 - }: 80270 - mkDerivation { 80271 - pname = "fsnotify-conduit"; 80272 - version = "0.1.0.0"; 80273 - sha256 = "17qf175bsn1sw0n4sz3mjd3bcmxy6qmy7df8c6275jfxvr9djnwj"; 80274 - libraryHaskellDepends = [ 80275 - base conduit directory filepath fsnotify resourcet transformers 80276 - ]; 80277 - testHaskellDepends = [ 80278 - async base conduit directory filepath hspec resourcet temporary 80279 - transformers 80280 - ]; 80281 - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; 80282 - description = "Get filesystem notifications as a stream of events"; 80283 - license = stdenv.lib.licenses.mit; 80284 - hydraPlatforms = stdenv.lib.platforms.none; 80285 - }) {}; 80286 - 80287 - "fsnotify-conduit_0_1_1_0" = callPackage 80288 80053 ({ mkDerivation, base, conduit, directory, filepath, fsnotify 80289 80054 , hspec, resourcet, temporary, transformers 80290 80055 }: ··· 80947 80712 homepage = "https://github.com/tweag/funflow"; 80948 80713 description = "Workflows with arrows"; 80949 80714 license = stdenv.lib.licenses.mit; 80715 + hydraPlatforms = stdenv.lib.platforms.none; 80950 80716 }) {}; 80951 80717 80952 80718 "funion" = callPackage ··· 84466 84232 }: 84467 84233 mkDerivation { 84468 84234 pname = "ghc-prof"; 84469 - version = "1.4.1.1"; 84470 - sha256 = "1zxk2fs0zykpqklyfwssbi5hfmzm7hc1yx8l8x1fy29qxim3y2z5"; 84471 - isLibrary = true; 84472 - isExecutable = true; 84473 - libraryHaskellDepends = [ 84474 - attoparsec base containers scientific text time 84475 - ]; 84476 - testHaskellDepends = [ 84477 - attoparsec base containers directory filepath process tasty 84478 - tasty-hunit temporary text 84479 - ]; 84480 - homepage = "https://github.com/maoe/ghc-prof"; 84481 - description = "Library for parsing GHC time and allocation profiling reports"; 84482 - license = stdenv.lib.licenses.bsd3; 84483 - }) {}; 84484 - 84485 - "ghc-prof_1_4_1_2" = callPackage 84486 - ({ mkDerivation, attoparsec, base, containers, directory, filepath 84487 - , process, scientific, tasty, tasty-hunit, temporary, text, time 84488 - }: 84489 - mkDerivation { 84490 - pname = "ghc-prof"; 84491 84235 version = "1.4.1.2"; 84492 84236 sha256 = "0rippzp76g2zn8vhxfkvpf9r2l62lid6525ym6zz1pyq4xzsbqrf"; 84493 84237 isLibrary = true; ··· 84502 84246 homepage = "https://github.com/maoe/ghc-prof"; 84503 84247 description = "Library for parsing GHC time and allocation profiling reports"; 84504 84248 license = stdenv.lib.licenses.bsd3; 84505 - hydraPlatforms = stdenv.lib.platforms.none; 84506 84249 }) {}; 84507 84250 84508 84251 "ghc-prof-aeson" = callPackage ··· 84664 84407 homepage = "https://github.com/mrkkrp/ghc-syntax-highlighter"; 84665 84408 description = "Syntax highlighter for Haskell using lexer of GHC itself"; 84666 84409 license = stdenv.lib.licenses.bsd3; 84410 + hydraPlatforms = stdenv.lib.platforms.none; 84667 84411 }) {}; 84668 84412 84669 84413 "ghc-tcplugins-extra" = callPackage ··· 85423 85167 }: 85424 85168 mkDerivation { 85425 85169 pname = "gi-cairo"; 85426 - version = "1.0.15"; 85427 - sha256 = "1hm8bcd6j11dimb3ksfjkcqf9wqa9frq1jyjpbr2j5s8srrf7031"; 85428 - setupHaskellDepends = [ base Cabal haskell-gi ]; 85429 - libraryHaskellDepends = [ 85430 - base bytestring containers haskell-gi haskell-gi-base 85431 - haskell-gi-overloading text transformers 85432 - ]; 85433 - libraryPkgconfigDepends = [ cairo ]; 85434 - doHaddock = false; 85435 - preCompileBuildDriver = '' 85436 - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" 85437 - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" 85438 - ''; 85439 - homepage = "https://github.com/haskell-gi/haskell-gi"; 85440 - description = "Cairo bindings"; 85441 - license = stdenv.lib.licenses.lgpl21; 85442 - hydraPlatforms = stdenv.lib.platforms.none; 85443 - }) {inherit (pkgs) cairo;}; 85444 - 85445 - "gi-cairo_1_0_17" = callPackage 85446 - ({ mkDerivation, base, bytestring, Cabal, cairo, containers 85447 - , haskell-gi, haskell-gi-base, haskell-gi-overloading, text 85448 - , transformers 85449 - }: 85450 - mkDerivation { 85451 - pname = "gi-cairo"; 85452 85170 version = "1.0.17"; 85453 85171 sha256 = "1ax7aly9ahvb18m3zjmy0dk47qfdx5yl15q52c3wp4wa0c5aggax"; 85454 85172 setupHaskellDepends = [ base Cabal haskell-gi ]; ··· 91187 90905 homepage = "https://grapefruit-project.org/"; 91188 90906 description = "GTK+-based backend for declarative user interface programming"; 91189 90907 license = stdenv.lib.licenses.bsd3; 90908 + hydraPlatforms = stdenv.lib.platforms.none; 91190 90909 }) {}; 91191 90910 91192 90911 "graph-core" = callPackage ··· 91721 91440 91722 91441 "graphviz" = callPackage 91723 91442 ({ mkDerivation, base, bytestring, colour, containers, criterion 91724 - , deepseq, directory, dlist, fgl, fgl-arbitrary, filepath 91725 - , polyparse, process, QuickCheck, temporary, text, transformers 91726 - , wl-pprint-text 91443 + , deepseq, directory, dlist, fgl, fgl-arbitrary, filepath, hspec 91444 + , hspec-discover, mtl, polyparse, process, QuickCheck, temporary 91445 + , text, wl-pprint-text 91727 91446 }: 91728 91447 mkDerivation { 91729 91448 pname = "graphviz"; 91730 - version = "2999.19.0.0"; 91731 - sha256 = "1sh4zqirblgnkmi4pl6fhd084p3mdx242db5wqikzpn9jzqpy2mg"; 91449 + version = "2999.20.0.1"; 91450 + sha256 = "147pwfswjkpmby55j5dwwhrvxpy63gzybrrq6zs4r22mrkcpjx94"; 91732 91451 isLibrary = true; 91733 91452 isExecutable = true; 91734 91453 libraryHaskellDepends = [ 91735 - base bytestring colour containers directory dlist fgl filepath 91736 - polyparse process temporary text transformers wl-pprint-text 91454 + base bytestring colour containers directory dlist fgl filepath mtl 91455 + polyparse process temporary text wl-pprint-text 91737 91456 ]; 91738 91457 testHaskellDepends = [ 91739 - base containers fgl fgl-arbitrary filepath QuickCheck text 91458 + base containers fgl fgl-arbitrary filepath hspec hspec-discover 91459 + QuickCheck text 91740 91460 ]; 91741 91461 benchmarkHaskellDepends = [ base criterion deepseq text ]; 91742 91462 homepage = "http://projects.haskell.org/graphviz/"; ··· 95448 95168 }: 95449 95169 mkDerivation { 95450 95170 pname = "hailgun"; 95451 - version = "0.4.1.7"; 95452 - sha256 = "1ldh6q96xz2a8frvgq29j3gr8jc2m0rx652215bm8w99mbq4pcri"; 95453 - libraryHaskellDepends = [ 95454 - aeson base bytestring email-validate exceptions filepath 95455 - http-client http-client-tls http-types tagsoup text time 95456 - transformers 95457 - ]; 95458 - homepage = "https://bitbucket.org/robertmassaioli/hailgun"; 95459 - description = "Mailgun REST api interface for Haskell"; 95460 - license = stdenv.lib.licenses.mit; 95461 - }) {}; 95462 - 95463 - "hailgun_0_4_1_8" = callPackage 95464 - ({ mkDerivation, aeson, base, bytestring, email-validate 95465 - , exceptions, filepath, http-client, http-client-tls, http-types 95466 - , tagsoup, text, time, transformers 95467 - }: 95468 - mkDerivation { 95469 - pname = "hailgun"; 95470 95171 version = "0.4.1.8"; 95471 95172 sha256 = "1hyww94b0ndfypk47iffvfxm96m24ygrbm26a820arpcmxkp7k4x"; 95472 95173 libraryHaskellDepends = [ ··· 95477 95178 homepage = "https://bitbucket.org/robertmassaioli/hailgun"; 95478 95179 description = "Mailgun REST api interface for Haskell"; 95479 95180 license = stdenv.lib.licenses.mit; 95480 - hydraPlatforms = stdenv.lib.platforms.none; 95481 95181 }) {}; 95482 95182 95483 95183 "hailgun-send" = callPackage ··· 96719 96419 license = stdenv.lib.licenses.mit; 96720 96420 }) {}; 96721 96421 96422 + "hapistrano_0_3_5_6" = callPackage 96423 + ({ mkDerivation, aeson, async, base, directory, filepath 96424 + , formatting, gitrev, hspec, mtl, optparse-applicative, path 96425 + , path-io, process, stm, temporary, time, transformers, yaml 96426 + }: 96427 + mkDerivation { 96428 + pname = "hapistrano"; 96429 + version = "0.3.5.6"; 96430 + sha256 = "0viv359hv3wzdhnfzmq4ynbxyr3a347q7ixarwff85nn9zx7kw2c"; 96431 + isLibrary = true; 96432 + isExecutable = true; 96433 + enableSeparateDataOutput = true; 96434 + libraryHaskellDepends = [ 96435 + base filepath formatting gitrev mtl path process time transformers 96436 + ]; 96437 + executableHaskellDepends = [ 96438 + aeson async base formatting gitrev optparse-applicative path 96439 + path-io stm yaml 96440 + ]; 96441 + testHaskellDepends = [ 96442 + base directory filepath hspec mtl path path-io process temporary 96443 + ]; 96444 + homepage = "https://github.com/stackbuilders/hapistrano"; 96445 + description = "A deployment library for Haskell applications"; 96446 + license = stdenv.lib.licenses.mit; 96447 + hydraPlatforms = stdenv.lib.platforms.none; 96448 + }) {}; 96449 + 96722 96450 "happindicator" = callPackage 96723 96451 ({ mkDerivation, array, base, bytestring, containers, glib, gtk 96724 96452 , gtk2hs-buildtools, libappindicator-gtk2, mtl ··· 98482 98210 homepage = "http://github.com/grwlf/haskdogs"; 98483 98211 description = "Generate tags file for Haskell project and its nearest deps"; 98484 98212 license = stdenv.lib.licenses.bsd3; 98213 + hydraPlatforms = stdenv.lib.platforms.none; 98485 98214 }) {}; 98486 98215 98487 98216 "haskeem" = callPackage ··· 100889 100618 100890 100619 "haskey-mtl" = callPackage 100891 100620 ({ mkDerivation, base, binary, exceptions, haskey, haskey-btree 100892 - , lens, mtl, text, transformers 100621 + , lens, monad-control, mtl, text, transformers, transformers-base 100893 100622 }: 100894 100623 mkDerivation { 100895 100624 pname = "haskey-mtl"; 100896 - version = "0.3.0.1"; 100897 - sha256 = "0n0wrk9sh62x87ms3fxnaj68jm91qdjd4265wk8x3lm66xw6vigw"; 100625 + version = "0.3.1.0"; 100626 + sha256 = "154jny8frg61amsyh15w4n6clj9alp8rsa8qxgg9xh8xj2i01yqz"; 100898 100627 libraryHaskellDepends = [ 100899 - base exceptions haskey haskey-btree mtl transformers 100628 + base exceptions haskey haskey-btree monad-control mtl transformers 100629 + transformers-base 100900 100630 ]; 100901 100631 testHaskellDepends = [ 100902 100632 base binary exceptions haskey haskey-btree lens mtl text ··· 101399 101129 homepage = "http://github.com/MarcWeber/hasktags"; 101400 101130 description = "Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"; 101401 101131 license = stdenv.lib.licenses.bsd3; 101132 + hydraPlatforms = stdenv.lib.platforms.none; 101402 101133 }) {}; 101403 101134 101404 101135 "haskus-binary" = callPackage ··· 101615 101346 hydraPlatforms = stdenv.lib.platforms.none; 101616 101347 }) {}; 101617 101348 101349 + "hasql_1_3" = callPackage 101350 + ({ mkDerivation, attoparsec, base, base-prelude, bug, bytestring 101351 + , bytestring-strict-builder, contravariant, contravariant-extras 101352 + , criterion, data-default-class, dlist, hashable, hashtables 101353 + , loch-th, mtl, placeholders, postgresql-binary, postgresql-libpq 101354 + , profunctors, QuickCheck, quickcheck-instances, rebase, rerebase 101355 + , semigroups, tasty, tasty-hunit, tasty-quickcheck, text 101356 + , text-builder, transformers, vector 101357 + }: 101358 + mkDerivation { 101359 + pname = "hasql"; 101360 + version = "1.3"; 101361 + sha256 = "1xqw967jzn8jsyzhfnfyvqgaqr0sb9qppv3knxxvsji15hj5zrid"; 101362 + libraryHaskellDepends = [ 101363 + attoparsec base base-prelude bytestring bytestring-strict-builder 101364 + contravariant contravariant-extras data-default-class dlist 101365 + hashable hashtables loch-th mtl placeholders postgresql-binary 101366 + postgresql-libpq profunctors semigroups text text-builder 101367 + transformers vector 101368 + ]; 101369 + testHaskellDepends = [ 101370 + bug data-default-class QuickCheck quickcheck-instances rebase 101371 + rerebase tasty tasty-hunit tasty-quickcheck 101372 + ]; 101373 + benchmarkHaskellDepends = [ bug criterion rerebase ]; 101374 + homepage = "https://github.com/nikita-volkov/hasql"; 101375 + description = "An efficient PostgreSQL driver and a flexible mapping API"; 101376 + license = stdenv.lib.licenses.mit; 101377 + hydraPlatforms = stdenv.lib.platforms.none; 101378 + }) {}; 101379 + 101618 101380 "hasql-backend" = callPackage 101619 101381 ({ mkDerivation, base, base-prelude, bytestring, either, free 101620 101382 , list-t, text, transformers, vector ··· 101665 101427 }: 101666 101428 mkDerivation { 101667 101429 pname = "hasql-cursor-query"; 101668 - version = "0.4.4"; 101669 - sha256 = "0xbnhgix1g4sf2cpimz77ljiwm79l4lnx1ys7q31rak1fyw7fgs0"; 101430 + version = "0.4.4.1"; 101431 + sha256 = "1lc3x3pwfahm81pfncky6mqsz6fjyj0szwi4qhf1k1drx36wr3db"; 101670 101432 libraryHaskellDepends = [ 101671 101433 base base-prelude bytestring contravariant foldl hasql 101672 101434 hasql-cursor-transaction hasql-transaction profunctors ··· 101750 101512 }: 101751 101513 mkDerivation { 101752 101514 pname = "hasql-optparse-applicative"; 101753 - version = "0.3"; 101754 - sha256 = "05i9hij1z67l1sc53swwcmd88544dypc3qkzkh8f4n6nlmv82190"; 101755 - libraryHaskellDepends = [ 101756 - base-prelude hasql hasql-pool optparse-applicative 101757 - ]; 101758 - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; 101759 - description = "\"optparse-applicative\" parsers for \"hasql\""; 101760 - license = stdenv.lib.licenses.mit; 101761 - hydraPlatforms = stdenv.lib.platforms.none; 101762 - }) {}; 101763 - 101764 - "hasql-optparse-applicative_0_3_0_1" = callPackage 101765 - ({ mkDerivation, base-prelude, hasql, hasql-pool 101766 - , optparse-applicative 101767 - }: 101768 - mkDerivation { 101769 - pname = "hasql-optparse-applicative"; 101770 101515 version = "0.3.0.1"; 101771 101516 sha256 = "19a31qg4fj74qcjrf6ng11za7zbywg08hnls4pri816fwkjdjs9k"; 101772 101517 libraryHaskellDepends = [ ··· 101897 101642 hydraPlatforms = stdenv.lib.platforms.none; 101898 101643 }) {}; 101899 101644 101645 + "hasql-transaction_0_7" = callPackage 101646 + ({ mkDerivation, async, base, base-prelude, bytestring 101647 + , bytestring-tree-builder, contravariant, contravariant-extras 101648 + , hasql, mtl, rebase, transformers 101649 + }: 101650 + mkDerivation { 101651 + pname = "hasql-transaction"; 101652 + version = "0.7"; 101653 + sha256 = "1kvzj16mw471z2vgm27k0nfwfgf5cq3w6qaqwqz4247p11dkrjyy"; 101654 + libraryHaskellDepends = [ 101655 + base base-prelude bytestring bytestring-tree-builder contravariant 101656 + contravariant-extras hasql mtl transformers 101657 + ]; 101658 + testHaskellDepends = [ async hasql rebase ]; 101659 + homepage = "https://github.com/nikita-volkov/hasql-transaction"; 101660 + description = "A composable abstraction over the retryable transactions for Hasql"; 101661 + license = stdenv.lib.licenses.mit; 101662 + hydraPlatforms = stdenv.lib.platforms.none; 101663 + }) {}; 101664 + 101900 101665 "hastache" = callPackage 101901 101666 ({ mkDerivation, base, blaze-builder, bytestring, containers 101902 101667 , directory, filepath, HUnit, ieee754, mtl, process, syb, text ··· 105054 104819 }) {}; 105055 104820 105056 104821 "hexmino" = callPackage 105057 - ({ mkDerivation, base, containers, directory, filepath, gloss 104822 + ({ mkDerivation, base, containers, directory, filepath, gloss, grid 105058 104823 , optparse-applicative, random 105059 104824 }: 105060 104825 mkDerivation { 105061 104826 pname = "hexmino"; 105062 - version = "0.1.0.0"; 105063 - sha256 = "0s8sqpqirnnm9jp1lmifywy7ad6vxpj8k85nfyh4zjqybrs2m2p9"; 104827 + version = "0.1.1.0"; 104828 + sha256 = "0l6gjjbzz2sa17b8glyiknf1ndwkp3089af52pj8fw6cg9ckvspx"; 105064 104829 isLibrary = false; 105065 104830 isExecutable = true; 105066 104831 executableHaskellDepends = [ 105067 - base containers directory filepath gloss optparse-applicative 104832 + base containers directory filepath gloss grid optparse-applicative 105068 104833 random 105069 104834 ]; 105070 104835 homepage = "https://github.com/pasqu4le/hexmino"; 105071 104836 description = "A small game based on domino-like hexagonal tiles"; 105072 104837 license = stdenv.lib.licenses.bsd3; 104838 + hydraPlatforms = stdenv.lib.platforms.none; 105073 104839 }) {}; 105074 104840 105075 104841 "hexml" = callPackage ··· 105398 105164 }: 105399 105165 mkDerivation { 105400 105166 pname = "hfmt"; 105401 - version = "0.2.1"; 105402 - sha256 = "06g3l0qbj1bdrxis9ryl3cgmhs129l1lfiah5kpn0xbv1h3p3id5"; 105167 + version = "0.2.2"; 105168 + sha256 = "0xjh952djxb490nig2aj9y5461ka33d3qdlrfkxb7iz7pqmmr6fs"; 105403 105169 isLibrary = true; 105404 105170 isExecutable = true; 105405 105171 libraryHaskellDepends = [ ··· 105446 105212 }: 105447 105213 mkDerivation { 105448 105214 pname = "hformat"; 105449 - version = "0.3.1.0"; 105450 - sha256 = "1lf6x8y81jxvynid1k3588kbc7xk331bp6c4hnd8x19l0jvp4shd"; 105451 - libraryHaskellDepends = [ 105452 - ansi-terminal base base-unicode-symbols text 105453 - ]; 105454 - testHaskellDepends = [ base base-unicode-symbols hspec text ]; 105455 - homepage = "http://github.com/mvoidex/hformat"; 105456 - description = "Simple Haskell formatting"; 105457 - license = stdenv.lib.licenses.bsd3; 105458 - }) {}; 105459 - 105460 - "hformat_0_3_2_0" = callPackage 105461 - ({ mkDerivation, ansi-terminal, base, base-unicode-symbols, hspec 105462 - , text 105463 - }: 105464 - mkDerivation { 105465 - pname = "hformat"; 105466 105215 version = "0.3.2.0"; 105467 105216 sha256 = "1761gw0g7ar4ls4pzm8vq3k48nckd4lliq7f9s7br961215sjgx9"; 105468 105217 libraryHaskellDepends = [ ··· 105472 105221 homepage = "http://github.com/mvoidex/hformat"; 105473 105222 description = "Simple Haskell formatting"; 105474 105223 license = stdenv.lib.licenses.bsd3; 105475 - hydraPlatforms = stdenv.lib.platforms.none; 105476 105224 }) {}; 105477 105225 105478 105226 "hfov" = callPackage ··· 106757 106505 homepage = "https://github.com/strake/hint.hs"; 106758 106506 description = "Runtime Haskell interpreter (GHC API wrapper)"; 106759 106507 license = stdenv.lib.licenses.bsd3; 106508 + hydraPlatforms = stdenv.lib.platforms.none; 106760 106509 }) {}; 106761 106510 106762 106511 "hinterface" = callPackage ··· 113514 113263 }: 113515 113264 mkDerivation { 113516 113265 pname = "hsimport"; 113517 - version = "0.8.5"; 113518 - sha256 = "05gdzl4h67rjpw2nhk6dvd9l8lmx1kdg4cy9hmk5l36vrk8s9ic6"; 113266 + version = "0.8.6"; 113267 + sha256 = "0ylbg5bcylc0gql0qvmih66dj1qj8imn31b6bl70mynwkqh96g1d"; 113519 113268 isLibrary = true; 113520 113269 isExecutable = true; 113521 113270 libraryHaskellDepends = [ ··· 118518 118267 }: 118519 118268 mkDerivation { 118520 118269 pname = "hw-prim"; 118521 - version = "0.5.0.3"; 118522 - sha256 = "1cnh8qm4kz4fxh34wn9039dxbb54mwhkls21m5s73q773q9fx4rz"; 118270 + version = "0.5.0.5"; 118271 + sha256 = "1bl1jfdcp8vpl83qcnq168rnvmpl4kxz7mv94vzal8mi2sw7iilk"; 118523 118272 libraryHaskellDepends = [ base bytestring mmap vector ]; 118524 118273 testHaskellDepends = [ 118525 118274 base bytestring directory exceptions hedgehog hspec ··· 123093 122842 homepage = "http://github.com/GregorySchwartz/integreat#readme"; 123094 122843 description = "Integrate different assays"; 123095 122844 license = stdenv.lib.licenses.gpl3; 122845 + hydraPlatforms = stdenv.lib.platforms.none; 123096 122846 }) {}; 123097 122847 123098 122848 "intel-aes" = callPackage ··· 124136 123886 }: 124137 123887 mkDerivation { 124138 123888 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124139 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124140 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124141 - libraryHaskellDepends = [ 124142 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124143 - ]; 124144 - testHaskellDepends = [ 124145 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124146 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124147 - ]; 124148 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124149 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124150 - license = stdenv.lib.licenses.bsd3; 124151 - }) {}; 124152 - 124153 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124154 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124155 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124156 - }: 124157 - mkDerivation { 124158 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124159 123889 version = "1.7.5"; 124160 123890 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124161 123891 libraryHaskellDepends = [ ··· 124168 123898 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124169 123899 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 124170 123900 license = stdenv.lib.licenses.bsd3; 124171 - hydraPlatforms = stdenv.lib.platforms.none; 124172 123901 }) {}; 124173 123902 124174 123903 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; ··· 127113 126842 }) {}; 127114 126843 127115 126844 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127116 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127117 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127118 - , text, transformers, unordered-containers, vector 127119 - }: 127120 - mkDerivation { 127121 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127122 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127123 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127124 - libraryHaskellDepends = [ 127125 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127126 - scientific text transformers unordered-containers vector 127127 - ]; 127128 - testHaskellDepends = [ 127129 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127130 - ]; 127131 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127132 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127133 - license = stdenv.lib.licenses.bsd3; 127134 - }) {}; 127135 - 127136 - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127137 126845 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127138 126846 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127139 126847 , transformers, unordered-containers, vector ··· 127152 126860 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127153 126861 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; 127154 126862 license = stdenv.lib.licenses.bsd3; 127155 - hydraPlatforms = stdenv.lib.platforms.none; 127156 126863 }) {}; 127157 126864 127158 126865 sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; ··· 129582 129289 homepage = "https://github.com/phadej/kleene"; 129583 129290 description = "Kleene algebra"; 129584 129291 license = stdenv.lib.licenses.bsd3; 129292 + hydraPlatforms = stdenv.lib.platforms.none; 129585 129293 }) {}; 129586 129294 129587 129295 "kmeans" = callPackage ··· 132547 132255 }: 132548 132256 mkDerivation { 132549 132257 pname = "layers-game"; 132550 - version = "0.5.2"; 132551 - sha256 = "1k39264jwysaiyq9f40n332y2xckhwsbh8fpsz4l14qwlvj68vzx"; 132258 + version = "0.5.3"; 132259 + sha256 = "050l8fd77xhl4fqhl8s1c22gdww3if69mzflgrai9gwq31kiasp3"; 132552 132260 isLibrary = false; 132553 132261 isExecutable = true; 132554 132262 enableSeparateDataOutput = true; ··· 134948 134656 homepage = "https://github.com/mvv/lifted-stm"; 134949 134657 description = "STM operations lifted through monad transformer stacks"; 134950 134658 license = stdenv.lib.licenses.bsd3; 134659 + hydraPlatforms = stdenv.lib.platforms.none; 134951 134660 }) {}; 134952 134661 134953 134662 "lifted-threads" = callPackage ··· 137536 137245 homepage = "https://github.com/greydot/log-effect-syslog"; 137537 137246 description = "Syslog functions for log-effect"; 137538 137247 license = stdenv.lib.licenses.bsd3; 137248 + hydraPlatforms = stdenv.lib.platforms.none; 137539 137249 }) {}; 137540 137250 137541 137251 "log-elasticsearch" = callPackage ··· 144973 144683 }) {}; 144974 144684 144975 144685 "mmark-ext" = callPackage 144976 - ({ mkDerivation, base, foldl, hspec, lucid, microlens, mmark 144977 - , modern-uri, skylighting, text 144978 - }: 144979 - mkDerivation { 144980 - pname = "mmark-ext"; 144981 - version = "0.2.0.0"; 144982 - sha256 = "1ccfdjsn8z80x2m5p9q17r2hf14zj63nkxkrg9s7knwr1j08gj1k"; 144983 - revision = "2"; 144984 - editedCabalFile = "0h47hy97mdan3cnxppf0yarmis81irc0c92nm1xv9f6w35li7rkq"; 144985 - enableSeparateDataOutput = true; 144986 - libraryHaskellDepends = [ 144987 - base foldl lucid microlens mmark modern-uri skylighting text 144988 - ]; 144989 - testHaskellDepends = [ base hspec lucid mmark text ]; 144990 - homepage = "https://github.com/mmark-md/mmark-ext"; 144991 - description = "Commonly useful extensions for MMark markdown processor"; 144992 - license = stdenv.lib.licenses.bsd3; 144993 - }) {}; 144994 - 144995 - "mmark-ext_0_2_1_0" = callPackage 144996 144686 ({ mkDerivation, base, foldl, hspec, hspec-discover, lucid 144997 144687 , microlens, mmark, modern-uri, skylighting, text 144998 144688 }: ··· 145009 144699 homepage = "https://github.com/mmark-md/mmark-ext"; 145010 144700 description = "Commonly useful extensions for the MMark markdown processor"; 145011 144701 license = stdenv.lib.licenses.bsd3; 145012 - hydraPlatforms = stdenv.lib.platforms.none; 145013 144702 }) {}; 145014 144703 145015 144704 "mmorph" = callPackage ··· 147555 147244 }: 147556 147245 mkDerivation { 147557 147246 pname = "morte"; 147558 - version = "1.6.18"; 147559 - sha256 = "1cnwk2rihbywwkpxw7bd22zh33hkffpaza7d4crr5x2p7rdvhmjp"; 147560 - isLibrary = true; 147561 - isExecutable = true; 147562 - enableSeparateDataOutput = true; 147563 - libraryHaskellDepends = [ 147564 - array base binary containers deepseq Earley formatting http-client 147565 - http-client-tls microlens microlens-mtl pipes system-fileio 147566 - system-filepath text transformers 147567 - ]; 147568 - libraryToolDepends = [ alex ]; 147569 - executableHaskellDepends = [ 147570 - base code-page formatting optparse-applicative text 147571 - ]; 147572 - testHaskellDepends = [ 147573 - base mtl QuickCheck system-filepath tasty tasty-hunit 147574 - tasty-quickcheck text transformers 147575 - ]; 147576 - benchmarkHaskellDepends = [ base criterion system-filepath text ]; 147577 - description = "A bare-bones calculus of constructions"; 147578 - license = stdenv.lib.licenses.bsd3; 147579 - }) {}; 147580 - 147581 - "morte_1_6_19" = callPackage 147582 - ({ mkDerivation, alex, array, base, binary, code-page, containers 147583 - , criterion, deepseq, Earley, formatting, http-client 147584 - , http-client-tls, microlens, microlens-mtl, mtl 147585 - , optparse-applicative, pipes, QuickCheck, system-fileio 147586 - , system-filepath, tasty, tasty-hunit, tasty-quickcheck, text 147587 - , transformers 147588 - }: 147589 - mkDerivation { 147590 - pname = "morte"; 147591 147247 version = "1.6.19"; 147592 147248 sha256 = "1mqkjdn3hr3ihjai9qpcfrbn318pkddnlkck96v8byfmil6d4dph"; 147593 147249 isLibrary = true; ··· 147609 147265 benchmarkHaskellDepends = [ base criterion system-filepath text ]; 147610 147266 description = "A bare-bones calculus of constructions"; 147611 147267 license = stdenv.lib.licenses.bsd3; 147612 - hydraPlatforms = stdenv.lib.platforms.none; 147613 147268 }) {}; 147614 147269 147615 147270 "mosaico-lib" = callPackage ··· 152440 152095 }: 152441 152096 mkDerivation { 152442 152097 pname = "network-simple"; 152443 - version = "0.4.0.5"; 152444 - sha256 = "1akarns88nhrkm47nl20mg2s2r8in339j2jcv6h0z3gnxc4v8iq9"; 152445 - libraryHaskellDepends = [ 152446 - base bytestring exceptions network transformers 152447 - ]; 152448 - homepage = "https://github.com/k0001/network-simple"; 152449 - description = "Simple network sockets usage patterns"; 152450 - license = stdenv.lib.licenses.bsd3; 152451 - }) {}; 152452 - 152453 - "network-simple_0_4_1" = callPackage 152454 - ({ mkDerivation, base, bytestring, exceptions, network 152455 - , transformers 152456 - }: 152457 - mkDerivation { 152458 - pname = "network-simple"; 152459 152098 version = "0.4.1"; 152460 152099 sha256 = "07cvvgbp8cbwh1x7ii326d97hfmqwiyiqhkg8dqypzwzfwb3mgkj"; 152461 152100 libraryHaskellDepends = [ ··· 152464 152103 homepage = "https://github.com/k0001/network-simple"; 152465 152104 description = "Simple network sockets usage patterns"; 152466 152105 license = stdenv.lib.licenses.bsd3; 152467 - hydraPlatforms = stdenv.lib.platforms.none; 152468 152106 }) {}; 152469 152107 152470 152108 "network-simple-sockaddr" = callPackage ··· 154565 154203 }: 154566 154204 mkDerivation { 154567 154205 pname = "numbers"; 154568 - version = "3000.2.0.1"; 154569 - sha256 = "10z1bi5qbc81z5xx2v1ylwcpmcfl1ci7lxrswkgi0dd1wi8havbk"; 154570 - libraryHaskellDepends = [ base ]; 154571 - testHaskellDepends = [ 154572 - base QuickCheck test-framework test-framework-quickcheck2 154573 - ]; 154574 - homepage = "https://github.com/jwiegley/numbers#readme"; 154575 - description = "Various number types"; 154576 - license = stdenv.lib.licenses.bsd3; 154577 - }) {}; 154578 - 154579 - "numbers_3000_2_0_2" = callPackage 154580 - ({ mkDerivation, base, QuickCheck, test-framework 154581 - , test-framework-quickcheck2 154582 - }: 154583 - mkDerivation { 154584 - pname = "numbers"; 154585 154206 version = "3000.2.0.2"; 154586 154207 sha256 = "0xssrf7lbyplkgnbfw1jqkib3w9wgn1d6n85pk86nx63j05y9kph"; 154587 154208 libraryHaskellDepends = [ base ]; ··· 154591 154212 homepage = "https://github.com/jwiegley/numbers#readme"; 154592 154213 description = "Various number types"; 154593 154214 license = stdenv.lib.licenses.bsd3; 154594 - hydraPlatforms = stdenv.lib.platforms.none; 154595 154215 }) {}; 154596 154216 154597 154217 "numerals" = callPackage ··· 156245 155865 ({ mkDerivation, aeson, base, base16-bytestring, bytestring 156246 155866 , case-insensitive, containers, contravariant, dotenv, hspec 156247 155867 , hspec-discover, multiset, postgresql-simple, pretty 156248 - , product-profunctors, profunctors, QuickCheck, semigroups, text 156249 - , time, time-locale-compat, transformers, uuid, void 156250 - }: 156251 - mkDerivation { 156252 - pname = "opaleye"; 156253 - version = "0.6.1.0"; 156254 - sha256 = "0vjiwpdrff4nrs5ww8q3j77ysrq0if20yfk4gy182lr7nzhhwz0l"; 156255 - revision = "1"; 156256 - editedCabalFile = "07sz4a506hlx8da2ppiglja6hm9ipb2myh6s702ac6xx700cnl7f"; 156257 - libraryHaskellDepends = [ 156258 - aeson base base16-bytestring bytestring case-insensitive 156259 - contravariant postgresql-simple pretty product-profunctors 156260 - profunctors semigroups text time time-locale-compat transformers 156261 - uuid void 156262 - ]; 156263 - testHaskellDepends = [ 156264 - aeson base containers contravariant dotenv hspec hspec-discover 156265 - multiset postgresql-simple product-profunctors profunctors 156266 - QuickCheck semigroups text time transformers 156267 - ]; 156268 - homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; 156269 - description = "An SQL-generating DSL targeting PostgreSQL"; 156270 - license = stdenv.lib.licenses.bsd3; 156271 - }) {}; 156272 - 156273 - "opaleye_0_6_7000_0" = callPackage 156274 - ({ mkDerivation, aeson, base, base16-bytestring, bytestring 156275 - , case-insensitive, containers, contravariant, dotenv, hspec 156276 - , hspec-discover, multiset, postgresql-simple, pretty 156277 155868 , product-profunctors, profunctors, QuickCheck, scientific 156278 155869 , semigroups, text, time, time-locale-compat, transformers, uuid 156279 155870 , void ··· 156298 155889 homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; 156299 155890 description = "An SQL-generating DSL targeting PostgreSQL"; 156300 155891 license = stdenv.lib.licenses.bsd3; 156301 - hydraPlatforms = stdenv.lib.platforms.none; 156302 155892 }) {}; 156303 155893 156304 155894 "opaleye-classy" = callPackage ··· 159293 158883 broken = true; 159294 158884 }) {lazysmallcheck2012 = null;}; 159295 158885 158886 + "panic" = callPackage 158887 + ({ mkDerivation, base, gitrev, template-haskell }: 158888 + mkDerivation { 158889 + pname = "panic"; 158890 + version = "0.4.0.0"; 158891 + sha256 = "12m18s4d8xvwwf4vhv4p544h03abgkjx7bfwl22gxr1y8f7gb8wl"; 158892 + libraryHaskellDepends = [ base gitrev template-haskell ]; 158893 + description = "A convenient way to panic"; 158894 + license = stdenv.lib.licenses.isc; 158895 + }) {}; 158896 + 159296 158897 "panpipe" = callPackage 159297 158898 ({ mkDerivation, base, pandoc, pandoc-types, process, QuickCheck 159298 158899 , tasty, tasty-quickcheck, temporary, unix ··· 162339 161940 ]; 162340 161941 description = "Permutations of finite sets"; 162341 161942 license = stdenv.lib.licenses.bsd3; 161943 + hydraPlatforms = stdenv.lib.platforms.none; 162342 161944 }) {}; 162343 161945 162344 161946 "permute" = callPackage ··· 163982 163584 }: 163983 163585 mkDerivation { 163984 163586 pname = "pinboard"; 163985 - version = "0.9.12.9"; 163986 - sha256 = "0h2w2ah7cqv0blb2pcdlzd4ww1f92x5ixr5ksqdqdcyzij2pbmbn"; 163987 - libraryHaskellDepends = [ 163988 - aeson base bytestring containers http-client http-client-tls 163989 - http-types monad-logger mtl network profunctors random 163990 - safe-exceptions text time transformers unordered-containers vector 163991 - ]; 163992 - testHaskellDepends = [ 163993 - aeson base bytestring containers hspec mtl QuickCheck 163994 - safe-exceptions semigroups text time transformers 163995 - unordered-containers 163996 - ]; 163997 - homepage = "https://github.com/jonschoning/pinboard"; 163998 - description = "Access to the Pinboard API"; 163999 - license = stdenv.lib.licenses.mit; 164000 - }) {}; 164001 - 164002 - "pinboard_0_9_12_10" = callPackage 164003 - ({ mkDerivation, aeson, base, bytestring, containers, hspec 164004 - , http-client, http-client-tls, http-types, monad-logger, mtl 164005 - , network, profunctors, QuickCheck, random, safe-exceptions 164006 - , semigroups, text, time, transformers, unordered-containers 164007 - , vector 164008 - }: 164009 - mkDerivation { 164010 - pname = "pinboard"; 164011 163587 version = "0.9.12.10"; 164012 163588 sha256 = "0jdhckdlpmgqrp8xy7m285w7kclg8dpl02szl6fd6iwzs8l8vjds"; 164013 163589 libraryHaskellDepends = [ ··· 164023 163599 homepage = "https://github.com/jonschoning/pinboard"; 164024 163600 description = "Access to the Pinboard API"; 164025 163601 license = stdenv.lib.licenses.mit; 164026 - hydraPlatforms = stdenv.lib.platforms.none; 164027 163602 }) {}; 164028 163603 164029 163604 "pinch" = callPackage ··· 164305 163880 }: 164306 163881 mkDerivation { 164307 163882 pname = "pipes-binary"; 164308 - version = "0.4.1"; 164309 - sha256 = "0dyng5pvyjw7bjflzfbrkwq99qzyc4a2rh0nlidjhy95ixs7jvhv"; 163883 + version = "0.4.2"; 163884 + sha256 = "1s3462i85zd6byr18mfabfmiapb0yy3fnrsaw6mnasw19kyxjngn"; 164310 163885 libraryHaskellDepends = [ 164311 163886 base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse 164312 163887 transformers ··· 164879 164454 license = stdenv.lib.licenses.bsd3; 164880 164455 }) {}; 164881 164456 164457 + "pipes-misc_0_5_0_0" = callPackage 164458 + ({ mkDerivation, base, clock, Decimal, hspec, lens, mmorph, mtl 164459 + , pipes, pipes-category, pipes-concurrency, semigroups, stm 164460 + , transformers 164461 + }: 164462 + mkDerivation { 164463 + pname = "pipes-misc"; 164464 + version = "0.5.0.0"; 164465 + sha256 = "09ldpgza3yanpbsd6g2nlm352fwynq38sf226yp5kip0dqwpwbjf"; 164466 + libraryHaskellDepends = [ 164467 + base clock Decimal lens mmorph mtl pipes pipes-category 164468 + pipes-concurrency semigroups stm transformers 164469 + ]; 164470 + testHaskellDepends = [ 164471 + base hspec lens mmorph pipes pipes-concurrency stm transformers 164472 + ]; 164473 + homepage = "https://github.com/louispan/pipes-misc#readme"; 164474 + description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; 164475 + license = stdenv.lib.licenses.bsd3; 164476 + hydraPlatforms = stdenv.lib.platforms.none; 164477 + }) {}; 164478 + 164882 164479 "pipes-mongodb" = callPackage 164883 164480 ({ mkDerivation, base, monad-control, mongoDB, pipes, text }: 164884 164481 mkDerivation { ··· 164894 164491 }) {}; 164895 164492 164896 164493 "pipes-network" = callPackage 164897 - ({ mkDerivation, base, bytestring, network, network-simple, pipes 164898 - , pipes-safe, transformers 164899 - }: 164900 - mkDerivation { 164901 - pname = "pipes-network"; 164902 - version = "0.6.4.1"; 164903 - sha256 = "1bx0a7whir2g83q80m145nl13271sfl5jrvdjlaailp2g3n4lqm8"; 164904 - revision = "1"; 164905 - editedCabalFile = "0i7iyzsj6hax7k66rcrkqgkd7z5z65ak77jmg9mdlm13q12r6kih"; 164906 - libraryHaskellDepends = [ 164907 - base bytestring network network-simple pipes pipes-safe 164908 - transformers 164909 - ]; 164910 - homepage = "https://github.com/k0001/pipes-network"; 164911 - description = "Use network sockets together with the pipes library"; 164912 - license = stdenv.lib.licenses.bsd3; 164913 - }) {}; 164914 - 164915 - "pipes-network_0_6_5" = callPackage 164916 164494 ({ mkDerivation, base, bytestring, exceptions, network 164917 164495 , network-simple, pipes, pipes-safe, transformers 164918 164496 }: ··· 164927 164505 homepage = "https://github.com/k0001/pipes-network"; 164928 164506 description = "Use network sockets together with the pipes library"; 164929 164507 license = stdenv.lib.licenses.bsd3; 164930 - hydraPlatforms = stdenv.lib.platforms.none; 164931 164508 }) {}; 164932 164509 164933 164510 "pipes-network-tls" = callPackage ··· 167446 167023 }) {}; 167447 167024 167448 167025 "postgresql-binary" = callPackage 167449 - ({ mkDerivation, aeson, base, base-prelude, binary-parser 167450 - , bytestring, bytestring-strict-builder, containers, conversion 167451 - , conversion-bytestring, conversion-text, criterion, json-ast 167452 - , loch-th, network-ip, placeholders, postgresql-libpq, QuickCheck 167453 - , quickcheck-instances, rerebase, scientific, tasty, tasty-hunit 167454 - , tasty-quickcheck, tasty-smallcheck, text, time, transformers 167455 - , unordered-containers, uuid, vector 167456 - }: 167457 - mkDerivation { 167458 - pname = "postgresql-binary"; 167459 - version = "0.12.1"; 167460 - sha256 = "1kb52676dz76z7blvzrfsbwaa1harnrmg0zhwlhg429d21n9y2m2"; 167461 - libraryHaskellDepends = [ 167462 - aeson base base-prelude binary-parser bytestring 167463 - bytestring-strict-builder containers loch-th network-ip 167464 - placeholders scientific text time transformers unordered-containers 167465 - uuid vector 167466 - ]; 167467 - testHaskellDepends = [ 167468 - aeson conversion conversion-bytestring conversion-text json-ast 167469 - loch-th network-ip placeholders postgresql-libpq QuickCheck 167470 - quickcheck-instances rerebase tasty tasty-hunit tasty-quickcheck 167471 - tasty-smallcheck 167472 - ]; 167473 - benchmarkHaskellDepends = [ criterion rerebase ]; 167474 - homepage = "https://github.com/nikita-volkov/postgresql-binary"; 167475 - description = "Encoders and decoders for the PostgreSQL's binary format"; 167476 - license = stdenv.lib.licenses.mit; 167477 - hydraPlatforms = stdenv.lib.platforms.none; 167478 - }) {}; 167479 - 167480 - "postgresql-binary_0_12_1_1" = callPackage 167481 167026 ({ mkDerivation, aeson, base, base-prelude, binary-parser 167482 167027 , bytestring, bytestring-strict-builder, containers, conversion 167483 167028 , conversion-bytestring, conversion-text, criterion, json-ast ··· 171127 170672 license = stdenv.lib.licenses.bsd3; 171128 170673 }) {}; 171129 170674 170675 + "protobuf_0_2_1_2" = callPackage 170676 + ({ mkDerivation, base, base-orphans, bytestring, cereal, containers 170677 + , data-binary-ieee754, deepseq, hex, HUnit, mtl, QuickCheck, tagged 170678 + , tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers 170679 + }: 170680 + mkDerivation { 170681 + pname = "protobuf"; 170682 + version = "0.2.1.2"; 170683 + sha256 = "1php9pydbh2jyr5x6h1i218w8kqwys5aniz2zm1hapv6ia8p3j5k"; 170684 + libraryHaskellDepends = [ 170685 + base base-orphans bytestring cereal data-binary-ieee754 deepseq mtl 170686 + text unordered-containers 170687 + ]; 170688 + testHaskellDepends = [ 170689 + base bytestring cereal containers hex HUnit mtl QuickCheck tagged 170690 + tasty tasty-hunit tasty-quickcheck text unordered-containers 170691 + ]; 170692 + homepage = "https://github.com/alphaHeavy/protobuf"; 170693 + description = "Google Protocol Buffers via GHC.Generics"; 170694 + license = stdenv.lib.licenses.bsd3; 170695 + hydraPlatforms = stdenv.lib.platforms.none; 170696 + }) {}; 170697 + 171130 170698 "protobuf-native" = callPackage 171131 170699 ({ mkDerivation, base, bytestring, cereal, cplusplus-th, criterion 171132 170700 , hprotoc-fork, protobuf, protocol-buffers-fork, QuickCheck ··· 174720 174288 }: 174721 174289 mkDerivation { 174722 174290 pname = "rakuten"; 174723 - version = "0.1.1.2"; 174724 - sha256 = "153801dij5i5byf151xf39anz005i3w7xmmkk434xr6zxc8jm604"; 174725 - libraryHaskellDepends = [ 174726 - aeson base bytestring connection constraints data-default-class 174727 - extensible http-api-data http-client http-client-tls http-types 174728 - lens req text 174729 - ]; 174730 - testHaskellDepends = [ 174731 - aeson base bytestring connection constraints data-default-class 174732 - extensible hspec http-api-data http-client http-client-tls 174733 - http-types lens req servant-server text warp 174734 - ]; 174735 - homepage = "https://github.com/matsubara0507/rakuten#readme"; 174736 - description = "The Rakuten API in Haskell"; 174737 - license = stdenv.lib.licenses.mit; 174738 - }) {}; 174739 - 174740 - "rakuten_0_1_1_3" = callPackage 174741 - ({ mkDerivation, aeson, base, bytestring, connection, constraints 174742 - , data-default-class, extensible, hspec, http-api-data, http-client 174743 - , http-client-tls, http-types, lens, req, servant-server, text 174744 - , warp 174745 - }: 174746 - mkDerivation { 174747 - pname = "rakuten"; 174748 174291 version = "0.1.1.3"; 174749 174292 sha256 = "1c578rmjrb8x26c9b0fraz2l6a7d01wky8arzwa1kigfgw9ihqxh"; 174750 174293 libraryHaskellDepends = [ ··· 174760 174303 homepage = "https://github.com/matsubara0507/rakuten#readme"; 174761 174304 description = "The Rakuten API in Haskell"; 174762 174305 license = stdenv.lib.licenses.mit; 174763 - hydraPlatforms = stdenv.lib.platforms.none; 174764 174306 }) {}; 174765 174307 174766 174308 "ralist" = callPackage ··· 175214 174756 }) {}; 175215 174757 175216 174758 "range-set-list" = callPackage 175217 - ({ mkDerivation, base, containers, deepseq, hashable, semigroups 175218 - , tasty, tasty-quickcheck 174759 + ({ mkDerivation, base, containers, deepseq, hashable, tasty 174760 + , tasty-quickcheck 175219 174761 }: 175220 174762 mkDerivation { 175221 174763 pname = "range-set-list"; 175222 - version = "0.1.2.0"; 175223 - sha256 = "0rxb5dq228xypnilqvjyn97knlzfc7fl771w4qgziwfw8zs9qx1v"; 175224 - revision = "1"; 175225 - editedCabalFile = "061xbyarcjr4bcb08a5xyzqiyvagn9729p6hk5kzayzlkscx16j2"; 175226 - libraryHaskellDepends = [ 175227 - base containers deepseq hashable semigroups 175228 - ]; 174764 + version = "0.1.2.1"; 174765 + sha256 = "06f8z9rmk2phmds9wv95y2xvjhfx8dr9jbqlv4ybv8m21283x0kw"; 174766 + libraryHaskellDepends = [ base containers deepseq hashable ]; 175229 174767 testHaskellDepends = [ 175230 - base containers deepseq hashable semigroups tasty tasty-quickcheck 174768 + base containers deepseq hashable tasty tasty-quickcheck 175231 174769 ]; 175232 174770 homepage = "https://github.com/phadej/range-set-list#readme"; 175233 174771 description = "Memory efficient sets with ranges of elements"; ··· 176287 175825 }: 176288 175826 mkDerivation { 176289 175827 pname = "reactive-banana-automation"; 176290 - version = "0.4.0"; 176291 - sha256 = "1zc24p1jqild85k049ixbfcdhxdy66l4m5ddr1g3bkxq8apilnrr"; 175828 + version = "0.5.0"; 175829 + sha256 = "10lg4s6c29xb1j9icda1aywh64ybnk7d3hw3wl69rcwlqp52635a"; 176292 175830 libraryHaskellDepends = [ 176293 175831 base reactive-banana stm time transformers 176294 175832 ]; ··· 189387 188925 ({ mkDerivation, base, containers, mtl, syb }: 189388 188926 mkDerivation { 189389 188927 pname = "set-extra"; 189390 - version = "1.4"; 189391 - sha256 = "0cwppi2kyqcyn338nmpmkyvwhn7xcp7yfgkgpsmmkwhin0hyxnr9"; 188928 + version = "1.4.1"; 188929 + sha256 = "10kbvd09hp12rlfkc15xqiglrbxzi7gchb0aazqyg77ah66wjn10"; 189392 188930 libraryHaskellDepends = [ base containers mtl syb ]; 189393 188931 homepage = "https://github.com/ddssff/set-extra"; 189394 188932 description = "Functions that could be added to Data.Set."; ··· 190897 190435 ]; 190898 190436 description = "Implementation of Shivers' Control-Flow Analysis"; 190899 190437 license = stdenv.lib.licenses.bsd3; 190438 + hydraPlatforms = stdenv.lib.platforms.none; 190900 190439 }) {}; 190901 190440 190902 190441 "shoap" = callPackage ··· 191753 191292 }: 191754 191293 mkDerivation { 191755 191294 pname = "simple-log"; 191756 - version = "0.9.3"; 191757 - sha256 = "0i58x3gasg1gda7yx9r155ap6w7mamafcqi5jpq4adm9wx4gy4ph"; 191295 + version = "0.9.4"; 191296 + sha256 = "0chp90h9112sxa7ds0ldzdp59i6b1vy7chkqcb6d5mb9faq6vjqi"; 191758 191297 libraryHaskellDepends = [ 191759 191298 async base base-unicode-symbols containers data-default deepseq 191760 191299 directory exceptions filepath hformat microlens microlens-platform ··· 193511 193050 ({ mkDerivation, base, ghc-prim, logict, mtl, pretty }: 193512 193051 mkDerivation { 193513 193052 pname = "smallcheck"; 193514 - version = "1.1.3.1"; 193515 - sha256 = "1lmx0sxkhryra7laln8m7z0518jshahsvz121xybajjcz9pz3xcz"; 193516 - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; 193517 - homepage = "https://github.com/feuerbach/smallcheck"; 193518 - description = "A property-based testing library"; 193519 - license = stdenv.lib.licenses.bsd3; 193520 - }) {}; 193521 - 193522 - "smallcheck_1_1_4" = callPackage 193523 - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty }: 193524 - mkDerivation { 193525 - pname = "smallcheck"; 193526 193053 version = "1.1.4"; 193527 193054 sha256 = "0x2p9rfsx0hvcmsq7v1m5qdgs9mvf4zrcpz4wywn4q8mr8hb416y"; 193528 193055 libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; 193529 193056 homepage = "https://github.com/feuerbach/smallcheck"; 193530 193057 description = "A property-based testing library"; 193531 193058 license = stdenv.lib.licenses.bsd3; 193532 - hydraPlatforms = stdenv.lib.platforms.none; 193533 193059 }) {}; 193534 193060 193535 193061 "smallcheck-laws" = callPackage ··· 199785 199311 homepage = "https://github.com/jonpetterbergman/step-function"; 199786 199312 description = "Staircase functions or piecewise constant functions"; 199787 199313 license = stdenv.lib.licenses.bsd3; 199314 + hydraPlatforms = stdenv.lib.platforms.none; 199788 199315 }) {}; 199789 199316 199790 199317 "stepwise" = callPackage ··· 201153 200680 }: 201154 200681 mkDerivation { 201155 200682 pname = "streaming-with"; 201156 - version = "0.2.1.1"; 201157 - sha256 = "0wyq183z10sr0sdx28n316x22f4h8v67cg164qir3fb7q09pmqbg"; 200683 + version = "0.2.2.1"; 200684 + sha256 = "005krn43z92x1v8w8pgfx489h3livkklgrr7s2i2wijgsz55xp09"; 201158 200685 libraryHaskellDepends = [ 201159 200686 base exceptions managed streaming-bytestring temporary transformers 201160 200687 ]; ··· 202378 201905 homepage = "http://github.com/GregorySchwartz/subsample#readme"; 202379 201906 description = "Subsample data"; 202380 201907 license = stdenv.lib.licenses.gpl3; 201908 + hydraPlatforms = stdenv.lib.platforms.none; 202381 201909 }) {}; 202382 201910 202383 201911 "substring-parser" = callPackage ··· 204969 204497 homepage = "http://github.com/taffybar/taffybar"; 204970 204498 description = "A desktop bar similar to xmobar, but with more GUI"; 204971 204499 license = stdenv.lib.licenses.bsd3; 204500 + hydraPlatforms = stdenv.lib.platforms.none; 204972 204501 }) {}; 204973 204502 204974 204503 "tag-bits" = callPackage ··· 205908 205437 }: 205909 205438 mkDerivation { 205910 205439 pname = "tasty-ant-xml"; 205911 - version = "1.1.3"; 205912 - sha256 = "0nxrvxk83mv29yhywswg21q156zdzs02xrwqambnz78pldsrbk4n"; 205913 - libraryHaskellDepends = [ 205914 - base containers directory filepath generic-deriving ghc-prim mtl 205915 - stm tagged tasty transformers xml 205916 - ]; 205917 - homepage = "http://github.com/ocharles/tasty-ant-xml"; 205918 - description = "Render tasty output to XML for Jenkins"; 205919 - license = stdenv.lib.licenses.bsd3; 205920 - }) {}; 205921 - 205922 - "tasty-ant-xml_1_1_4" = callPackage 205923 - ({ mkDerivation, base, containers, directory, filepath 205924 - , generic-deriving, ghc-prim, mtl, stm, tagged, tasty, transformers 205925 - , xml 205926 - }: 205927 - mkDerivation { 205928 - pname = "tasty-ant-xml"; 205929 205440 version = "1.1.4"; 205930 205441 sha256 = "0v0gsb90kh6hwlgxbclzawsskywc6yf7n8xhiifia97l4y0yx2m8"; 205931 205442 libraryHaskellDepends = [ ··· 205935 205446 homepage = "http://github.com/ocharles/tasty-ant-xml"; 205936 205447 description = "Render tasty output to XML for Jenkins"; 205937 205448 license = stdenv.lib.licenses.bsd3; 205938 - hydraPlatforms = stdenv.lib.platforms.none; 205939 205449 }) {}; 205940 205450 205941 205451 "tasty-auto" = callPackage ··· 206344 205854 }: 206345 205855 mkDerivation { 206346 205856 pname = "tasty-rerun"; 206347 - version = "1.1.11"; 206348 - sha256 = "0nk2qfdhdl71xcr0rwixmwwsyr74dy4hjwalhs4p4am2bhpfva5s"; 206349 - libraryHaskellDepends = [ 206350 - base containers mtl optparse-applicative reducers split stm tagged 206351 - tasty transformers 206352 - ]; 206353 - homepage = "http://github.com/ocharles/tasty-rerun"; 206354 - description = "Run tests by filtering the test tree depending on the result of previous test runs"; 206355 - license = stdenv.lib.licenses.bsd3; 206356 - }) {}; 206357 - 206358 - "tasty-rerun_1_1_12" = callPackage 206359 - ({ mkDerivation, base, containers, mtl, optparse-applicative 206360 - , reducers, split, stm, tagged, tasty, transformers 206361 - }: 206362 - mkDerivation { 206363 - pname = "tasty-rerun"; 206364 205857 version = "1.1.12"; 206365 205858 sha256 = "05lp4zy6lwd916snq6hs43848n62j9vdfl3s8sfivqydrax0vvd8"; 206366 205859 libraryHaskellDepends = [ ··· 206370 205863 homepage = "http://github.com/ocharles/tasty-rerun"; 206371 205864 description = "Run tests by filtering the test tree depending on the result of previous test runs"; 206372 205865 license = stdenv.lib.licenses.bsd3; 206373 - hydraPlatforms = stdenv.lib.platforms.none; 206374 205866 }) {}; 206375 205867 206376 205868 "tasty-silver" = callPackage ··· 206415 205907 }: 206416 205908 mkDerivation { 206417 205909 pname = "tasty-stats"; 206418 - version = "0.2.0.3"; 206419 - sha256 = "1jyywffrs270rvf8k9zc82b7fqqv6x1czk6qlbi6sq9z1wgs5w1b"; 206420 - revision = "2"; 206421 - editedCabalFile = "1gkan66glb235kakvwkidmxd0cn7s9405w3njiwa5k6cvkpkny4x"; 206422 - libraryHaskellDepends = [ 206423 - base containers directory process stm tagged tasty time 206424 - ]; 206425 - homepage = "https://github.com/minad/tasty-stats#readme"; 206426 - description = "Collect statistics of your Tasty testsuite in a CSV file"; 206427 - license = stdenv.lib.licenses.mit; 206428 - }) {}; 206429 - 206430 - "tasty-stats_0_2_0_4" = callPackage 206431 - ({ mkDerivation, base, containers, directory, process, stm, tagged 206432 - , tasty, time 206433 - }: 206434 - mkDerivation { 206435 - pname = "tasty-stats"; 206436 205910 version = "0.2.0.4"; 206437 205911 sha256 = "0z244l1yl1m77i4nvs9db2v6a2ydgcpgyc78hzgfyin7as002kd6"; 206438 205912 libraryHaskellDepends = [ ··· 206441 205915 homepage = "https://github.com/minad/tasty-stats#readme"; 206442 205916 description = "Collect statistics of your Tasty testsuite"; 206443 205917 license = stdenv.lib.licenses.mit; 206444 - hydraPlatforms = stdenv.lib.platforms.none; 206445 205918 }) {}; 206446 205919 206447 205920 "tasty-tap" = callPackage ··· 208797 208270 ]; 208798 208271 description = "ICU transliteration"; 208799 208272 license = stdenv.lib.licenses.bsd3; 208273 + hydraPlatforms = stdenv.lib.platforms.none; 208800 208274 }) {inherit (pkgs) icu;}; 208801 208275 208802 208276 "text-json-qq" = callPackage ··· 209959 209433 }) {}; 209960 209434 209961 209435 "th-lift" = callPackage 209962 - ({ mkDerivation, base, ghc-prim, template-haskell }: 209963 - mkDerivation { 209964 - pname = "th-lift"; 209965 - version = "0.7.8"; 209966 - sha256 = "0ay10b78x3969rpqqrgzy8srkl6iby2cljbf3mm17na8x22k7y1c"; 209967 - libraryHaskellDepends = [ base ghc-prim template-haskell ]; 209968 - testHaskellDepends = [ base ghc-prim template-haskell ]; 209969 - homepage = "http://github.com/mboes/th-lift"; 209970 - description = "Derive Template Haskell's Lift class for datatypes"; 209971 - license = stdenv.lib.licenses.bsd3; 209972 - }) {}; 209973 - 209974 - "th-lift_0_7_10" = callPackage 209975 209436 ({ mkDerivation, base, ghc-prim, template-haskell, th-abstraction 209976 209437 }: 209977 209438 mkDerivation { ··· 209985 209446 homepage = "http://github.com/mboes/th-lift"; 209986 209447 description = "Derive Template Haskell's Lift class for datatypes"; 209987 209448 license = stdenv.lib.licenses.bsd3; 209988 - hydraPlatforms = stdenv.lib.platforms.none; 209989 209449 }) {}; 209990 209450 209991 209451 "th-lift-instances" = callPackage ··· 210588 210048 homepage = "http://www.haskell.org/haskellwiki/ThreadScope"; 210589 210049 description = "A graphical tool for profiling parallel Haskell programs"; 210590 210050 license = stdenv.lib.licenses.bsd3; 210051 + hydraPlatforms = stdenv.lib.platforms.none; 210591 210052 }) {}; 210592 210053 210593 210054 "threefish" = callPackage ··· 212009 211470 license = stdenv.lib.licenses.bsd3; 212010 211471 }) {}; 212011 211472 211473 + "tintin" = callPackage 211474 + ({ mkDerivation, base, clay, data-has, directory, frontmatter 211475 + , inliterate, lucid, optparse-generic, process, temporary, text 211476 + , universum, yaml 211477 + }: 211478 + mkDerivation { 211479 + pname = "tintin"; 211480 + version = "1.2.4"; 211481 + sha256 = "1jfnw911jfa9wn1inldz3qry238hrl276yb9f690c59yb3zcnvjh"; 211482 + isLibrary = true; 211483 + isExecutable = true; 211484 + libraryHaskellDepends = [ 211485 + base clay data-has directory frontmatter inliterate lucid process 211486 + temporary text universum yaml 211487 + ]; 211488 + executableHaskellDepends = [ base optparse-generic universum ]; 211489 + testHaskellDepends = [ base ]; 211490 + homepage = "https://github.com/theam/tintin#readme"; 211491 + description = "A softer alternative to Haddock"; 211492 + license = stdenv.lib.licenses.asl20; 211493 + }) {}; 211494 + 212012 211495 "tiny-scheduler" = callPackage 212013 211496 ({ mkDerivation, async, base, time }: 212014 211497 mkDerivation { ··· 212766 212249 }: 212767 212250 mkDerivation { 212768 212251 pname = "tomland"; 212769 - version = "0.0.0"; 212770 - sha256 = "1z6xlaw7fvl95h5nhd1r87bn8y3xv5gmfwfvryaj7hn06ghw13z2"; 212252 + version = "0.1.0"; 212253 + sha256 = "1f31awp7qy1npm4nnyk25lf4cng942mbfm7mmvglr0h7c1y11wpc"; 212771 212254 isLibrary = true; 212772 212255 isExecutable = true; 212773 212256 libraryHaskellDepends = [ ··· 214855 214338 homepage = "https://github.com/entropia/tip-toi-reveng"; 214856 214339 description = "Working with files for the Tiptoi® pen"; 214857 214340 license = stdenv.lib.licenses.mit; 214341 + hydraPlatforms = stdenv.lib.platforms.none; 214858 214342 }) {}; 214859 214343 214860 214344 "tubes" = callPackage ··· 217653 217137 homepage = "https://github.com/singpolyma/unexceptionalio-trans"; 217654 217138 description = "A wrapper around UnexceptionalIO using monad transformers"; 217655 217139 license = "unknown"; 217140 + hydraPlatforms = stdenv.lib.platforms.none; 217656 217141 }) {}; 217657 217142 217658 217143 "unfoldable" = callPackage ··· 221533 221018 ({ mkDerivation, base, bytes, tasty, tasty-quickcheck, vector }: 221534 221019 mkDerivation { 221535 221020 pname = "vector-bytes-instances"; 221536 - version = "0.1"; 221537 - sha256 = "1bmss8s8cp123s77dppma7k3p0b8cnhk16li5hnm369264h0zfga"; 221021 + version = "0.1.1"; 221022 + sha256 = "0i4cxgm984qs5ldp1x7m9blxh8wd5y8acy2ic8kpgaak8pzycrkn"; 221538 221023 libraryHaskellDepends = [ base bytes vector ]; 221539 221024 testHaskellDepends = [ base bytes tasty tasty-quickcheck vector ]; 221540 221025 homepage = "https://github.com/k0001/vector-bytes-instances"; ··· 222031 221516 ]; 222032 221517 description = "An intermediate language for Hoare logic style verification"; 222033 221518 license = stdenv.lib.licenses.asl20; 221519 + hydraPlatforms = stdenv.lib.platforms.none; 222034 221520 }) {}; 222035 221521 222036 221522 "verify" = callPackage ··· 224473 223959 }) {}; 224474 223960 224475 223961 "wai-session" = callPackage 224476 - ({ mkDerivation, base, blaze-builder, bytestring, containers 224477 - , cookie, http-types, StateVar, time, transformers, vault, wai 224478 - }: 224479 - mkDerivation { 224480 - pname = "wai-session"; 224481 - version = "0.3.2"; 224482 - sha256 = "09l3gj8l127iybr8h4xcjxxcgz5b1mcy5iyyaidixnzi7jlrqww3"; 224483 - libraryHaskellDepends = [ 224484 - base blaze-builder bytestring containers cookie http-types StateVar 224485 - time transformers vault wai 224486 - ]; 224487 - homepage = "https://github.com/singpolyma/wai-session"; 224488 - description = "Flexible session middleware for WAI"; 224489 - license = "unknown"; 224490 - }) {}; 224491 - 224492 - "wai-session_0_3_3" = callPackage 224493 223962 ({ mkDerivation, base, blaze-builder, bytestring 224494 223963 , bytestring-builder, containers, cookie, entropy, http-types 224495 223964 , StateVar, time, transformers, vault, wai ··· 224505 223974 homepage = "https://github.com/singpolyma/wai-session"; 224506 223975 description = "Flexible session middleware for WAI"; 224507 223976 license = "unknown"; 224508 - hydraPlatforms = stdenv.lib.platforms.none; 224509 223977 }) {}; 224510 223978 224511 223979 "wai-session-alt" = callPackage ··· 225589 225057 }: 225590 225058 mkDerivation { 225591 225059 pname = "web3"; 225592 - version = "0.7.2.0"; 225593 - sha256 = "15d0l5cvrncwmy27qk7y7f54snw1fjcsll52sdlmk3v2mpf6nppn"; 225060 + version = "0.7.3.0"; 225061 + sha256 = "1ff52krn6vylz8fjbj6224q48lg6cz4glg6xl9sgrz36ayliv0mg"; 225594 225062 libraryHaskellDepends = [ 225595 225063 aeson async base basement bytestring cereal cryptonite data-default 225596 225064 exceptions generics-sop http-client machines memory mtl parsec ··· 226159 225627 }: 226160 225628 mkDerivation { 226161 225629 pname = "websockets-snap"; 226162 - version = "0.10.2.5"; 226163 - sha256 = "14kxk6x5pygxlyn6421lkmc3lld5r545zq5qx6098mgn6bg2yknj"; 226164 - libraryHaskellDepends = [ 226165 - base bytestring bytestring-builder io-streams mtl snap-core 226166 - snap-server websockets 226167 - ]; 226168 - description = "Snap integration for the websockets library"; 226169 - license = stdenv.lib.licenses.bsd3; 226170 - }) {}; 226171 - 226172 - "websockets-snap_0_10_3_0" = callPackage 226173 - ({ mkDerivation, base, bytestring, bytestring-builder, io-streams 226174 - , mtl, snap-core, snap-server, websockets 226175 - }: 226176 - mkDerivation { 226177 - pname = "websockets-snap"; 226178 225630 version = "0.10.3.0"; 226179 225631 sha256 = "1r1v6ypnaap99vy2gh3lmghqv2y3zaaq0wiv4d2bn49179c40jmk"; 226180 225632 libraryHaskellDepends = [ ··· 226183 225635 ]; 226184 225636 description = "Snap integration for the websockets library"; 226185 225637 license = stdenv.lib.licenses.bsd3; 226186 - hydraPlatforms = stdenv.lib.platforms.none; 226187 225638 }) {}; 226188 225639 226189 225640 "webwire" = callPackage ··· 226265 225716 ({ mkDerivation, base, deepseq, mtl, process, split, temporary }: 226266 225717 mkDerivation { 226267 225718 pname = "weigh"; 226268 - version = "0.0.11"; 226269 - sha256 = "0q4l2npli78w3p74rsh56q1azwh07856ckip9v3vmw53xzx0n42l"; 226270 - libraryHaskellDepends = [ 226271 - base deepseq mtl process split temporary 226272 - ]; 226273 - testHaskellDepends = [ base deepseq ]; 226274 - homepage = "https://github.com/fpco/weigh#readme"; 226275 - description = "Measure allocations of a Haskell functions/values"; 226276 - license = stdenv.lib.licenses.bsd3; 226277 - }) {}; 226278 - 226279 - "weigh_0_0_12" = callPackage 226280 - ({ mkDerivation, base, deepseq, mtl, process, split, temporary }: 226281 - mkDerivation { 226282 - pname = "weigh"; 226283 225719 version = "0.0.12"; 226284 225720 sha256 = "0zw2a997gxgdzqmd7j730kxgynzmjvvlkw84dajmfzf1v9pbij7x"; 226285 225721 libraryHaskellDepends = [ ··· 226289 225725 homepage = "https://github.com/fpco/weigh#readme"; 226290 225726 description = "Measure allocations of a Haskell functions/values"; 226291 225727 license = stdenv.lib.licenses.bsd3; 226292 - hydraPlatforms = stdenv.lib.platforms.none; 226293 225728 }) {}; 226294 225729 226295 225730 "weighted" = callPackage ··· 227279 226714 testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; 227280 226715 description = "Words of arbitrary size"; 227281 226716 license = stdenv.lib.licenses.bsd3; 226717 + hydraPlatforms = stdenv.lib.platforms.none; 227282 226718 }) {}; 227283 226719 227284 226720 "word-trie" = callPackage ··· 232031 231467 }) {}; 232032 231468 232033 231469 "yesod-bin" = callPackage 232034 - ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder 232035 - , bytestring, Cabal, conduit, conduit-extra, containers 232036 - , data-default-class, directory, file-embed, filepath, fsnotify 232037 - , http-client, http-client-tls, http-reverse-proxy, http-types 232038 - , network, optparse-applicative, parsec, process, project-template 232039 - , resourcet, say, shakespeare, split, stm, streaming-commons, tar 232040 - , template-haskell, text, time, transformers, transformers-compat 232041 - , unix-compat, unliftio, unordered-containers, wai, wai-extra, warp 232042 - , warp-tls, yaml, zlib 232043 - }: 232044 - mkDerivation { 232045 - pname = "yesod-bin"; 232046 - version = "1.6.0.2"; 232047 - sha256 = "0x1lr6xm4h3x1ld42xs946aq4sn0g5x147bxqjxr5bfswj7vjk5k"; 232048 - isLibrary = false; 232049 - isExecutable = true; 232050 - executableHaskellDepends = [ 232051 - attoparsec base base64-bytestring blaze-builder bytestring Cabal 232052 - conduit conduit-extra containers data-default-class directory 232053 - file-embed filepath fsnotify http-client http-client-tls 232054 - http-reverse-proxy http-types network optparse-applicative parsec 232055 - process project-template resourcet say shakespeare split stm 232056 - streaming-commons tar template-haskell text time transformers 232057 - transformers-compat unix-compat unliftio unordered-containers wai 232058 - wai-extra warp warp-tls yaml zlib 232059 - ]; 232060 - homepage = "http://www.yesodweb.com/"; 232061 - description = "The yesod helper executable"; 232062 - license = stdenv.lib.licenses.mit; 232063 - hydraPlatforms = stdenv.lib.platforms.none; 232064 - }) {}; 232065 - 232066 - "yesod-bin_1_6_0_3" = callPackage 232067 231470 ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder 232068 231471 , bytestring, Cabal, conduit, conduit-extra, containers 232069 231472 , data-default-class, directory, file-embed, filepath, fsnotify
+2 -2
pkgs/development/interpreters/elixir/1.6.nix
··· 1 1 { mkDerivation }: 2 2 3 3 mkDerivation rec { 4 - version = "1.6.4"; 5 - sha256 = "0li2zb5ha7fdkjnzjbj3dxb9xls8xn6xr23fqwl7gp2697vcw3ws"; 4 + version = "1.6.5"; 5 + sha256 = "0il1fraz6c8qbqv4wrp16jqrkf3xglfa9f3sdm6q4vv8kjf3lxxb"; 6 6 minimumOTPVersion = "18"; 7 7 }
+2 -2
pkgs/development/python-modules/django/1_11.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "Django"; 9 - version = "1.11.12"; 9 + version = "1.11.13"; 10 10 11 11 disabled = pythonOlder "2.7"; 12 12 13 13 src = fetchurl { 14 14 url = "http://www.djangoproject.com/m/releases/1.11/${pname}-${version}.tar.gz"; 15 - sha256 = "1szjha338grhf9dq0wpbrqwvak597shsx474pm5j67kn09xqqfad"; 15 + sha256 = "19d4c1rlbhmbvbxvskvqjb2aw4dnf2cqi1hhdh11ykdy1a7gxba6"; 16 16 }; 17 17 18 18 patches = stdenv.lib.optionals withGdal [
+33
pkgs/development/python-modules/effect/default.nix
··· 1 + { buildPythonPackage 2 + , fetchPypi 3 + , lib 4 + , six 5 + , attrs 6 + , pytest 7 + , testtools 8 + }: 9 + buildPythonPackage rec { 10 + version = "0.11.0"; 11 + pname = "effect"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6"; 16 + }; 17 + checkInputs = [ 18 + pytest 19 + testtools 20 + ]; 21 + propagatedBuildInputs = [ 22 + six 23 + attrs 24 + ]; 25 + checkPhase = '' 26 + pytest . 27 + ''; 28 + meta = with lib; { 29 + description = "Pure effects for Python"; 30 + homepage = https://github.com/python-effect/effect; 31 + license = licenses.mit; 32 + }; 33 + }
+21
pkgs/development/python-modules/pylibconfig2/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, pyparsing }: 2 + buildPythonPackage rec { 3 + pname = "pylibconfig2"; 4 + version = "0.2.5"; 5 + 6 + src = fetchPypi { 7 + inherit pname version; 8 + sha256 = "1iwm11v0ghv2pq2cyvly7gdwrhxsx6iwi581fz46l0snhgcd4sqq"; 9 + }; 10 + 11 + # tests not included in the distribution 12 + doCheck = false; 13 + 14 + propagatedBuildInputs = [ pyparsing ]; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = https://github.com/heinzK1X/pylibconfig2; 18 + description = "Pure python library for libconfig syntax"; 19 + license = licenses.gpl3; 20 + }; 21 + }
+1 -1
pkgs/development/tools/misc/strace/default.nix
··· 12 12 depsBuildBuild = [ buildPackages.stdenv.cc ]; 13 13 nativeBuildInputs = [ perl ]; 14 14 15 - buildInputs = stdenv.lib.optional libunwind.supportsHost [ libunwind ]; # support -k 15 + buildInputs = stdenv.lib.optional libunwind.supportsHost libunwind; # support -k 16 16 17 17 configureFlags = stdenv.lib.optional (stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isRiscV) "--enable-mpers=check"; 18 18
+2 -2
pkgs/tools/networking/stunnel/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "stunnel-${version}"; 5 - version = "5.44"; 5 + version = "5.45"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.stunnel.org/downloads/${name}.tar.gz"; 9 - sha256 = "990a325dbb47d77d88772dd02fbbd27d91b1fea3ece76c9ff4461eca93f12299"; 9 + sha256 = "1qrfb418skdcm7b3v30ixng1ng907f4rfv54zvgz8jwakf1l90jl"; 10 10 # please use the contents of "https://www.stunnel.org/downloads/${name}.tar.gz.sha256", 11 11 # not the output of `nix-prefetch-url` 12 12 };
+2 -2
pkgs/tools/security/tor/default.nix
··· 15 15 }: 16 16 17 17 stdenv.mkDerivation rec { 18 - name = "tor-0.3.2.10"; 18 + name = "tor-0.3.3.6"; 19 19 20 20 src = fetchurl { 21 21 url = "https://dist.torproject.org/${name}.tar.gz"; 22 - sha256 = "1vnb2wkcmm8rnz0fqi3k7arl60mpycs8rjn8hvbgv56g3p1pgpv0"; 22 + sha256 = "1drk2h8zd05xrfpx7xn77pcxz0hs4nrq6figw56qk5gkvgv5kg4r"; 23 23 }; 24 24 25 25 outputs = [ "out" "geoip" ];
+24 -20
pkgs/top-level/all-packages.nix
··· 2318 2318 2319 2319 fdm = callPackage ../tools/networking/fdm {}; 2320 2320 2321 + feedreader = callPackage ../applications/networking/feedreaders/feedreader {}; 2322 + 2321 2323 ferm = callPackage ../tools/networking/ferm { }; 2322 2324 2323 2325 fgallery = callPackage ../tools/graphics/fgallery { ··· 6700 6702 llvmPackages_34 = callPackage ../development/compilers/llvm/3.4 ({ 6701 6703 isl = isl_0_12; 6702 6704 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6703 - stdenv = overrideCC stdenv gcc6; 6705 + stdenv = overrideCC stdenv buildPackages.gcc6; 6704 6706 }); 6705 6707 6706 6708 llvmPackages_35 = callPackage ../development/compilers/llvm/3.5 ({ 6707 6709 isl = isl_0_14; 6708 6710 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6709 - stdenv = overrideCC stdenv gcc6; 6711 + stdenv = overrideCC stdenv buildPackages.gcc6; 6710 6712 }); 6711 6713 6712 6714 llvmPackages_37 = callPackage ../development/compilers/llvm/3.7 ({ 6713 6715 inherit (stdenvAdapters) overrideCC; 6714 - buildLlvmPackages = buildPackages.llvmPackages_37; 6715 - targetLlvmPackages = targetPackages.llvmPackages_37; 6716 + buildLlvmTools = buildPackages.llvmPackages_37.tools; 6717 + targetLlvmLibraries = targetPackages.llvmPackages_37.libraries; 6716 6718 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6717 - stdenv = overrideCC stdenv gcc6; 6719 + stdenv = overrideCC stdenv buildPackages.gcc6; 6718 6720 }); 6719 6721 6720 6722 llvmPackages_38 = callPackage ../development/compilers/llvm/3.8 ({ 6721 6723 inherit (stdenvAdapters) overrideCC; 6722 - buildLlvmPackages = buildPackages.llvmPackages_38; 6723 - targetLlvmPackages = targetPackages.llvmPackages_38; 6724 + buildLlvmTools = buildPackages.llvmPackages_38.tools; 6725 + targetLlvmLibraries = targetPackages.llvmPackages_38.libraries; 6724 6726 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6725 - stdenv = overrideCC stdenv gcc6; 6727 + stdenv = overrideCC stdenv buildPackages.gcc6; 6726 6728 }); 6727 6729 6728 6730 llvmPackages_39 = callPackage ../development/compilers/llvm/3.9 ({ 6729 6731 inherit (stdenvAdapters) overrideCC; 6730 - buildLlvmPackages = buildPackages.llvmPackages_39; 6731 - targetLlvmPackages = targetPackages.llvmPackages_39; 6732 + buildLlvmTools = buildPackages.llvmPackages_39.tools; 6733 + targetLlvmLibraries = targetPackages.llvmPackages_39.libraries; 6732 6734 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6733 - stdenv = overrideCC stdenv gcc6; 6735 + stdenv = overrideCC stdenv buildPackages.gcc6; 6734 6736 }); 6735 6737 6736 6738 llvmPackages_4 = callPackage ../development/compilers/llvm/4 ({ 6737 6739 inherit (stdenvAdapters) overrideCC; 6738 - buildLlvmPackages = buildPackages.llvmPackages_4; 6739 - targetLlvmPackages = targetPackages.llvmPackages_4; 6740 + buildLlvmTools = buildPackages.llvmPackages_4.tools; 6741 + targetLlvmLibraries = targetPackages.llvmPackages_4.libraries; 6740 6742 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6741 - stdenv = overrideCC stdenv gcc6; 6743 + stdenv = overrideCC stdenv buildPackages.gcc6; 6742 6744 }); 6743 6745 6744 6746 llvmPackages_5 = callPackage ../development/compilers/llvm/5 ({ 6745 6747 inherit (stdenvAdapters) overrideCC; 6746 - buildLlvmPackages = buildPackages.llvmPackages_5; 6747 - targetLlvmPackages = targetPackages.llvmPackages_5; 6748 + buildLlvmTools = buildPackages.llvmPackages_5.tools; 6749 + targetLlvmLibraries = targetPackages.llvmPackages_5.libraries; 6748 6750 } // stdenv.lib.optionalAttrs stdenv.isDarwin { 6749 6751 cmake = cmake.override { 6750 6752 isBootstrap = true; ··· 6753 6755 libxml2 = libxml2.override { pythonSupport = false; }; 6754 6756 python2 = callPackage ../development/interpreters/python/cpython/2.7/boot.nix { inherit (darwin) CF configd; }; 6755 6757 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6756 - stdenv = overrideCC stdenv gcc6; # with gcc-7: undefined reference to `__divmoddi4' 6758 + stdenv = overrideCC stdenv buildPackages.gcc6; # with gcc-7: undefined reference to `__divmoddi4' 6757 6759 }); 6758 6760 6759 6761 llvmPackages_6 = callPackage ../development/compilers/llvm/6 ({ 6760 6762 inherit (stdenvAdapters) overrideCC; 6761 - buildLlvmPackages = buildPackages.llvmPackages_6; 6762 - targetLlvmPackages = targetPackages.llvmPackages_6; 6763 + buildLlvmTools = buildPackages.llvmPackages_6.tools; 6764 + targetLlvmLibraries = targetPackages.llvmPackages_6.libraries; 6763 6765 } // stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) { 6764 - stdenv = overrideCC stdenv gcc6; # with gcc-7: undefined reference to `__divmoddi4' 6766 + stdenv = overrideCC stdenv buildPackages.gcc6; # with gcc-7: undefined reference to `__divmoddi4' 6765 6767 }); 6766 6768 6767 6769 manticore = callPackage ../development/compilers/manticore { }; ··· 20933 20935 nix-index = callPackage ../tools/package-management/nix-index { }; 20934 20936 20935 20937 nix-pin = callPackage ../tools/package-management/nix-pin { }; 20938 + 20939 + nix-prefetch-github = callPackage ../build-support/nix-prefetch-github {}; 20936 20940 20937 20941 inherit (callPackages ../tools/package-management/nix-prefetch-scripts { }) 20938 20942 nix-prefetch-bzr
+2 -19
pkgs/top-level/python-packages.nix
··· 5160 5160 }; 5161 5161 }; 5162 5162 5163 + effect = callPackage ../development/python-modules/effect {}; 5163 5164 5164 5165 elpy = buildPythonPackage rec { 5165 5166 name = "elpy-${version}"; ··· 9887 9888 9888 9889 pybase64 = callPackage ../development/python-modules/pybase64 { }; 9889 9890 9890 - pylibconfig2 = buildPythonPackage rec { 9891 - name = "pylibconfig2-${version}"; 9892 - version = "0.2.4"; 9893 - 9894 - src = pkgs.fetchurl { 9895 - url = "mirror://pypi/p/pylibconfig2/${name}.tar.gz"; 9896 - sha256 = "0kyg6gldj6hi2jhc5xhi834bb2mcaiy24dvfik963shnldqr7kqg"; 9897 - }; 9898 - 9899 - doCheck = false; 9900 - 9901 - propagatedBuildInputs = with self ; [ pyparsing ]; 9902 - 9903 - meta = { 9904 - homepage = https://github.com/heinzK1X/pylibconfig2; 9905 - description = "Pure python library for libconfig syntax"; 9906 - license = licenses.gpl3; 9907 - }; 9908 - }; 9891 + pylibconfig2 = callPackage ../development/python-modules/pylibconfig2 { }; 9909 9892 9910 9893 pylibmc = callPackage ../development/python-modules/pylibmc {}; 9911 9894