From 98be4ed5e8ed5a06efa0592ef23cf0afabd8c36b Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Fri, 25 Sep 2015 16:54:35 +0200 Subject: [PATCH 01/88] sbt: use sbt-launcher-package. --- .../tools/build-managers/sbt/default.nix | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/pkgs/development/tools/build-managers/sbt/default.nix b/pkgs/development/tools/build-managers/sbt/default.nix index b4cfc0bf0c1..585e9ff101a 100644 --- a/pkgs/development/tools/build-managers/sbt/default.nix +++ b/pkgs/development/tools/build-managers/sbt/default.nix @@ -5,22 +5,18 @@ stdenv.mkDerivation rec { version = "0.13.9"; src = fetchurl { - url = "http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${version}/sbt-launch.jar"; - sha256 = "04k411gcrq35ayd2xj79bcshczslyqkicwvhkf07hkyr4j3blxda"; + url = "https://dl.bintray.com/sbt/native-packages/sbt/${version}/${name}.tgz"; + sha256 = "148f2801f2993773de6f8859fe0e6520fcabe649d66bb316e13aff8b2fd7f504"; }; - phases = [ "installPhase" ]; + patchPhase = '' + echo -java-home ${jre.home} >>conf/sbtopts + ''; installPhase = '' - mkdir -p $out/bin - cat > $out/bin/sbt << EOF - #! ${stdenv.shell} - if [ ! -v JAVA_HOME ]; then - export JAVA_HOME="${jre.home}" - fi - ${jre}/bin/java \$SBT_OPTS -jar ${src} "\$@" - EOF - chmod +x $out/bin/sbt + mkdir -p $out/share/sbt $out/bin + cp -ra . $out/share/sbt + ln -s $out/share/sbt/bin/sbt $out/bin/ ''; meta = { From 1357c3d5336de886452f957dc4841f50b59af3db Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 10 Oct 2015 00:21:57 +0300 Subject: [PATCH 02/88] make-tarball.nix: Fail if nixpkgs doesn't evaluate without warnings Commit 3d6110d2217f40225debc2f1902b0f22142e6f66 added a well-meaning warning message, which unfortunately would also show up each time `nix-env -qa` was run. It has been since fixed, but let's add a check to prevent such errors from reaching the nixpkgs channel in the future. --- pkgs/top-level/make-tarball.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index cc6e8710335..082262077a8 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -49,12 +49,20 @@ releaseTools.sourceTarball rec { exit 1 fi - # Check that all-packages.nix evaluates on a number of platforms. + # Check that all-packages.nix evaluates on a number of platforms without any warnings. for platform in i686-linux x86_64-linux x86_64-darwin; do header "checking pkgs/top-level/all-packages.nix on $platform" + NIXPKGS_ALLOW_BROKEN=1 nix-env -f pkgs/top-level/all-packages.nix \ --show-trace --argstr system "$platform" \ - -qa --drv-path --system-filter \* --system > /dev/null + -qa --drv-path --system-filter \* --system 2>&1 >/dev/null | tee eval-warnings.log + + if [ -s eval-warnings.log ]; then + echo "pkgs/top-level/all-packages.nix on $platform evaluated with warnings, aborting" + exit 1 + fi + rm eval-warnings.log + NIXPKGS_ALLOW_BROKEN=1 nix-env -f pkgs/top-level/all-packages.nix \ --show-trace --argstr system "$platform" \ -qa --drv-path --system-filter \* --system --meta --xml > /dev/null From 2f5f8e1076a889898ffd7e671cf8a25b0aa40a0c Mon Sep 17 00:00:00 2001 From: Javier Aguirre Date: Sun, 11 Oct 2015 21:22:39 +0200 Subject: [PATCH 03/88] geary: 0.8.2 -> 0.10.0 I commented out the line about disabling valadoc, It was failing with this version. --- pkgs/desktops/gnome-3/3.16/misc/geary/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix b/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix index 11655edded0..9ed8494098d 100644 --- a/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix +++ b/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix @@ -5,14 +5,15 @@ , gnome3, librsvg, gnome_doc_utils, webkitgtk }: let - majorVersion = "0.8"; + majorVersion = "0.10"; + minorVersion = "0"; in stdenv.mkDerivation rec { - name = "geary-${majorVersion}.2"; + name = "geary-${majorVersion}.${minorVersion}"; src = fetchurl { url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz"; - sha256 = "3cfa626168935acf49c9415fad54c7849f17fd833026cfd3c224ba0fb892d641"; + sha256 = "46197a5a1b8b040adcee99082dbfd9fff9ca804e3bf0055a2e90b13214bdbca5"; }; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; @@ -39,7 +40,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - patches = [ ./disable_valadoc.patch ]; + # patches = [ ./disable_valadoc.patch ]; patchFlags = "-p0"; meta = with stdenv.lib; { From 20b7d9cbc86a75708b5b01d924864684ecfa25b4 Mon Sep 17 00:00:00 2001 From: Joachim Schiele Date: Mon, 12 Oct 2015 01:40:12 +0200 Subject: [PATCH 04/88] borgbackup: bump to 0.27.0 and rename to correct name borgbackup --- pkgs/tools/backup/borg/default.nix | 18 ++++++++++-------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix index f9a949f4d3f..df3523322e8 100644 --- a/pkgs/tools/backup/borg/default.nix +++ b/pkgs/tools/backup/borg/default.nix @@ -1,21 +1,23 @@ -{ stdenv, fetchzip, python3Packages, openssl, acl }: +{ stdenv, fetchurl, python3Packages, openssl, acl, lz4 }: python3Packages.buildPythonPackage rec { - name = "borg-${version}"; - version = "0.23.0"; + name = "borgbackup-${version}"; + version = "0.27.0"; namePrefix = ""; - src = fetchzip { - name = "${name}-src"; - url = "https://github.com/borgbackup/borg/archive/${version}.tar.gz"; - sha256 = "1ns00bhrh4zm1s70mm32gnahj7yh4jdpkb8ziarhvcnknz7aga67"; + src = fetchurl { + url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz"; + sha256 = "04iizidag4fwy6kx1747d633s1amr81slgk743qsfbwixaxfjq9b"; }; propagatedBuildInputs = with python3Packages; - [ cython msgpack openssl acl llfuse tox detox ]; + [ cython msgpack openssl acl llfuse tox detox lz4 setuptools_scm ]; preConfigure = '' export BORG_OPENSSL_PREFIX="${openssl}" + export BORG_LZ4_PREFIX="${lz4}" + # note: fix for this issue already upstream and probably in 0.27.1 (or whatever the next release is called) + substituteInPlace setup.py --replace "possible_openssl_prefixes.insert(0, os.environ.get('BORG_LZ4_PREFIX'))" "possible_lz4_prefixes.insert(0, os.environ.get('BORG_LZ4_PREFIX'))" ''; meta = with stdenv.lib; { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9cce7bb3258..b84e88804ea 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -763,7 +763,7 @@ let bochs = callPackage ../applications/virtualization/bochs { }; - borg = callPackage ../tools/backup/borg { }; + borgbackup = callPackage ../tools/backup/borg { }; boomerang = callPackage ../development/tools/boomerang { }; From 6ea8f649e62e00fb1d29c87835a6ab1b125ab9c4 Mon Sep 17 00:00:00 2001 From: Timofei Kushnir Date: Mon, 12 Oct 2015 13:05:04 +0300 Subject: [PATCH 05/88] Create kernel headers dependency to correctly compile 'operf' util. --- pkgs/development/tools/profiling/oprofile/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/profiling/oprofile/default.nix b/pkgs/development/tools/profiling/oprofile/default.nix index 561fea6ef7b..4c4d8f87d33 100644 --- a/pkgs/development/tools/profiling/oprofile/default.nix +++ b/pkgs/development/tools/profiling/oprofile/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig +{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxPackages , withGUI ? false , qt4 ? null}: # libX11 is needed because the Qt build stuff automatically adds `-lX11'. @@ -12,10 +12,14 @@ stdenv.mkDerivation rec { sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4"; }; - buildInputs = [ binutils zlib popt pkgconfig ] + buildInputs = [ binutils zlib popt pkgconfig linuxPackages.kernelHeaders ] ++ stdenv.lib.optionals withGUI [ qt4 ]; configureFlags = [ + "--build ${stdenv.system}" + "--host ${stdenv.system}" + "--target ${stdenv.system}" + "--with-kernel=${linuxPackages.kernelHeaders}" "--disable-shared" # needed because only the static libbfd is available ] ++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4"; From d7eb1dd8d03a8d44af90aa76742523f022bc0f49 Mon Sep 17 00:00:00 2001 From: Timofei Kushnir Date: Mon, 12 Oct 2015 15:02:01 +0300 Subject: [PATCH 06/88] oprofile: depend on kernel headers to correctly compile 'operf' util. --- pkgs/development/tools/profiling/oprofile/default.nix | 9 +++------ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/profiling/oprofile/default.nix b/pkgs/development/tools/profiling/oprofile/default.nix index 4c4d8f87d33..4c49bbbf25b 100644 --- a/pkgs/development/tools/profiling/oprofile/default.nix +++ b/pkgs/development/tools/profiling/oprofile/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxPackages +{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, kernelHeaders , withGUI ? false , qt4 ? null}: # libX11 is needed because the Qt build stuff automatically adds `-lX11'. @@ -12,14 +12,11 @@ stdenv.mkDerivation rec { sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4"; }; - buildInputs = [ binutils zlib popt pkgconfig linuxPackages.kernelHeaders ] + buildInputs = [ binutils zlib popt pkgconfig kernelHeaders ] ++ stdenv.lib.optionals withGUI [ qt4 ]; configureFlags = [ - "--build ${stdenv.system}" - "--host ${stdenv.system}" - "--target ${stdenv.system}" - "--with-kernel=${linuxPackages.kernelHeaders}" + "--with-kernel=${kernelHeaders}" "--disable-shared" # needed because only the static libbfd is available ] ++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7d5108658d5..3f6f9b50008 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5656,7 +5656,9 @@ let openocd = callPackage ../development/tools/misc/openocd { }; - oprofile = callPackage ../development/tools/profiling/oprofile { }; + oprofile = callPackage ../development/tools/profiling/oprofile { + kernelHeaders = linuxHeaders; + }; patchelf = callPackage ../development/tools/misc/patchelf { }; From aefa4a181fbb391e7c237f711bc88f949dc75156 Mon Sep 17 00:00:00 2001 From: Timofei Kushnir Date: Mon, 12 Oct 2015 17:50:13 +0300 Subject: [PATCH 07/88] oprofile: depend on kernel headers to correctly compile 'operf' util. --- pkgs/development/tools/profiling/oprofile/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/profiling/oprofile/default.nix b/pkgs/development/tools/profiling/oprofile/default.nix index 4c49bbbf25b..542ff000423 100644 --- a/pkgs/development/tools/profiling/oprofile/default.nix +++ b/pkgs/development/tools/profiling/oprofile/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, kernelHeaders +{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxHeaders , withGUI ? false , qt4 ? null}: # libX11 is needed because the Qt build stuff automatically adds `-lX11'. @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4"; }; - buildInputs = [ binutils zlib popt pkgconfig kernelHeaders ] + buildInputs = [ binutils zlib popt pkgconfig linuxHeaders ] ++ stdenv.lib.optionals withGUI [ qt4 ]; configureFlags = [ - "--with-kernel=${kernelHeaders}" + "--with-kernel=${linuxHeaders}" "--disable-shared" # needed because only the static libbfd is available ] ++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3f6f9b50008..7d5108658d5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5656,9 +5656,7 @@ let openocd = callPackage ../development/tools/misc/openocd { }; - oprofile = callPackage ../development/tools/profiling/oprofile { - kernelHeaders = linuxHeaders; - }; + oprofile = callPackage ../development/tools/profiling/oprofile { }; patchelf = callPackage ../development/tools/misc/patchelf { }; From d1b085549fd2f689631979839afe7e9d4aeae40d Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Sat, 27 Jun 2015 15:12:50 +0300 Subject: [PATCH 08/88] wcalc: init at 2.5 --- pkgs/applications/misc/wcalc/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/applications/misc/wcalc/default.nix diff --git a/pkgs/applications/misc/wcalc/default.nix b/pkgs/applications/misc/wcalc/default.nix new file mode 100644 index 00000000000..1c6dc8f63c2 --- /dev/null +++ b/pkgs/applications/misc/wcalc/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, mpfr, readline }: + +stdenv.mkDerivation rec { + name = "wcalc-${version}"; + version = "2.5"; + + src = fetchurl { + url = "mirror://sourceforge/w-calc/${name}.tar.bz2"; + sha256 = "1vi8dl6rccqiq1apmpwawyg2ywx6a1ic1d3cvkf2hlwk1z11fb0f"; + }; + + buildInputs = [ mpfr readline ]; + + meta = with stdenv.lib; { + description = "A command line calculator"; + homepage = http://w-calc.sourceforge.net; + license = licenses.gpl2; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c79a810d515..dc4f3726505 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15045,6 +15045,8 @@ let wavegain = callPackage ../applications/audio/wavegain { }; + wcalc = callPackage ../applications/misc/wcalc { }; + wine = callPackage ../misc/emulators/wine { wineRelease = config.wine.release or "stable"; wineBuild = config.wine.build or "wine32"; From 7671360e918b4ed849e6ba0ade21c1f0af9bd813 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 13 Oct 2015 00:15:25 +0300 Subject: [PATCH 09/88] Force SLimerJS Gecko compatibility even higher --- pkgs/development/tools/slimerjs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/slimerjs/default.nix b/pkgs/development/tools/slimerjs/default.nix index 5fd7be063f5..add85805500 100644 --- a/pkgs/development/tools/slimerjs/default.nix +++ b/pkgs/development/tools/slimerjs/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { echo 'export SLIMERJSLAUNCHER=${firefox}/bin/firefox' >> "$out/bin/slimerjs" echo "'$out/lib/slimerjs/slimerjs' \"\$@\"" >> "$out/bin/slimerjs" chmod a+x "$out/bin/slimerjs" - sed -e 's@MaxVersion=3[0-9][.]@MaxVersion=40.@' -i "$out/lib/slimerjs/application.ini" + sed -e 's@MaxVersion=[34][0-9][.]@MaxVersion=50.@' -i "$out/lib/slimerjs/application.ini" ''; meta = { inherit (s) version; From da77f21e5f8cafbd856499bd6c0f970bee4e6bcf Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Mon, 12 Oct 2015 01:46:49 -0300 Subject: [PATCH 10/88] Nuweb: init at 1.58 --- .../literate-programming/nuweb/default.nix | 37 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/tools/literate-programming/nuweb/default.nix diff --git a/pkgs/development/tools/literate-programming/nuweb/default.nix b/pkgs/development/tools/literate-programming/nuweb/default.nix new file mode 100644 index 00000000000..54c2125a08c --- /dev/null +++ b/pkgs/development/tools/literate-programming/nuweb/default.nix @@ -0,0 +1,37 @@ +{stdenv, fetchurl, tex}: + +stdenv.mkDerivation rec{ + + name = "nuweb-${version}"; + version = "1.58"; + + src = fetchurl { + url = "http://downloads.sourceforge.net/project/nuweb/${name}.tar.gz"; + sha256 = "0q51i3miy15fv4njjp82yws01qfjxvqx5ly3g3vh8z3h7iq9p47y"; + }; + + buildInputs = [ tex ]; + + patchPhase = '' + sed -ie 's|nuweb -r|./nuweb -r|' Makefile + ''; + buildPhase = '' + make nuweb + make nuweb.pdf nuwebdoc.pdf all + ''; + installPhase = '' + install -d $out/bin $out/share/man/man1 $out/share/doc/${name} $out/share/emacs/site-lisp + cp nuweb $out/bin + cp nuweb.el $out/share/emacs/site-lisp + gzip -c nuweb.1 > $out/share/man/man1/nuweb.1.gz + cp htdocs/index.html nuweb.w nuweb.pdf nuwebdoc.pdf README $out/share/doc/${name} + ''; + + meta = with stdenv.lib; { + description = "A simple literate programming tool"; + homepage = http://nuweb.sourceforge.net; + license = licenses.free; + maintainers = [ maintainers.AndersonTorres ]; + }; +} +# TODO: nuweb.el Emacs integration diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0d5d321ef9b..67fe29977e9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5642,6 +5642,7 @@ let }; noweb = callPackage ../development/tools/literate-programming/noweb { }; + nuweb = callPackage ../development/tools/literate-programming/nuweb { tex = texlive.combined.scheme-small; }; omake = callPackage ../development/tools/ocaml/omake { }; omake_rc1 = callPackage ../development/tools/ocaml/omake/0.9.8.6-rc1.nix { }; From da5ffe8cb40d3bf072788d474a6163dd748ae9e1 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 12 Oct 2015 15:16:27 -0700 Subject: [PATCH 11/88] GLFW: 3.1.1 -> 3.1.2 --- pkgs/development/libraries/glfw/3.x.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/glfw/3.x.nix b/pkgs/development/libraries/glfw/3.x.nix index 02d26759834..681137cd590 100644 --- a/pkgs/development/libraries/glfw/3.x.nix +++ b/pkgs/development/libraries/glfw/3.x.nix @@ -1,13 +1,16 @@ -{ stdenv, fetchurl, cmake, mesa, libXrandr, libXi, libXxf86vm, libXfixes, xlibsWrapper +{ stdenv, fetchFromGitHub, cmake, mesa, libXrandr, libXi, libXxf86vm, libXfixes, xlibsWrapper , libXinerama, libXcursor }: stdenv.mkDerivation rec { - name = "glfw-3.1.1"; + version = "3.1.2"; + name = "glfw-${version}"; - src = fetchurl { - url = "mirror://sourceforge/glfw/${name}.tar.bz2"; - sha256 = "0q9dhbj2az7jwwi556zai0qr8zmg6d2lyxcqngppkw0x7hi1d1aa"; + src = fetchFromGitHub { + owner = "glfw"; + repo = "GLFW"; + rev = "${version}"; + sha256 = "1aj1dfyyd0170gpz32j2xlqbvbsxwbg028xiqai3mqc44xfp10kw"; }; enableParallelBuilding = true; @@ -21,7 +24,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time"; - homepage = "http://glfw.sourceforge.net/"; + homepage = "http://www.glfw.org/"; license = licenses.zlib; maintainers = with maintainers; [ marcweber ]; platforms = platforms.linux; From 2a1bf2a7769eee1453fbe24d8e37ff1a42cd6bff Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 12 Oct 2015 20:29:52 +0200 Subject: [PATCH 12/88] john: Clean up and Update to v1.8.0-jumbo-1. Cleanups are mostly stylistic, like putting src more to the top (to make sure it won't be missed on updates of the version attribute) or using mkdir -p instead of ensureDir. The most significant change here is that we update the package to 1.8.0-jumbo-1, which is the latest tag available and contains community updates which were already in magnumripper/JohnTheRipper@93f061bc41652. We're now also using fetchurl to ensure that we don't need to clone the whole repository and keep download times low. And the derivation name is now "john" instead of "JohnTheRipper", because most users would expect "nix-env -i john" to work. Signed-off-by: aszlig --- pkgs/tools/security/john/default.nix | 39 ++++++++++++++++------------ 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix index 4ef9b8f65b6..cde2047a5f1 100644 --- a/pkgs/tools/security/john/default.nix +++ b/pkgs/tools/security/john/default.nix @@ -1,29 +1,34 @@ -{ stdenv, fetchgit, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 }: +{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 }: with stdenv.lib; stdenv.mkDerivation rec { - name = "JohnTheRipper-${version}"; - version = "8a3e3c1d"; - buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ]; - NIX_CFLAGS_COMPILE = "-DJOHN_SYSTEMWIDE=1"; - preConfigure = ''cd src''; - installPhase = '' - ensureDir $out/share/john/ - ensureDir $out/bin - cp -R ../run/* $out/share/john - ln -s $out/share/john/john $out/bin/john - ''; - src = fetchgit { - url = https://github.com/magnumripper/JohnTheRipper.git; - rev = "93f061bc41652c94ae049b52572aac709d18aa4c"; - sha256 = "1rnfi09830n34jcqaxmsam54p4zsq9a49ic2ljh44lahcipympvy"; + name = "john-${version}"; + version = "1.8.0-jumbo-1"; + + src = fetchurl { + url = "http://www.openwall.com/john/j/${name}.tar.xz"; + sha256 = "08q92sfdvkz47rx6qjn7qv57cmlpy7i7rgddapq5384mb413vjds"; }; + + buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ]; + + NIX_CFLAGS_COMPILE = "-DJOHN_SYSTEMWIDE=1"; + + preConfigure = "cd src"; + + installPhase = '' + mkdir -p "$out/share/john" + mkdir -p "$out/bin" + cp -R ../run/* "$out/share/john" + ln -s "$out/share/john/john" "$out/bin/john" + ''; + meta = { description = "John the Ripper password cracker"; license = licenses.gpl2; homepage = https://github.com/magnumripper/JohnTheRipper/; - maintainers = with maintainers; [offline]; + maintainers = with maintainers; [ offline ]; platforms = with platforms; unix; }; } From e4caf0fde09146000f4b7b0c29413a059704d9c3 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 13 Oct 2015 02:46:37 +0200 Subject: [PATCH 13/88] nixos/synergy: Restart services on failure. Synergy seems to get more and more unstable in recent versions, so we might want to debug this properly. However, it makes sense to restart the service nevertheless, because synergy is about keyboard and mouse sharing and it's quite annoying to either SSH in to restart the service or even needing to unplug the keyboard and plug in into the machine with the failing service. Signed-off-by: aszlig --- nixos/modules/services/misc/synergy.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/misc/synergy.nix b/nixos/modules/services/misc/synergy.nix index 054df965347..7e8eadbe5f3 100644 --- a/nixos/modules/services/misc/synergy.nix +++ b/nixos/modules/services/misc/synergy.nix @@ -89,6 +89,7 @@ in wantedBy = optional cfgC.autoStart "multi-user.target"; path = [ pkgs.synergy ]; serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergyc -f ${optionalString (cfgC.screenName != "") "-n ${cfgC.screenName}"} ${cfgC.serverAddress}''; + serviceConfig.Restart = "on-failure"; }; }) (mkIf cfgS.enable { @@ -98,6 +99,7 @@ in wantedBy = optional cfgS.autoStart "multi-user.target"; path = [ pkgs.synergy ]; serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergys -c ${cfgS.configFile} -f ${optionalString (cfgS.address != "") "-a ${cfgS.address}"} ${optionalString (cfgS.screenName != "") "-n ${cfgS.screenName}" }''; + serviceConfig.Restart = "on-failure"; }; }) ]; From cf4e2c426ef7b93926303dc2e878a7368fe62d17 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 13 Oct 2015 04:02:56 +0200 Subject: [PATCH 14/88] john: Disable building with -march=native. It prevents john from running with older CPUs such as Core2Duo and gives an illegal hardware instruction error on these CPUs. Signed-off-by: aszlig --- pkgs/tools/security/john/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix index cde2047a5f1..993a3a3bb85 100644 --- a/pkgs/tools/security/john/default.nix +++ b/pkgs/tools/security/john/default.nix @@ -16,6 +16,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-DJOHN_SYSTEMWIDE=1"; preConfigure = "cd src"; + configureFlags = [ "--disable-native-macro" ]; installPhase = '' mkdir -p "$out/share/john" From 902bcf1422ecabb6efa771505ba5b6b3c76254c8 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 13 Oct 2015 04:33:14 +0200 Subject: [PATCH 15/88] john: Make package work out of the box. So far it was only possible to run john if you've either copied over the default configuration over to ~/.john and substitute $JOHN with the right path or set $JOHN to the store path directly. Both methods are not really a very good user experience, so we're now patching in the resulting paths into the default rules/configurations. This also splits off configuration files into $out/etc/john instead of putting everything into $out/share/john and now also properly installs the auxiliary programs into $out/bin. Closes #8792. Signed-off-by: aszlig Reported-by: devhell <"^"@regexmail.net> Cc: @offlinehacker --- pkgs/tools/security/john/default.nix | 34 +++++++++++++++++++++------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix index 993a3a3bb85..90ef375b79b 100644 --- a/pkgs/tools/security/john/default.nix +++ b/pkgs/tools/security/john/default.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 }: +{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 +, writeText +}: with stdenv.lib; @@ -11,18 +13,34 @@ stdenv.mkDerivation rec { sha256 = "08q92sfdvkz47rx6qjn7qv57cmlpy7i7rgddapq5384mb413vjds"; }; - buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ]; - - NIX_CFLAGS_COMPILE = "-DJOHN_SYSTEMWIDE=1"; + postPatch = '' + sed -ri -e ' + s!^(#define\s+CFG_[A-Z]+_NAME\s+).*/!\1"'"$out"'/etc/john/! + /^#define\s+JOHN_SYSTEMWIDE/s!/usr!'"$out"'! + ' src/params.h + sed -ri -e '/^\.include/ { + s!\$JOHN!'"$out"'/etc/john! + s!^(\.include\s*)<([^./]+\.conf)>!\1"'"$out"'/etc/john/\2"! + }' run/*.conf + ''; preConfigure = "cd src"; configureFlags = [ "--disable-native-macro" ]; + buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ]; + + NIX_CFLAGS_COMPILE = [ "-DJOHN_SYSTEMWIDE=1" ]; + installPhase = '' - mkdir -p "$out/share/john" - mkdir -p "$out/bin" - cp -R ../run/* "$out/share/john" - ln -s "$out/share/john/john" "$out/bin/john" + mkdir -p "$out/etc/john" "$out/share/john" "$out/share/doc/john" + find ../run -mindepth 1 -maxdepth 1 -type f -executable \ + -exec "${stdenv.shell}" "${writeText "john-binary-install.sh" '' + filename="$(basename "$1")" + install -vD "$1" "$out/bin/''${filename%.*}" + ''}" {} \; + cp -vt "$out/etc/john" ../run/*.conf + cp -vt "$out/share/john" ../run/*.chr ../run/password.lst + cp -vrt "$out/share/doc/john" ../doc/* ''; meta = { From 37429a2c74a4dfb141e497a62e608f0dd00a0cb5 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 13 Oct 2015 04:39:48 +0200 Subject: [PATCH 16/88] john: Enable parallel building by default. I've built this a lot of times on different machines without getting compile errors, so I'd assume this to be safe. Of course, the compile time is very small in comparison to bigger packages but it's still an annoyance to wait for up to a few minutes, especially during development. Signed-off-by: aszlig --- pkgs/tools/security/john/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix index 90ef375b79b..24a6782c206 100644 --- a/pkgs/tools/security/john/default.nix +++ b/pkgs/tools/security/john/default.nix @@ -28,6 +28,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-native-macro" ]; buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ]; + enableParallelBuilding = true; NIX_CFLAGS_COMPILE = [ "-DJOHN_SYSTEMWIDE=1" ]; From 197547e4ba2f739e70be8a1d98d5471a253ebb96 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 13 Oct 2015 05:30:14 +0200 Subject: [PATCH 17/88] linux-testing: 4.3.0-rc4 -> 4.3.0-rc5 Upstream changes can be found at: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/?id=refs/tags/v4.3-rc5 Signed-off-by: aszlig --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 639d284f11f..4cc19cd411b 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.3-rc4"; - modDirVersion = "4.3.0-rc4"; + version = "4.3-rc5"; + modDirVersion = "4.3.0-rc5"; extraMeta.branch = "4.3"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1gb8yrizfj76g2z2m6g6nbc22m4drgxjjam1z1bgrgir23y002m7"; + sha256 = "1v4spcg3x2953mc5kw3a0l3ym0783s2px98vhpmy2sfc07hdwlbr"; }; features.iwlwifi = true; From 4fa4f6f8413f7c8c56dca901c0f973e149449703 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 12 Oct 2015 07:54:37 +0200 Subject: [PATCH 18/88] ocaml-gg: 0.9.0 -> 0.9.1 --- pkgs/development/ocaml-modules/gg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/gg/default.nix b/pkgs/development/ocaml-modules/gg/default.nix index a40d4ae7978..653b627fc0b 100644 --- a/pkgs/development/ocaml-modules/gg/default.nix +++ b/pkgs/development/ocaml-modules/gg/default.nix @@ -4,7 +4,7 @@ let inherit (stdenv.lib) getVersion versionAtLeast; pname = "gg"; - version = "0.9.0"; + version = "0.9.1"; webpage = "http://erratique.ch/software/${pname}"; in @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${webpage}/releases/${pname}-${version}.tbz"; - sha256 = "055pza6jbjjj7wgzf7pbn0ccxw76i8w5b2bcnaz8b9m4x6jaa6gh"; + sha256 = "0czj41sr8jsivl3z8wyblf9k971j3kx2wc3s0c1nhzcc8allg9i2"; }; buildInputs = [ ocaml findlib opam ]; From c400e81b81c9454944708080e036a074f3cf76d9 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 13 Oct 2015 03:46:01 +0200 Subject: [PATCH 19/88] ocaml-alcotest: 0.3.2 -> 0.4.5 --- .../development/ocaml-modules/alcotest/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix index 68edfca25a8..ddc710bc7ed 100644 --- a/pkgs/development/ocaml-modules/alcotest/default.nix +++ b/pkgs/development/ocaml-modules/alcotest/default.nix @@ -1,18 +1,18 @@ -{stdenv, buildOcaml, fetchurl, ounit, re, cmdliner}: +{ stdenv, buildOcaml, fetchzip, cmdliner, stringext }: buildOcaml rec { name = "alcotest"; - version = "0.3.1"; + version = "0.4.5"; - src = fetchurl { - url = "https://github.com/samoht/alcotest/archive/${version}.tar.gz"; - sha256 = "a0e6c9a33c59b206ecc949655fa6e17bdd1078c8b610b14d8f6f0f1b489b0b43"; + src = fetchzip { + url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz"; + sha256 = "1wcn9hkjf4cbnrz99w940qfjpi0lvd8v63yxwpnafkff871dwk6k"; }; - propagatedBuildInputs = [ ounit re cmdliner ]; + propagatedBuildInputs = [ cmdliner stringext ]; meta = with stdenv.lib; { - homepage = https://github.com/samoht/alcotest; + homepage = https://github.com/mirage/alcotest; description = "A lightweight and colourful test framework"; license = stdenv.lib.licenses.isc; maintainers = [ maintainers.ericbmerritt ]; From 40c0a0b9a279e6e05efb6430a343a454596ac1ac Mon Sep 17 00:00:00 2001 From: Yochai Date: Mon, 12 Oct 2015 15:43:14 +0300 Subject: [PATCH 20/88] culmus: init at 0.130 --- pkgs/data/fonts/culmus/default.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/data/fonts/culmus/default.nix diff --git a/pkgs/data/fonts/culmus/default.nix b/pkgs/data/fonts/culmus/default.nix new file mode 100644 index 00000000000..08783e46cde --- /dev/null +++ b/pkgs/data/fonts/culmus/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "culmus-${version}"; + version = "0.130"; + + src = fetchurl { + url = "mirror://sourceforge/culmus/culmus/${version}/culmus-${version}.tar.gz"; + sha256 = "908583e388bc983a63df4f38f7130eac69fc19539952031408bb3c627846f9c1"; + }; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp -v *.ttf $out/share/fonts/truetype/ + ''; + + meta = { + description = "Culmus Hebrew fonts"; + longDescription = "The Culmus project aims at providing the Hebrew-speaking GNU/Linux and Unix community with a basic collection of Hebrew fonts for X Windows."; + platforms = stdenv.lib.platforms.all; + license = stdenv.lib.licenses.gpl2; + homepage = http://culmus.sourceforge.net/; + downloadPage = http://culmus.sourceforge.net/download.html; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7d5108658d5..da1c1f79ffd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10445,6 +10445,8 @@ let coreclr = callPackage ../development/compilers/coreclr { }; corefonts = callPackage ../data/fonts/corefonts { }; + + culmus = callPackage ../data/fonts/culmus { }; wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; }); From 60dd8f367afcd50a1e8c07a080ad534e417e0ec7 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 12 Oct 2015 23:51:15 +0300 Subject: [PATCH 21/88] LibreOffice: 5.0.1 -> 5.0.2 --- pkgs/applications/office/libreoffice/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index f1adef86dc9..55bdd8eceb0 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -20,7 +20,7 @@ let langsSpaces = stdenv.lib.concatStringsSep " " langs; major = "5"; minor = "0"; - patch = "1"; + patch = "2"; tweak = "2"; subdir = "${major}.${minor}.${patch}"; version = "${subdir}${if tweak == "" then "" else "."}${tweak}"; @@ -47,14 +47,14 @@ let translations = fetchSrc { name = "translations"; - sha256 = "0z8qf4ri8wmzgc5601fxcwxwym1h9rwk0kaqpxhqbkj04h9z0xq7"; + sha256 = "06w1gz78136bs6fbwslxz5zsg538yqfarkq1am7zn8rzczz2qplh"; }; # TODO: dictionaries help = fetchSrc { name = "help"; - sha256 = "0iz9jz0ppghzh33kzw7v0xqchim9brys6mnmlk74nzrhci2vj7f7"; + sha256 = "157hypz093vhqbysygx5q4fbb81785m2b7slccfkp8x87dcsahj3"; }; }; @@ -63,7 +63,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; - sha256 = "06nj1wnx09a6v3kx9k48810mkb19dbkaln1af33f4m7bxg5bjl87"; + sha256 = "0xn1pg72vfdajmhak6chajvd51h74jqvq2565xv3j823143niw01"; }; # Openoffice will open libcups dynamically, so we link it directly From 20211e25a2a1d0e35ce5b3a8ef43a7fe3604a0ba Mon Sep 17 00:00:00 2001 From: = Date: Sat, 10 Oct 2015 22:59:15 +0200 Subject: [PATCH 22/88] init: meterbridge 0.9.2 --- .../audio/meterbridge/buf_rect.patch | 12 +++++++++ .../audio/meterbridge/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 40 insertions(+) create mode 100644 pkgs/applications/audio/meterbridge/buf_rect.patch create mode 100644 pkgs/applications/audio/meterbridge/default.nix diff --git a/pkgs/applications/audio/meterbridge/buf_rect.patch b/pkgs/applications/audio/meterbridge/buf_rect.patch new file mode 100644 index 00000000000..f108b80c101 --- /dev/null +++ b/pkgs/applications/audio/meterbridge/buf_rect.patch @@ -0,0 +1,12 @@ +--- ../tmp-orig/meterbridge-0.9.2/src/main.h 2003-06-05 11:42:41.000000000 +0200 ++++ ./src/main.h 2004-12-29 10:27:24.160912488 +0100 +@@ -8,7 +8,7 @@ + + extern SDL_Surface *screen; + extern SDL_Surface *image, *meter, *meter_buf; +-extern SDL_Rect win, buf_rect[MAX_METERS], dest[MAX_METERS]; ++extern SDL_Rect win, dest[MAX_METERS]; + + extern jack_port_t *input_ports[MAX_METERS]; + extern jack_port_t *output_ports[MAX_METERS]; + diff --git a/pkgs/applications/audio/meterbridge/default.nix b/pkgs/applications/audio/meterbridge/default.nix new file mode 100644 index 00000000000..e15febda231 --- /dev/null +++ b/pkgs/applications/audio/meterbridge/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, pkgconfig, SDL, SDL_image, libjack2 +}: + +stdenv.mkDerivation rec { + version = "0.9.2"; + name = "meterbridge-${version}"; + + src = fetchurl { + url = "http://plugin.org.uk/meterbridge/${name}.tar.gz"; + sha256 = "0jb6g3kbfyr5yf8mvblnciva2bmc01ijpr51m21r27rqmgi8gj5k"; + }; + + patches = [ ./buf_rect.patch ]; + + buildInputs = + [ pkgconfig SDL SDL_image libjack2 + ]; + + meta = with stdenv.lib; { + description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit"; + homepage = http://plugin.org.uk/meterbridge/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c79a810d515..d72a618b6e0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7576,6 +7576,8 @@ let paths = [ mesa_noglu mesa_glu ]; }); + meterbridge = callPackage ../applications/audio/meterbridge { }; + metaEnvironment = recurseIntoAttrs (let callPackage = newScope pkgs.metaEnvironment; in rec { sdfLibrary = callPackage ../development/libraries/sdf-library { aterm = aterm28; }; toolbuslib = callPackage ../development/libraries/toolbuslib { aterm = aterm28; inherit (windows) w32api; }; From a8d2f2dfcd31fa532386297b108d829cd32c7524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 5 Oct 2015 10:30:10 +0200 Subject: [PATCH 23/88] Making pond with GUI (gtk). (cherry picked from commit a1107b2bd2e8946c2b0ab71de5eeb0d9df30a405) --- pkgs/top-level/go-packages.nix | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 9f9ad6f751d..89d906b6d50 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1152,6 +1152,20 @@ let propagatedBuildInputs = [ go-querystring ]; }; + go-gtk-agl = buildFromGitHub { + rev = "6937b8d28cf70d583346220b966074cfd3a2e233"; + owner = "agl"; + repo = "go-gtk"; + sha256 = "0jnhsv7ypyhprpy0fndah22v2pbbavr3db6f9wxl1vf34qkns3p4"; + # Examples require many go libs, and gtksourceview seems ready only for + # gtk2 + preConfigure = '' + rm -R example gtksourceview + ''; + nativeBuildInputs = [ pkgs.pkgconfig ]; + buildInputs = [ pkgs.gtk3 pkgs.gtkspell3 ]; + }; + go-gypsy = buildFromGitHub { rev = "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5"; owner = "kylelemons"; @@ -2130,15 +2144,19 @@ let doCheck = false; # bad import path in tests }; - pond = let isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; in buildFromGitHub { + pond = let + isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; + gui = true; # Might be implemented with nixpkgs config. + in buildFromGitHub { rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2"; owner = "agl"; repo = "pond"; sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; - buildInputs = [ net crypto protobuf ed25519 pkgs.trousers ] - ++ stdenv.lib.optional isx86_64 pkgs.dclxvi; - buildFlags = "-tags nogui"; + buildInputs = [ net crypto protobuf ed25519 pkgs.trousers go-gtk-agl ] + ++ stdenv.lib.optional isx86_64 pkgs.dclxvi + ++ stdenv.lib.optional gui go-gtk-agl; + buildFlags = stdenv.lib.optionalString (!gui) "-tags nogui"; excludedPackages = "\\(appengine\\|bn256cgo\\)"; postPatch = stdenv.lib.optionalString isx86_64 '' grep -r 'bn256' | awk -F: '{print $1}' | xargs sed -i \ From 4760b6ea6dafa9c1dba26a8aabc59960713eef2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 13 Oct 2015 10:29:43 +0200 Subject: [PATCH 24/88] Fixing the gtk attach file dialog for pond. I forgot to wrap the programs for the proper XDG_DATA_DIRS. Thanks Lethalman! (cherry picked from commit 0eb404129f8a0ae2dca7b3c53699f689e0343b65) --- pkgs/top-level/go-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 89d906b6d50..8bd1df44119 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1163,7 +1163,8 @@ let rm -R example gtksourceview ''; nativeBuildInputs = [ pkgs.pkgconfig ]; - buildInputs = [ pkgs.gtk3 pkgs.gtkspell3 ]; + propagatedBuildInputs = [ pkgs.gtk3 ]; + buildInputs = [ pkgs.gtkspell3 ]; }; go-gypsy = buildFromGitHub { @@ -2153,9 +2154,9 @@ let repo = "pond"; sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; - buildInputs = [ net crypto protobuf ed25519 pkgs.trousers go-gtk-agl ] + buildInputs = [ net crypto protobuf ed25519 pkgs.trousers ] ++ stdenv.lib.optional isx86_64 pkgs.dclxvi - ++ stdenv.lib.optional gui go-gtk-agl; + ++ stdenv.lib.optionals gui [ go-gtk-agl pkgs.wrapGAppsHook ]; buildFlags = stdenv.lib.optionalString (!gui) "-tags nogui"; excludedPackages = "\\(appengine\\|bn256cgo\\)"; postPatch = stdenv.lib.optionalString isx86_64 '' From 92dec336709f1b71e96f37c6367af664a9f1e2f0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 12 Oct 2015 16:09:46 +0200 Subject: [PATCH 25/88] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20150922-18-g943a6d6 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/8b34d449ff051aba55a5add05088f6306ea04440 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/746b60ae2121aa60cdb20286ed41737f0f863635 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/0d493eae3616d7da684f1b6bf35709bc4408a5c0 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/6fbf34ed626be44ccc8e4ee3a7a24efd6a825f68 --- .../haskell-modules/configuration-lts-0.0.nix | 3 + .../haskell-modules/configuration-lts-0.1.nix | 3 + .../haskell-modules/configuration-lts-0.2.nix | 3 + .../haskell-modules/configuration-lts-0.3.nix | 3 + .../haskell-modules/configuration-lts-0.4.nix | 3 + .../haskell-modules/configuration-lts-0.5.nix | 3 + .../haskell-modules/configuration-lts-0.6.nix | 3 + .../haskell-modules/configuration-lts-0.7.nix | 3 + .../haskell-modules/configuration-lts-1.0.nix | 3 + .../haskell-modules/configuration-lts-1.1.nix | 3 + .../configuration-lts-1.10.nix | 3 + .../configuration-lts-1.11.nix | 3 + .../configuration-lts-1.12.nix | 3 + .../configuration-lts-1.13.nix | 3 + .../configuration-lts-1.14.nix | 3 + .../configuration-lts-1.15.nix | 3 + .../haskell-modules/configuration-lts-1.2.nix | 3 + .../haskell-modules/configuration-lts-1.4.nix | 3 + .../haskell-modules/configuration-lts-1.5.nix | 3 + .../haskell-modules/configuration-lts-1.7.nix | 3 + .../haskell-modules/configuration-lts-1.8.nix | 3 + .../haskell-modules/configuration-lts-1.9.nix | 3 + .../haskell-modules/configuration-lts-2.0.nix | 3 + .../haskell-modules/configuration-lts-2.1.nix | 3 + .../configuration-lts-2.10.nix | 3 + .../configuration-lts-2.11.nix | 3 + .../configuration-lts-2.12.nix | 3 + .../configuration-lts-2.13.nix | 3 + .../configuration-lts-2.14.nix | 3 + .../configuration-lts-2.15.nix | 3 + .../configuration-lts-2.16.nix | 3 + .../configuration-lts-2.17.nix | 3 + .../configuration-lts-2.18.nix | 3 + .../configuration-lts-2.19.nix | 3 + .../haskell-modules/configuration-lts-2.2.nix | 3 + .../configuration-lts-2.20.nix | 3 + .../configuration-lts-2.21.nix | 3 + .../configuration-lts-2.22.nix | 3 + .../haskell-modules/configuration-lts-2.3.nix | 3 + .../haskell-modules/configuration-lts-2.4.nix | 3 + .../haskell-modules/configuration-lts-2.5.nix | 3 + .../haskell-modules/configuration-lts-2.6.nix | 3 + .../haskell-modules/configuration-lts-2.7.nix | 3 + .../haskell-modules/configuration-lts-2.8.nix | 3 + .../haskell-modules/configuration-lts-2.9.nix | 3 + .../haskell-modules/configuration-lts-3.0.nix | 3 + .../haskell-modules/configuration-lts-3.1.nix | 3 + .../haskell-modules/configuration-lts-3.2.nix | 3 + .../haskell-modules/configuration-lts-3.3.nix | 3 + .../haskell-modules/configuration-lts-3.4.nix | 3 + .../haskell-modules/configuration-lts-3.5.nix | 3 + .../haskell-modules/configuration-lts-3.6.nix | 3 + .../haskell-modules/configuration-lts-3.7.nix | 3 + .../haskell-modules/configuration-lts-3.8.nix | 3 + .../haskell-modules/configuration-lts-3.9.nix | 3 + .../haskell-modules/hackage-packages.nix | 347 +++++++++++++----- 56 files changed, 429 insertions(+), 83 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index b4e9e955ba3..e4ce6501b50 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -2803,6 +2803,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6504,6 +6505,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6813,6 +6815,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 9f0d14ace1b..29eff60a39a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -2802,6 +2802,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6503,6 +6504,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6812,6 +6814,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 2375d3f3b43..39c535c9728 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -2802,6 +2802,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6503,6 +6504,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6812,6 +6814,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index cc4b8991d59..5e3bbb30a88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -2802,6 +2802,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6503,6 +6504,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6812,6 +6814,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 854d23897ae..32838efe2e6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -2801,6 +2801,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6500,6 +6501,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6808,6 +6810,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 7ed6cbf216c..8385b60aea6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -2801,6 +2801,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6500,6 +6501,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6808,6 +6810,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index c7944eb7789..0065e61039a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -2798,6 +2798,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6495,6 +6496,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6802,6 +6804,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index c83f112c2e7..6fb4028382a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -2798,6 +2798,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6495,6 +6496,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6802,6 +6804,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 1f9cb981816..887247343e8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -2787,6 +2787,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6481,6 +6482,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6787,6 +6789,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 664379bb4ca..96703054c6a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -2781,6 +2781,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6468,6 +6469,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6774,6 +6776,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 1fb6f540be5..4282ea24d14 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -2775,6 +2775,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6436,6 +6437,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6742,6 +6744,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 1162c757e37..d2fee33b620 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -2775,6 +2775,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6431,6 +6432,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6737,6 +6739,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 6db01946640..4317fe0a721 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -2775,6 +2775,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6430,6 +6431,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6736,6 +6738,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 9149d126e58..1f509f1d170 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -2774,6 +2774,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6427,6 +6428,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6733,6 +6735,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 72d7b32bf3f..e2a60b64f90 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -2771,6 +2771,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6419,6 +6420,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6725,6 +6727,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 24eb2d9903b..0ea1c32f4d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -2767,6 +2767,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6409,6 +6410,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6715,6 +6717,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index ec0668432e4..d4443fe5450 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -2779,6 +2779,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6463,6 +6464,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6769,6 +6771,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 02eab9eb8d5..93b3618b443 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -2778,6 +2778,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6457,6 +6458,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6763,6 +6765,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 7f445806c3b..1a69fca9369 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -2777,6 +2777,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6455,6 +6456,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6761,6 +6763,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 1fe287a449c..fb3cba5b31c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -2777,6 +2777,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6449,6 +6450,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6755,6 +6757,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 0ef97165a82..094aa59e3a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -2777,6 +2777,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6444,6 +6445,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6750,6 +6752,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 2b01e6a53d0..2ec02ed4ac1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -2777,6 +2777,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6440,6 +6441,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6746,6 +6748,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 3bbac26dec2..1c70e065943 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -2747,6 +2747,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6340,6 +6341,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6645,6 +6647,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 657684c2b29..32440077dd1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -2746,6 +2746,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6338,6 +6339,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6643,6 +6645,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3266bf98282..d99b088b54d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -2727,6 +2727,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6285,6 +6286,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6586,6 +6588,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 0e2d9a909d8..8b648dfe214 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -2726,6 +2726,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6276,6 +6277,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6576,6 +6578,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 1aab95ff767..f9c78759faa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -2726,6 +2726,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6276,6 +6277,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6576,6 +6578,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 76e2a01bfa8..1a53bf0b520 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -2726,6 +2726,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6273,6 +6274,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6573,6 +6575,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index d16a9e7656d..9941d2e320b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -2725,6 +2725,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6269,6 +6270,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6569,6 +6571,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index f25c331e1cb..4d93d9d4c55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -2724,6 +2724,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6264,6 +6265,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6564,6 +6566,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index c63e6e96498..849b4eb458f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -2719,6 +2719,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6253,6 +6254,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6553,6 +6555,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 4051ce621a0..fb1eee12fe1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -2716,6 +2716,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6243,6 +6244,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6542,6 +6544,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index afe689b6dc1..df7ca966d33 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -2710,6 +2710,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6233,6 +6234,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6532,6 +6534,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 49ec963f5a3..31d20ccfb5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -2710,6 +2710,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6230,6 +6231,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6529,6 +6531,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 805aa35b396..9dca0321278 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -2743,6 +2743,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6333,6 +6334,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6638,6 +6640,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index e6c7a653845..451743606d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -2707,6 +2707,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6224,6 +6225,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6523,6 +6525,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index b0c97ec408d..7ed6f83c98b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -2707,6 +2707,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6219,6 +6220,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6517,6 +6519,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 6f0217607c8..0dc04ffbbb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -2706,6 +2706,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6215,6 +6216,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6513,6 +6515,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index d40ceb8b740..baaae9b69df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -2743,6 +2743,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6331,6 +6332,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6636,6 +6638,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 9cadaeaba5b..c6635aec357 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -2742,6 +2742,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6327,6 +6328,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6630,6 +6632,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 7c1347ac5ae..e27d01b2d33 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -2740,6 +2740,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6324,6 +6325,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6627,6 +6629,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 308efb1cb51..d63eb109d2c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -2736,6 +2736,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6317,6 +6318,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6620,6 +6622,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index a22ffc96fe6..c5f96fdf36e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -2734,6 +2734,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6315,6 +6316,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6618,6 +6620,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 307a66e1132..b4c261140f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -2733,6 +2733,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6311,6 +6312,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6613,6 +6615,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 2a0bc2f056c..42212b80ba6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -2729,6 +2729,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -6298,6 +6299,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6600,6 +6602,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index fa35da482ef..d19b6d3b367 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -2605,6 +2605,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5955,6 +5956,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6250,6 +6252,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 6afdb0b3c61..3af3b09834e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -2602,6 +2602,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5945,6 +5946,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6239,6 +6241,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 21888bd2b86..d84e7e046be 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -2597,6 +2597,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5933,6 +5934,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6226,6 +6228,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 1daf02e533f..a38627e75f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -2592,6 +2592,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5922,6 +5923,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6214,6 +6216,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 881b431cf2d..43a9b7dc884 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -2591,6 +2591,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5921,6 +5922,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6212,6 +6214,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index fc12c388cfc..44e33ca667b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -2587,6 +2587,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5903,6 +5904,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6194,6 +6196,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 3edf083168b..1fc5b2ba285 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -2581,6 +2581,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5877,6 +5878,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6168,6 +6170,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 1642e8dccea..cbdc1bc7eb1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -2567,6 +2567,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5849,6 +5850,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6140,6 +6142,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 27edf0731d2..337cc99d73e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -2553,6 +2553,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5825,6 +5826,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6116,6 +6118,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 45db8cd5f77..cfa9c491280 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -2545,6 +2545,7 @@ self: super: { "elm-repl" = dontDistribute super."elm-repl"; "elm-server" = dontDistribute super."elm-server"; "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; "elocrypt" = dontDistribute super."elocrypt"; "emacs-keys" = dontDistribute super."emacs-keys"; "email" = dontDistribute super."email"; @@ -5810,6 +5811,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6100,6 +6102,7 @@ self: super: { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 89650860b21..d13b8d5ba5c 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -5762,6 +5762,7 @@ self: { base FTGL GLFW-b OpenGLRaw parallel random time ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Frames" = callPackage @@ -11882,8 +11883,8 @@ self: { }: mkDerivation { pname = "MagicHaskeller"; - version = "0.9.6.4.2"; - sha256 = "a0db9cb06c346a8b9b1a23c8f69e9950928337fe3dbaa545ad4eaadcf25c5a5f"; + version = "0.9.6.4.3"; + sha256 = "6faf49eaf1585691166907501fc066a1e3dbfa0419c67237e07a997c01b144d6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -15018,6 +15019,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "RSA_2_2_0" = callPackage + ({ mkDerivation, base, binary, bytestring, crypto-api + , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged + , test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "RSA"; + version = "2.2.0"; + sha256 = "293056d43352716d7f9501aac7ac9871c338f00d40c97a54c927a798f8a4f2d7"; + libraryHaskellDepends = [ + base binary bytestring crypto-api crypto-pubkey-types pureMD5 SHA + ]; + testHaskellDepends = [ + base binary bytestring crypto-api crypto-pubkey-types DRBG pureMD5 + QuickCheck SHA tagged test-framework test-framework-quickcheck2 + ]; + description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Raincat" = callPackage ({ mkDerivation, base, containers, extensible-exceptions, GLUT, mtl , OpenGL, random, SDL, SDL-image, SDL-mixer, time @@ -21382,6 +21404,8 @@ self: { pname = "aeson-utils"; version = "0.3.0.2"; sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; + revision = "1"; + editedCabalFile = "effc944d02b274ca2688671ac16fe1a8c87b6d036b0ba11d06dd404da47a8634"; libraryHaskellDepends = [ aeson attoparsec base bytestring scientific text ]; @@ -29314,6 +29338,8 @@ self: { pname = "authenticate-oauth"; version = "1.5.1.1"; sha256 = "eb9f15ebc6eb4a9ce08115c729e3e6803b28e35edf0ab5bc19fed64f9a2fc30b"; + revision = "1"; + editedCabalFile = "aee0c275e41e83d208bdfbc6634ea463df5dfb3780218b73e1b5599a0c11476e"; libraryHaskellDepends = [ base base64-bytestring blaze-builder bytestring crypto-pubkey-types data-default http-client http-types random RSA SHA time @@ -48338,6 +48364,7 @@ self: { homepage = "https://github.com/mdorman/couch-simple"; description = "A modern, lightweight, complete client for CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) couchdb;}; "couchdb-conduit" = callPackage @@ -59066,8 +59093,9 @@ self: { pname = "download-curl"; version = "0.1.4"; sha256 = "950ede497ff41d72875337861fa41ca3e151b691ad53a9ddddd2443285bbc3f1"; + revision = "1"; + editedCabalFile = "7e6df1d4f39879e9b031c8ff5e2f6fd5be3729cc40f7515e117ac0b47ed3f675"; libraryHaskellDepends = [ base bytestring curl feed tagsoup xml ]; - jailbreak = true; homepage = "http://code.haskell.org/~dons/code/download-curl"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; @@ -61773,6 +61801,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "elo" = callPackage + ({ mkDerivation, base, tasty }: + mkDerivation { + pname = "elo"; + version = "0.1.0"; + sha256 = "2bdb18075718f17a84f1fa0190855f84fa5105b164c94d2fb4ac49447c5fca2d"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty ]; + homepage = "http://github.com/mfine/elo"; + description = "Elo Rating Library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "elocrypt" = callPackage ({ mkDerivation, base, MonadRandom, proctest, QuickCheck, random , tasty, tasty-quickcheck, tasty-th @@ -71707,6 +71748,7 @@ self: { homepage = "https://github.com/markenwerk/haskell-geo-resolver/"; description = "Performs geo location lookups and parses the results"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geocalc" = callPackage @@ -76655,6 +76697,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "grouped-list_0_1_1_0" = callPackage + ({ mkDerivation, base, containers, deepseq, pointed }: + mkDerivation { + pname = "grouped-list"; + version = "0.1.1.0"; + sha256 = "ee4d9d19edb36c8f3bcf5b85e3ef461d73018424197a0ae1cc1161edd8ebc765"; + libraryHaskellDepends = [ base containers deepseq pointed ]; + homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; + description = "Grouped lists. Equal consecutive elements are grouped."; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "groupoid" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -85261,18 +85316,21 @@ self: { }) {}; "haxl" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, hashable, HUnit, pretty, text, time + ({ mkDerivation, aeson, base, bytestring, containers, deepseq + , directory, filepath, hashable, HUnit, pretty, text, time , unordered-containers, vector }: mkDerivation { pname = "haxl"; - version = "0.2.0.0"; - sha256 = "1e1f7fe8d102cb771203078e63715aa45ed704e8473b064cf79e13a04312cd8e"; + version = "0.3.0.0"; + sha256 = "0b2c1e6fc052a665ef6faef14ed38d0732c281a8cd7abb3fa99957955e09378b"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring containers directory filepath hashable HUnit - pretty text time unordered-containers vector + aeson base bytestring containers deepseq directory filepath + hashable HUnit pretty text time unordered-containers vector ]; + executableHaskellDepends = [ base hashable time ]; testHaskellDepends = [ aeson base bytestring containers hashable HUnit text unordered-containers @@ -92432,6 +92490,7 @@ self: { homepage = "http://github.com/akc/hops"; description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoq" = callPackage @@ -98082,6 +98141,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http-api-data_0_2_1" = callPackage + ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit + , QuickCheck, text, time + }: + mkDerivation { + pname = "http-api-data"; + version = "0.2.1"; + sha256 = "856138d79945770cdb4b522f58893a1c45014d39238cfc5b2eceeac089c56f71"; + libraryHaskellDepends = [ base bytestring text time ]; + testHaskellDepends = [ + base doctest Glob hspec HUnit QuickCheck text time + ]; + homepage = "http://github.com/fizruk/http-api-data"; + description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "http-attoparsec" = callPackage ({ mkDerivation, attoparsec, base, bytestring, http-types }: mkDerivation { @@ -107584,19 +107661,18 @@ self: { "json-stream" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, hspec - , QuickCheck, quickcheck-unicode, scientific, text - , unordered-containers, vector + , scientific, text, unordered-containers, vector }: mkDerivation { pname = "json-stream"; - version = "0.3.2.3"; - sha256 = "cfb4c599973ec953a74c02b71ee8caa5e1813d7a5cbabb3f0434bea70ed6fabb"; + version = "0.3.2.2"; + sha256 = "4415147dec300d1121121308008a522de79949549c35b23c673d70717ad28029"; libraryHaskellDepends = [ aeson base bytestring scientific text unordered-containers vector ]; testHaskellDepends = [ - aeson base bytestring directory hspec QuickCheck quickcheck-unicode - scientific text unordered-containers vector + aeson base bytestring directory hspec scientific text + unordered-containers vector ]; homepage = "https://github.com/ondrap/json-stream"; description = "Incremental applicative JSON parser"; @@ -108660,8 +108736,8 @@ self: { pname = "keter"; version = "1.3.6"; sha256 = "e9c4b16fc6dca967a6a10c82c5f5c89900df10e27f93316d1a730ef9d523e301"; - revision = "1"; - editedCabalFile = "7ffb45adac1d3c419f7b2f544b3efdaf9b10a8c482dc70eeb0aab87f017aafea"; + revision = "2"; + editedCabalFile = "793f63a47c529acca895b3ca0225b2058f6175cb83af62c169267e62f6c28f60"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108703,8 +108779,8 @@ self: { pname = "keter"; version = "1.3.7"; sha256 = "a0710bf072a8829f5e696a6cf760554b26006d520f311ae29a53bf46e96f98c3"; - revision = "1"; - editedCabalFile = "5d36ecfa447f2c5378763c7b05ef0038818a9727f066e785dce3d05c65ef7000"; + revision = "2"; + editedCabalFile = "cefc8c00964e630396ca46f09d13a77fc4870db48e5526796817ca6d35aa3e49"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108746,8 +108822,8 @@ self: { pname = "keter"; version = "1.3.7.1"; sha256 = "003ce327d5b8ce407df901b46a99a37109b2ce14d6f51e50212130ba5ed9843e"; - revision = "1"; - editedCabalFile = "4158b706b417e5f6546bd4f23f73eb3d8ca34bdb4203fe8bec0bc6fe0f3dcbf3"; + revision = "2"; + editedCabalFile = "a1c0a6f6e7ffa9cd6c5a1c2780fdb5ce14a95d3c5fe9fe96cfeccc3726e91e98"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111424,6 +111500,7 @@ self: { homepage = "https://github.com/qux-lang/language-qux"; description = "Utilities for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sh" = callPackage @@ -118437,6 +118514,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "mandrill_0_5_0_0" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, blaze-html + , bytestring, containers, email-validate, http-client + , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck + , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time + , unordered-containers + }: + mkDerivation { + pname = "mandrill"; + version = "0.5.0.0"; + sha256 = "3e77f5fa5be866f32542eca4228cbd911b51b138773601b2f5f32eb84a7beb4b"; + libraryHaskellDepends = [ + aeson base base64-bytestring blaze-html bytestring containers + email-validate http-client http-client-tls http-types lens mtl + old-locale QuickCheck text time unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit + tasty-quickcheck text + ]; + description = "Library for interfacing with the Mandrill JSON API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mandulia" = callPackage ({ mkDerivation, array, base, bytestring, containers, directory , filepath, GLUT, hslua, time @@ -120739,23 +120841,17 @@ self: { "milena" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, digest, lens - , lifted-base, listsafe, mtl, murmur-hash, network, pretty-show - , QuickCheck, random, resource-pool, semigroups, tasty, tasty-hspec - , tasty-quickcheck, transformers + , lifted-base, mtl, murmur-hash, network, QuickCheck, random + , resource-pool, semigroups, tasty, tasty-hspec, tasty-quickcheck + , transformers }: mkDerivation { pname = "milena"; - version = "0.4.0.0"; - sha256 = "78b9eba45e7ba9969b28ef9b51be94f17510f31473730e3184f6fff9ae296cb2"; - isLibrary = true; - isExecutable = true; + version = "0.4.0.1"; + sha256 = "5349bf26d1c0bc6147e84219d09f065b313413aba026e060a92bcc23e9ec2cb5"; libraryHaskellDepends = [ - base bytestring cereal containers digest lens lifted-base listsafe - mtl murmur-hash network random resource-pool semigroups - transformers - ]; - executableHaskellDepends = [ - base bytestring cereal lens lifted-base mtl pretty-show + base bytestring cereal containers digest lens lifted-base mtl + murmur-hash network random resource-pool semigroups transformers ]; testHaskellDepends = [ base bytestring lens mtl network QuickCheck semigroups tasty @@ -127286,8 +127382,8 @@ self: { }: mkDerivation { pname = "network-api-support"; - version = "0.2.0"; - sha256 = "41d33fcc0bd0d095cc9bef205a77d1097c39b6e2c2c8c086275638364a5b5505"; + version = "0.2.1"; + sha256 = "829e03488cf95f57d00cdd37078487e3c857861bcf79e0eb3dcbcda55b4d1a68"; libraryHaskellDepends = [ aeson attoparsec base bytestring case-insensitive http-client http-client-tls http-types text time tls @@ -132592,8 +132688,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.1.5.4"; - sha256 = "193e597b75174a388c01d67bcf773d304cd023276d7a4b3ec0cd78b14dcabec4"; + version = "0.1.5.5"; + sha256 = "7ef23698170135f78e9f21472fd5abeb3fea887da714c587279db4ae7aa6ceba"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -144023,6 +144119,7 @@ self: { homepage = "https://github.com/qux-lang/qux"; description = "Command line binary for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rabocsv2qif" = callPackage @@ -146246,6 +146343,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reflex-transformers" = callPackage + ({ mkDerivation, base, containers, lens, mtl, reflex, semigroups + , stateWriter, transformers + }: + mkDerivation { + pname = "reflex-transformers"; + version = "0.1"; + sha256 = "b7871b9e833eadfa04832cf978bfbb762c3f02cab68a8876eeb8b45af2fd219e"; + libraryHaskellDepends = [ + base containers lens mtl reflex semigroups stateWriter transformers + ]; + homepage = "http://github.com/saulzar/reflex-transformers"; + description = "Collections and switchable Monad transformers for Reflex"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reform" = callPackage ({ mkDerivation, base, containers, mtl, text }: mkDerivation { @@ -148575,31 +148688,27 @@ self: { }) {}; "rest-example" = callPackage - ({ mkDerivation, aeson, base, containers, filepath, generic-aeson + ({ mkDerivation, aeson, base, containers, generic-aeson , generic-xmlpickler, hxt, json-schema, mtl, rest-core, rest-gen - , safe, stm, text, time, transformers, transformers-base - , transformers-compat, unordered-containers + , safe, stm, text, time, transformers, transformers-compat + , unordered-containers }: mkDerivation { pname = "rest-example"; - version = "0.2.0.2"; - sha256 = "f1d66ed2a8d6f700cb60b5d046afe20010ac909cd3004d55cca75c2ee13fb88e"; - revision = "2"; - editedCabalFile = "740218a910858726cbd723e9c54b7d3f2632d6ad057fb71edbf04cc54a021a68"; + version = "0.2.0.3"; + sha256 = "d71368418eca3128e887198f365b857011017e2515dd30856076b54d185b1a5e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base containers filepath generic-aeson generic-xmlpickler hxt + aeson base containers generic-aeson generic-xmlpickler hxt json-schema mtl rest-core safe stm text time transformers - transformers-base transformers-compat unordered-containers + transformers-compat unordered-containers ]; - executableHaskellDepends = [ - base mtl rest-core rest-gen transformers-compat - ]; - jailbreak = true; + executableHaskellDepends = [ base rest-gen ]; homepage = "http://www.github.com/silkapp/rest"; description = "Example project for rest"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-gen_0_16_1_3" = callPackage @@ -151959,19 +152068,20 @@ self: { ({ mkDerivation, aeson, array, base, base64-bytestring , basic-prelude, binary, bytestring, data-binary-ieee754, lens , monad-loops, QuickCheck, tasty, tasty-hunit, tasty-quickcheck - , text, unordered-containers, yaml-light + , template-haskell, text, unordered-containers, yaml-light }: mkDerivation { pname = "sbp"; - version = "0.50.9"; - sha256 = "401caeccf6dbc4d9452a450a4142dd9ed412f89981bd26a9315af7b1152c8261"; + version = "0.51.1"; + sha256 = "b98b5dd46c3e94801205b0c89741fc4aaf64550fbd7604117241584a786f096a"; libraryHaskellDepends = [ aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens monad-loops text unordered-containers + data-binary-ieee754 lens monad-loops template-haskell text + unordered-containers ]; testHaskellDepends = [ - aeson base basic-prelude bytestring QuickCheck tasty tasty-hunit - tasty-quickcheck yaml-light + aeson base base64-bytestring basic-prelude bytestring QuickCheck + tasty tasty-hunit tasty-quickcheck yaml-light ]; homepage = "https://github.com/swift-nav/libsbp"; description = "SwiftNav's SBP Library"; @@ -153554,6 +153664,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) openssl;}; + "secp256k1" = callPackage + ({ mkDerivation, base, base16-bytestring, bytestring, cryptohash + , entropy, HUnit, mtl, QuickCheck, secp256k1, test-framework + , test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "secp256k1"; + version = "0.1.1"; + sha256 = "ea4dadb68f6704d9dd30c3b7aa92c9fad1c0ebc00ac6e2d64457af31f0112c1f"; + libraryHaskellDepends = [ base bytestring entropy mtl ]; + librarySystemDepends = [ secp256k1 ]; + testHaskellDepends = [ + base base16-bytestring bytestring cryptohash entropy HUnit mtl + QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 + ]; + homepage = "http://github.com/haskoin/secp256k1#readme"; + description = "secp256k1 bindings for Haskell"; + license = stdenv.lib.licenses.publicDomain; + }) {secp256k1 = null;}; + "secret-santa" = callPackage ({ mkDerivation, base, containers, diagrams-cairo, diagrams-lib , haskell-qrencode, random @@ -158471,6 +158602,8 @@ self: { pname = "singletons"; version = "2.0.0.2"; sha256 = "981cb6a02978ca0e7eb62117a1df8ba4db16eef159aebfafe53e396e86e16f3d"; + revision = "1"; + editedCabalFile = "219b117097e85e93c213600da8051784de3090ae7088c2d3d921ffee8373c28b"; libraryHaskellDepends = [ base containers mtl syb template-haskell th-desugar ]; @@ -178665,6 +178798,8 @@ self: { pname = "unix-process-conduit"; version = "0.2.2.3"; sha256 = "9e6d6b48a410bf5e788cc725bb00066ab500d6eef6ba64fbf3ef41bd1b97af51"; + revision = "1"; + editedCabalFile = "bd35a20a4b51cd11bfcacd873bf6077f44684fdba8a4f6e08aea068f0849ee75"; libraryHaskellDepends = [ base bytestring conduit directory filepath process stm time transformers unix @@ -180781,8 +180916,8 @@ self: { }: mkDerivation { pname = "vcache-trie"; - version = "0.2.3"; - sha256 = "c039dcb12fdf4c7b1d47753ef1317037de6908f2cfe1bef7003dc6786d2dbe7a"; + version = "0.2.4"; + sha256 = "051ea7db60c1e414f4dd7f8a6451d88b926484a7a0858579631df0844b89aeee"; libraryHaskellDepends = [ array base bytestring bytestring-builder vcache ]; @@ -185157,6 +185292,8 @@ self: { pname = "warp-tls"; version = "3.0.1"; sha256 = "fe76f1da11b4fc1f09d6d7b4bd2b6a601f422fa5b5e013aa79be45aa59cc0769"; + revision = "1"; + editedCabalFile = "d2f79e54d7f8e989621b38230d0ead8f9f68612ccf6ab56e260882cef40a40af"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185176,6 +185313,8 @@ self: { pname = "warp-tls"; version = "3.0.1.1"; sha256 = "351731d0a00c5db1627ac88d4cce17e8f7efe4c3b5314e868b6c355f854b7281"; + revision = "1"; + editedCabalFile = "2d984fade290388448566b73099486df1abefc4b4a0d4c72d384195372089275"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185195,6 +185334,8 @@ self: { pname = "warp-tls"; version = "3.0.1.2"; sha256 = "e268617bc37b0afc18b0f0d7ed30f751536d845a2e08c8ebbdec41b2cadc8ef5"; + revision = "1"; + editedCabalFile = "27eea06a544aa9b966f353c86d33cb229be45d3f694d37a73a039c58817711ff"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185214,6 +185355,8 @@ self: { pname = "warp-tls"; version = "3.0.1.3"; sha256 = "ec91266592837736e825657543d8e5f8cae3e436172134fa1ef4d098ce0b1e74"; + revision = "1"; + editedCabalFile = "4bfceb6c80e9b65afe60f307d5ec502f1dedf379a2fe14eb5dfc8dd6b7fae30f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185233,6 +185376,8 @@ self: { pname = "warp-tls"; version = "3.0.1.4"; sha256 = "b3e94ba26894de0943973fcdda69ed3f9c2b92ba355ead9b95e3513399e78bb8"; + revision = "1"; + editedCabalFile = "29c289fa557c1a05d5b3619851aabe78d6c93af9f4162710c0b8cd0f365b7579"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185252,6 +185397,8 @@ self: { pname = "warp-tls"; version = "3.0.2"; sha256 = "ed3bf9d6a084f3fbc059fe06a7add0fc5f95454228615a2c23f0c683235019ca"; + revision = "1"; + editedCabalFile = "24ca7da4a6766a4583c8ee82b22bbf0d5b8c70d4d0ac43ead58c09c6c24e696f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185271,6 +185418,8 @@ self: { pname = "warp-tls"; version = "3.0.3"; sha256 = "b5260c5fd5f51048448347a2acc72b60fbadfa05e57cc1a70328a2e22accf7d9"; + revision = "1"; + editedCabalFile = "5fd916e672092798e2d24f7cf778229527c602c1156309c1d18d95a87a6488a6"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185290,6 +185439,8 @@ self: { pname = "warp-tls"; version = "3.0.4"; sha256 = "e42d4de7a02997e266272e735dc068c42086f4a2d95b02a56ccca0f2ad8f680e"; + revision = "1"; + editedCabalFile = "58b0585d8b497743315b6c867c5002ca6d89803f6f37d4c47cfc752b9aed0a3f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185309,6 +185460,8 @@ self: { pname = "warp-tls"; version = "3.0.4.1"; sha256 = "9edc7a498c3dc75a1d8eca9a16b2d913d00573424f8688f823a8289da438245d"; + revision = "1"; + editedCabalFile = "0265d3e7e1dbb9ef5fa287d55b1771ea838390335e543b71b9da7cb4d752edad"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -185514,8 +185667,8 @@ self: { }: mkDerivation { pname = "wavefront"; - version = "0.1.0.2"; - sha256 = "f97a815a374303c9a2ff4a616b80f5202550f062c1cd7641bdaaf8af487f2386"; + version = "0.2"; + sha256 = "5f9130cb8fa4ecb1b4f6313aa24c8e7c595c15cce72fa9a2e0f009dd6cb9503c"; libraryHaskellDepends = [ attoparsec base dlist filepath mtl text transformers ]; @@ -186115,6 +186268,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "webdriver_0_7" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, cond, data-default, directory, directory-tree + , exceptions, filepath, http-client, http-types, lifted-base + , monad-control, mtl, network, network-uri, parallel, scientific + , temporary, text, time, transformers, transformers-base + , unordered-containers, vector, zip-archive + }: + mkDerivation { + pname = "webdriver"; + version = "0.7"; + sha256 = "3e26d74d378318d58fd8080d2e18394e953821801ee6ce8394e6321c7bdb6b6f"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring cond + data-default directory directory-tree exceptions filepath + http-client http-types lifted-base monad-control mtl network + network-uri scientific temporary text time transformers + transformers-base unordered-containers vector zip-archive + ]; + testHaskellDepends = [ base parallel text ]; + homepage = "https://github.com/kallisti-dev/hs-webdriver"; + description = "a Haskell client for the Selenium WebDriver protocol"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "webdriver-angular" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers @@ -187265,29 +187444,30 @@ self: { }) {}; "wolf" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-s3, amazonka-swf, base - , bytestring, conduit, conduit-extra, cryptohash, exceptions - , fast-logger, http-conduit, lens, monad-control, monad-logger, mtl - , mtl-compat, optparse-applicative, safe, shelly, text - , transformers, transformers-base, unordered-containers, uuid, yaml + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 + , amazonka-swf, base, bytestring, conduit, conduit-extra + , exceptions, fast-logger, http-conduit, lens, monad-control + , monad-logger, mtl, mtl-compat, optparse-applicative, resourcet + , safe, shelly, text, transformers, transformers-base + , unordered-containers, uuid, yaml }: mkDerivation { pname = "wolf"; - version = "0.1.1"; - sha256 = "6912721ba6ea5ebfb9f80a773880eaea2907310b69806f3d925e5d8ca8ec28bd"; + version = "0.2.0"; + sha256 = "0660d46bd7defb4aebc74a19524da014f3e2b4da6beec8d7b9f4c78c59e5c013"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson amazonka amazonka-s3 amazonka-swf base bytestring conduit - conduit-extra cryptohash exceptions fast-logger http-conduit lens - monad-control monad-logger mtl mtl-compat optparse-applicative safe - text transformers transformers-base unordered-containers uuid yaml + aeson amazonka amazonka-core amazonka-s3 amazonka-swf base + bytestring conduit conduit-extra exceptions fast-logger + http-conduit lens monad-control monad-logger mtl mtl-compat + optparse-applicative resourcet safe text transformers + transformers-base unordered-containers uuid yaml ]; executableHaskellDepends = [ - base bytestring cryptohash optparse-applicative shelly text - transformers yaml + aeson amazonka-core base bytestring optparse-applicative resourcet + shelly text transformers yaml ]; - jailbreak = true; homepage = "https://github.com/swift-nav/wolf"; description = "Amazon Simple Workflow Service Wrapper"; license = stdenv.lib.licenses.mit; @@ -192137,21 +192317,22 @@ self: { }) {}; "yesod-auth-ldap-native" = callPackage - ({ mkDerivation, aeson, base, either, ldap-client, semigroups, text + ({ mkDerivation, base, either, ldap-client, semigroups, text , transformers, yesod-auth, yesod-core, yesod-form }: mkDerivation { pname = "yesod-auth-ldap-native"; - version = "0.1.0.0"; - sha256 = "49cd23ae22d5acc2c7a2d6bca074e7bca28197d057ccd4d9da08f5af0923db28"; + version = "0.1.0.2"; + sha256 = "f94461b1e26ce682122ee105f537afda8ae6a831810eba8e281bfd56b46cd0e1"; libraryHaskellDepends = [ - aeson base either ldap-client semigroups text transformers - yesod-auth yesod-core yesod-form + base either ldap-client semigroups text transformers yesod-auth + yesod-core yesod-form ]; testHaskellDepends = [ base ]; homepage = "http://github.com/mulderr/yesod-auth-ldap-native"; description = "Yesod LDAP authentication plugin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-oauth_1_4_0_1" = callPackage @@ -194655,8 +194836,8 @@ self: { }: mkDerivation { pname = "yesod-media-simple"; - version = "0.1.0.1"; - sha256 = "e638551e967a0d89b73d8e6fa0c0957c2a24c6c864e17e0cdb03f58335ce54aa"; + version = "0.2.0.0"; + sha256 = "d3489fd4cd6f1e1614301939eea8a61222c22f77fe13a6d5460f62fd590cdfe9"; libraryHaskellDepends = [ base bytestring diagrams-cairo diagrams-core diagrams-lib directory JuicyPixels vector yesod @@ -196435,7 +196616,7 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "z3" = callPackage From 3da4f68800da5bb796c971c33ccfbea9d16b398b Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Tue, 13 Oct 2015 11:33:52 +0200 Subject: [PATCH 26/88] alsa-tools: add initial package building everything except for a few nut cases --- pkgs/os-specific/linux/alsa-tools/default.nix | 57 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 58 insertions(+) create mode 100644 pkgs/os-specific/linux/alsa-tools/default.nix diff --git a/pkgs/os-specific/linux/alsa-tools/default.nix b/pkgs/os-specific/linux/alsa-tools/default.nix new file mode 100644 index 00000000000..83bf71c4ccc --- /dev/null +++ b/pkgs/os-specific/linux/alsa-tools/default.nix @@ -0,0 +1,57 @@ +{ stdenv, fetchurl, alsaLib, pkgconfig, gtk, gtk3, fltk13 }: + +stdenv.mkDerivation rec { + name = "alsa-tools-${version}"; + version = "1.0.29"; + + src = fetchurl { + urls = [ + "ftp://ftp.alsa-project.org/pub/tools/${name}.tar.bz2" + "http://alsa.cybermirror.org/tools/${name}.tar.bz2" + ]; + sha256 = "1lgvyb81md25s9ciswpdsbibmx9s030kvyylf0673w3kbamz1awl"; + }; + + enableParallelBuilding = true; + + phases = "unpackPhase patchPhase configurePhase buildPhase installPhase fixupPhase"; + + buildInputs = [ alsaLib pkgconfig gtk gtk3 fltk13 ]; + + patchPhase = '' + export tools="as10k1 hda-verb hdspmixer echomixer hdajackretask hdspconf hwmixvolume mixartloader rmedigicontrol sscape_ctl vxloader envy24control hdajacksensetest hdsploader ld10k1 pcxhrloader sb16_csp us428control" + # export tools="as10k1 hda-verb hdspmixer qlo10k1 seq usx2yloader echomixer hdajackretask hdspconf hwmixvolume mixartloader rmedigicontrol sscape_ctl vxloader envy24control hdajacksensetest hdsploader ld10k1 pcxhrloader sb16_csp us428control" + ''; + + configurePhase = '' + for tool in $tools; do + echo "Tool: $tool:" + cd "$tool"; ./configure --prefix="$out"; cd - + done + ''; + + buildPhase = '' + for tool in $tools; do + cd "$tool"; make; cd - + done + ''; + + installPhase = '' + for tool in $tools; do + cd "$tool"; make install; cd - + done + ''; + + meta = { + homepage = http://www.alsa-project.org/; + description = "ALSA, the Advanced Linux Sound Architecture tools"; + + longDescription = '' + The Advanced Linux Sound Architecture (ALSA) provides audio and + MIDI functionality to the Linux-based operating system. + ''; + + platforms = stdenv.lib.platforms.linux; + maintainers = [ "Florian Paul Schmidt " ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 31291b61d5c..676da43beb4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9424,6 +9424,7 @@ let alsaUtils = callPackage ../os-specific/linux/alsa-utils { }; alsaOss = callPackage ../os-specific/linux/alsa-oss { }; + alsaTools = callPackage ../os-specific/linux/alsa-tools { }; microcodeAmd = callPackage ../os-specific/linux/microcode/amd.nix { }; From 43c906ea0bd892f1e7dcf109d87a7eec94f2aace Mon Sep 17 00:00:00 2001 From: Timofei Kushnir Date: Tue, 13 Oct 2015 13:26:32 +0300 Subject: [PATCH 27/88] oprofile: 1.0.0 -> 1.1.0 --- pkgs/development/tools/profiling/oprofile/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/profiling/oprofile/default.nix b/pkgs/development/tools/profiling/oprofile/default.nix index 542ff000423..01e8152ea96 100644 --- a/pkgs/development/tools/profiling/oprofile/default.nix +++ b/pkgs/development/tools/profiling/oprofile/default.nix @@ -5,11 +5,11 @@ assert withGUI -> qt4 != null; stdenv.mkDerivation rec { - name = "oprofile-1.0.0"; + name = "oprofile-1.1.0"; src = fetchurl { url = "mirror://sourceforge/oprofile/${name}.tar.gz"; - sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4"; + sha256 = "0v1nn38h227bgxjwqf22rjp2iqgjm4ls3gckzifks0x6w5nrlxfg"; }; buildInputs = [ binutils zlib popt pkgconfig linuxHeaders ] From 24b375ac06c97c3af58db9415ea05ad0d0ebe72c Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Tue, 13 Oct 2015 12:48:03 +0200 Subject: [PATCH 28/88] alsa-tools: update maintainer --- lib/maintainers.nix | 1 + pkgs/os-specific/linux/alsa-tools/default.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 1b02bd37130..1eb2906c6a5 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -101,6 +101,7 @@ fluffynukeit = "Daniel Austin "; forkk = "Andrew Okin "; fpletz = "Franz Pletz "; + fps = "Florian Paul Schmidt "; fridh = "Frederik Rietdijk "; fro_ozen = "fro_ozen "; ftrvxmtrx = "Siarhei Zirukin "; diff --git a/pkgs/os-specific/linux/alsa-tools/default.nix b/pkgs/os-specific/linux/alsa-tools/default.nix index 83bf71c4ccc..f3e014bde9d 100644 --- a/pkgs/os-specific/linux/alsa-tools/default.nix +++ b/pkgs/os-specific/linux/alsa-tools/default.nix @@ -52,6 +52,6 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ "Florian Paul Schmidt " ]; + maintainers = [ stdenv.lib.maintainers.fps ]; }; } From 583f16a87fbd40452f5397d796461d01515ce684 Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Tue, 13 Oct 2015 12:52:37 +0200 Subject: [PATCH 29/88] alsa-tools: do not mention phases explicitly --- pkgs/os-specific/linux/alsa-tools/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/os-specific/linux/alsa-tools/default.nix b/pkgs/os-specific/linux/alsa-tools/default.nix index f3e014bde9d..a21cbce0666 100644 --- a/pkgs/os-specific/linux/alsa-tools/default.nix +++ b/pkgs/os-specific/linux/alsa-tools/default.nix @@ -14,8 +14,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - phases = "unpackPhase patchPhase configurePhase buildPhase installPhase fixupPhase"; - buildInputs = [ alsaLib pkgconfig gtk gtk3 fltk13 ]; patchPhase = '' From ed96d04832f07578d44c4424455b730dfa1a6784 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 10:29:09 +0200 Subject: [PATCH 30/88] perl-YAML-Lib-YAML: 0.52 -> 0.59 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 776dbc1fd91..6de1fa4f450 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12672,10 +12672,10 @@ let self = _self // overrides; _self = with self; { }; YAMLLibYAML = buildPerlPackage rec { - name = "YAML-LibYAML-0.52"; + name = "YAML-LibYAML-0.59"; src = fetchurl { url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; - sha256 = "14qajsfbi2syjz38iynj8c6qf0rv1zmy71kydzvvg9kcq1ib3h86"; + sha256 = "0m4zr6gm5rzwvxwd2x7rklr659jl8gsa5bxc5h25904nbvpj9x4x"; }; }; From d17b367e0c64c1ba75dc9205ef5eedfe8e4b1930 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 10:52:17 +0200 Subject: [PATCH 31/88] perl-Test-YAML: init at 1.06 --- pkgs/top-level/perl-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 6de1fa4f450..75f4c563a12 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11299,6 +11299,14 @@ let self = _self // overrides; _self = with self; { }; }; + TestYAML = buildPerlPackage rec { + name = "Test-YAML-1.06"; + src = fetchurl { + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "0hxrfs7p9hqkhvv5nhk2hd3kh32smwng4nz47b8xf4iw2q1n2dr7"; + }; + }; + TextAbbrev = buildPerlPackage { name = "Text-Abbrev-1.02"; src = fetchurl { From 87ca45a08d2f49418db4ff165cae486e3de64ab3 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 10:58:30 +0200 Subject: [PATCH 32/88] perl-YAML: 0.90 -> 1.15 --- pkgs/top-level/perl-packages.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 75f4c563a12..729a36e4688 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12645,12 +12645,15 @@ let self = _self // overrides; _self = with self; { }; }; - YAML = buildPerlPackage { - name = "YAML-0.90"; + YAML = buildPerlPackage rec { + name = "YAML-1.15"; src = fetchurl { - url = mirror://cpan/authors/id/I/IN/INGY/YAML-0.90.tar.gz; - sha256 = "0kfsmhv1lmqw2g1038azpxkfb91valwkh4i4gfjvqrj2wsr2hzhq"; + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "06wx1pzc2sb7vidlp17g1x11rrz57ch8q68gjj8fbgd75wr9bx40"; }; + + buildInputs = [ TestBase TestYAML ]; + meta = { homepage = https://github.com/ingydotnet/yaml-pm/tree; description = "YAML Ain't Markup Language (tm)"; From 6f528841bc3690d1ba7dae4810c90e0ca43d8a6d Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 11:08:19 +0200 Subject: [PATCH 33/88] perl-XML-Twig: 3.44 -> 3.49 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 729a36e4688..335b3d96f9b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12589,11 +12589,11 @@ let self = _self // overrides; _self = with self; { }; }; - XMLTwig = buildPerlPackage { - name = "XML-Twig-3.44"; + XMLTwig = buildPerlPackage rec { + name = "XML-Twig-3.49"; src = fetchurl { - url = mirror://cpan/authors/id/M/MI/MIROD/XML-Twig-3.44.tar.gz; - sha256 = "1fi05ddq4dqpff7xvgsw2rr8p5bah401gmblyb3pvjg225ic2l96"; + url = "mirror://cpan/authors/id/M/MI/MIROD/${name}.tar.gz"; + sha256 = "00af6plljrx2dc0js60975wqp725ka4i3gzs4y6gmzkpfj5fy39y"; }; propagatedBuildInputs = [XMLParser]; doCheck = false; # requires lots of extra packages From f744774d660bbb67360fbb4a0666e7571c7e490e Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 11:33:02 +0200 Subject: [PATCH 34/88] perl-Variable-Magic: 0.53 -> 0.58 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 335b3d96f9b..a50a6eb9200 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12197,10 +12197,10 @@ let self = _self // overrides; _self = with self; { }; VariableMagic = buildPerlPackage rec { - name = "Variable-Magic-0.53"; + name = "Variable-Magic-0.58"; src = fetchurl { url = "mirror://cpan/modules/by-module/Variable/${name}.tar.gz"; - sha256 = "1mxygb7q8n01klpzdmf8mvbm1i5zhazcm48yiw6dz0xk2fwrgz8q"; + sha256 = "1yhh3zbawx68sw93xrnvfnqq5pb2pmbk20rckqxbwkq1n8c6lv83"; }; }; From 0f4ec699a6855604f174f1d5d15b3b68e0032f8d Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 11:48:56 +0200 Subject: [PATCH 35/88] perl-Unicode-LineBreak; 2013.11 -> 2015.07.16 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index a50a6eb9200..e182951906d 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12067,11 +12067,11 @@ let self = _self // overrides; _self = with self; { buildInputs = [ pkgs.icu ]; }; - UnicodeLineBreak = buildPerlPackage { - name = "Unicode-LineBreak-2013.11"; + UnicodeLineBreak = buildPerlPackage rec { + name = "Unicode-LineBreak-2015.07.16"; src = fetchurl { - url = mirror://cpan/authors/id/N/NE/NEZUMI/Unicode-LineBreak-2013.11.tar.gz; - sha256 = "8946b883ae687ff652e93d6185e23a936c7f337f2e115851fdfed72e1f73c7f9"; + url = "mirror://cpan/authors/id/N/NE/NEZUMI/${name}.tar.gz"; + sha256 = "0fycsfc3jhnalad7zvx47f13dpxihdh9c8fy8w7psjlyd5svs6sb"; }; propagatedBuildInputs = [ MIMECharset ]; meta = { From 8e2aa9592290fefa9f1cb0f42b14b3bed8864381 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 11:55:09 +0200 Subject: [PATCH 36/88] perl-Unicode-Collate: 1.04 -> 1.14 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index e182951906d..437467c7695 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12039,11 +12039,11 @@ let self = _self // overrides; _self = with self; { }; }; - UnicodeCollate = buildPerlPackage { - name = "Unicode-Collate-1.04"; + UnicodeCollate = buildPerlPackage rec { + name = "Unicode-Collate-1.14"; src = fetchurl { - url = mirror://cpan/authors/id/S/SA/SADAHIRO/Unicode-Collate-1.04.tar.gz; - sha256 = "4e3a2300b961d3aaf3789cdbfb95601edaaffb4109ed6cdb912a664d5c7bd706"; + url = "mirror://cpan/authors/id/S/SA/SADAHIRO/${name}.tar.gz"; + sha256 = "0ykncvhnwy8ync01ibv0524m0si9ya1ch2v8vx61s778nnrmp2k2"; }; meta = { description = "Unicode Collation Algorithm"; From bc7e3345f53fac8153d69ef12a777e3d8b66f38d Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 11:57:51 +0200 Subject: [PATCH 37/88] perl-TimeHiRes: fix url --- pkgs/top-level/perl-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 437467c7695..2d5d154f8b6 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11890,7 +11890,7 @@ let self = _self // overrides; _self = with self; { TimeHiRes = buildPerlPackage rec { name = "Time-HiRes-1.9726"; src = fetchurl { - url = "mirror://cpan/modules/by-module/Time/${name}.tar.gz"; + url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "17hhd53p72z08l1riwz5f6rch6hngby1pympkla5miznn7cjlrpz"; }; }; From 8006a52db403371c62e6e3de3612be053edfaeb0 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 12:22:44 +0200 Subject: [PATCH 38/88] perl-XML-LibXML: 2.0121 -> 2.0122 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 2d5d154f8b6..d61957a2768 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12432,10 +12432,10 @@ let self = _self // overrides; _self = with self; { }; XMLLibXML = buildPerlPackage rec { - name = "XML-LibXML-2.0121"; + name = "XML-LibXML-2.0122"; src = fetchurl { url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz"; - sha256 = "1j8d3kmkdlzvyx3khvrcrvp798h50i6zc5i3zm04d81prc8i0hzc"; + sha256 = "0llgkgifcw7zz7r7f2jiqryi5axymmd3fwzp4aa5gk6j37w66xkn"; }; SKIP_SAX_INSTALL = 1; buildInputs = [ pkgs.libxml2 ]; From d1460ccea2c02a1f6231460b5543701ef38c527b Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 12:25:43 +0200 Subject: [PATCH 39/88] perl-XML-DOM: 1.44 -> 1.45 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index d61957a2768..24fefe29b08 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12404,11 +12404,11 @@ let self = _self // overrides; _self = with self; { }; }; - XMLDOM = buildPerlPackage { - name = "XML-DOM-1.44"; + XMLDOM = buildPerlPackage rec { + name = "XML-DOM-1.45"; src = fetchurl { - url = mirror://cpan/authors/id/T/TJ/TJMATHER/XML-DOM-1.44.tar.gz; - sha256 = "1r0ampc88ni3sjpzr583k86076qg399arfm9xirv3cw49k3k5bzn"; + url = "mirror://cpan/authors/id/T/TJ/TJMATHER/${name}.tar.gz"; + sha256 = "1jvqfi0jm8wh80rd5h9c3k72car8l7x1jywj8rck8w6rm1mlxldy"; }; propagatedBuildInputs = [XMLRegExp XMLParser LWP libxml_perl]; }; From 46f3fed7fc40bd1fa2feb81a9f6bde9a19d9775c Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 12:37:22 +0200 Subject: [PATCH 40/88] perl-TreeSimple: 1.18 -> 1.25 --- pkgs/top-level/perl-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 24fefe29b08..4036d26b337 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11939,13 +11939,13 @@ let self = _self // overrides; _self = with self; { }; }; - TreeSimple = buildPerlPackage { - name = "Tree-Simple-1.18"; + TreeSimple = buildPerlPackage rec { + name = "Tree-Simple-1.25"; src = fetchurl { - url = mirror://cpan/authors/id/S/ST/STEVAN/Tree-Simple-1.18.tar.gz; - sha256 = "0bb2hc8q5rwvz8a9n6f49kzx992cxczmrvq82d71757v087dzg6g"; + url = "mirror://cpan/authors/id/R/RS/RSAVAGE/${name}.tgz"; + sha256 = "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"; }; - buildInputs = [ TestException ]; + buildInputs = [ TestException TestMemoryCycle ]; meta = { description = "A simple tree object"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; From b88d9f7477c3d943e0b40249999b59c7dd189316 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 12:41:44 +0200 Subject: [PATCH 41/88] perl-File-Slurp-Tiny: init at 0.004 --- pkgs/top-level/perl-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 4036d26b337..22a6d387cc3 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -4643,6 +4643,14 @@ let self = _self // overrides; _self = with self; { }; }; + FileSlurpTiny = buildPerlPackage rec { + name = "File-Slurp-Tiny-0.004"; + src = fetchurl { + url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz"; + sha256 = "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"; + }; + }; + FileUtil = buildPerlPackage rec { name = "File-Util-4.132140"; src = fetchurl { From 34741b84fe4ea1f27cfeb7910660b166e68f5e3a Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 12:48:13 +0200 Subject: [PATCH 42/88] perl-XML-Validator-Schema: fix build --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 22a6d387cc3..bba26dc2cf0 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12613,6 +12613,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/S/SA/SAMTREGAR/XML-Validator-Schema-1.10.tar.gz; sha256 = "6142679580150a891f7d32232b5e31e2b4e5e53e8a6fa9cbeecb5c23814f1422"; }; + buildInputs = [ FileSlurpTiny ]; propagatedBuildInputs = [ TreeDAGNode XMLFilterBufferText XMLSAX ]; meta = { description = "Validate XML against a subset of W3C XML Schema"; From c84499968f311006ce0e5413926c90605a54befa Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 12:53:49 +0200 Subject: [PATCH 43/88] perl-TreeDAG-Node: 1.09 -> 1.27 --- pkgs/top-level/perl-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index bba26dc2cf0..3cd2ecc894b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11933,13 +11933,13 @@ let self = _self // overrides; _self = with self; { }; }; - TreeDAGNode = buildPerlPackage { - name = "Tree-DAG_Node-1.09"; + TreeDAGNode = buildPerlPackage rec { + name = "Tree-DAG_Node-1.27"; src = fetchurl { - url = mirror://cpan/authors/id/R/RS/RSAVAGE/Tree-DAG_Node-1.09.tgz; - sha256 = "1k2byyk7dnm8l6i1igagpfr58b02zsq5hwd9jcdp8yrlih7dzii3"; + url = "mirror://cpan/authors/id/R/RS/RSAVAGE/${name}.tgz"; + sha256 = "1i2i445gh7720bvv06dz67szk2z6q1pi30kb5p2shsa806sj4vr2"; }; - buildInputs = [ TestPod ]; + buildInputs = [ TestPod FileSlurpTiny ]; meta = { homepage = http://search.cpan.org/perldoc?CPAN::Meta::Spec; description = "An N-ary tree"; From d2a17851335a9242262709bf707c338fd6a3f72f Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Tue, 13 Oct 2015 13:05:44 +0200 Subject: [PATCH 44/88] alsa-tools: remove non-effective parallelBuilding statement --- pkgs/os-specific/linux/alsa-tools/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/os-specific/linux/alsa-tools/default.nix b/pkgs/os-specific/linux/alsa-tools/default.nix index a21cbce0666..a2e49f465e4 100644 --- a/pkgs/os-specific/linux/alsa-tools/default.nix +++ b/pkgs/os-specific/linux/alsa-tools/default.nix @@ -12,8 +12,6 @@ stdenv.mkDerivation rec { sha256 = "1lgvyb81md25s9ciswpdsbibmx9s030kvyylf0673w3kbamz1awl"; }; - enableParallelBuilding = true; - buildInputs = [ alsaLib pkgconfig gtk gtk3 fltk13 ]; patchPhase = '' From 102f70bfb2f0aacae281d7ffda876aabad7b253a Mon Sep 17 00:00:00 2001 From: Nathaniel Baxter Date: Tue, 13 Oct 2015 22:12:41 +1100 Subject: [PATCH 45/88] teamspeak_client: Fixed qt and quazip lib references. --- .../networking/instant-messengers/teamspeak/client.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index d6c645e2f2c..a18ffac5d63 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, makeDesktopItem, zlib, glib, libpng, freetype -, xorg, fontconfig, qt5, xkeyboard_config, alsaLib, libpulseaudio ? null +, xorg, fontconfig, qt55, xkeyboard_config, alsaLib, libpulseaudio ? null , libredirect, quazip, less, which, unzip }: @@ -12,7 +12,7 @@ let deps = [ zlib glib libpng freetype xorg.libSM xorg.libICE xorg.libXrender xorg.libXrandr xorg.libXfixes xorg.libXcursor xorg.libXinerama - xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qt5.base libpulseaudio + xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qt55.qtbase libpulseaudio ]; desktopItem = makeDesktopItem { @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { installPhase = '' # Delete unecessary libraries - these are provided by nixos. - rm *.so.* + rm *.so.* *.so rm qt.conf # Install files. @@ -89,7 +89,8 @@ stdenv.mkDerivation rec { ln -s $out/lib/teamspeak/ts3client $out/bin/ts3client wrapProgram $out/bin/ts3client \ - --set LD_PRELOAD "${libredirect}/lib/libredirect.so:${quazip}/lib/libquazip.so" \ + --set LD_LIBRARY_PATH "${quazip}/lib" \ + --set LD_PRELOAD "${libredirect}/lib/libredirect.so" \ --set QT_PLUGIN_PATH "$out/lib/teamspeak/platforms" \ --set NIX_REDIRECTS /usr/share/X11/xkb=${xkeyboard_config}/share/X11/xkb ''; From f704591f2ba2021cc69d9df76eda9657c867811c Mon Sep 17 00:00:00 2001 From: Joe Hermaszewski Date: Mon, 12 Oct 2015 20:56:20 +0100 Subject: [PATCH 46/88] perl-CryptX: init at 0.025 --- pkgs/top-level/perl-packages.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 776dbc1fd91..561fae5a693 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2353,6 +2353,19 @@ let self = _self // overrides; _self = with self; { buildInputs = [ PathClass TryTiny ]; }; + CryptX = buildPerlModule rec { + name = "CryptX-0.025"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; + sha256 = "f8b7e3ec1713c8dfe3eef9d114f45f223b97e2340f81a20589b5605fa49cfe38"; + }; + propagatedBuildInputs = [ JSON ]; + meta = { + description = "Crypto toolkit"; + license = "perl"; + }; + }; + CSSDOM = buildPerlPackage rec { name = "CSS-DOM-0.15"; src = fetchurl { From 1c174d107c3988fd9a83173685636f1f9b756ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 13 Oct 2015 14:45:18 +0200 Subject: [PATCH 47/88] crashplan: mark as broken --- pkgs/applications/backup/crashplan/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index 5a0e8c7cfbd..f86ab91344f 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -16,6 +16,7 @@ in stdenv.mkDerivation rec { description = "An online/offline backup solution"; homepage = "http://www.crashplan.org"; license = licenses.unfree; + broken = true; # outdated and new client has trouble starting (nullpointer exception) maintainers = with maintainers; [ sztupi iElectric ]; }; From 8567c5883b8f60d65ca68fa6e8e653cb9e8b9f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 13 Oct 2015 14:45:52 +0200 Subject: [PATCH 48/88] reaver-wps: set platforms --- pkgs/tools/networking/reaver-wps/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/networking/reaver-wps/default.nix b/pkgs/tools/networking/reaver-wps/default.nix index afce95fbd44..9efe3df7520 100644 --- a/pkgs/tools/networking/reaver-wps/default.nix +++ b/pkgs/tools/networking/reaver-wps/default.nix @@ -22,5 +22,6 @@ stdenv.mkDerivation rec { description = "Brute force attack against Wifi Protected Setup"; homepage = http://code.google.com/p/reaver-wps; license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.linux; }; } From 2f540cbe48b4d1638aa7bb1c0729e0e0200425b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 13 Oct 2015 14:48:26 +0200 Subject: [PATCH 49/88] synapse, hamster-time-tracker: get rid of icon-theme.cache Fixes #10370. --- pkgs/applications/misc/hamster-time-tracker/default.nix | 5 ++++- pkgs/applications/misc/synapse/default.nix | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/hamster-time-tracker/default.nix b/pkgs/applications/misc/hamster-time-tracker/default.nix index 3a94456e6cc..52298e6c297 100644 --- a/pkgs/applications/misc/hamster-time-tracker/default.nix +++ b/pkgs/applications/misc/hamster-time-tracker/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchzip, buildPythonPackage, docbook2x, libxslt, gnome_doc_utils , intltool, dbus_glib, pygobject, pygtk, pyxdg, gnome_python, dbus, sqlite3 +, hicolor_icon_theme }: # TODO: Add optional dependency 'wnck', for "workspace tracking" support. Fixes @@ -17,7 +18,9 @@ buildPythonPackage rec { sha256 = "1a85rcg561792kdyv744cgzw7mmpmgv6d6li1sijfdpqa1ninf8g"; }; - buildInputs = [ docbook2x libxslt gnome_doc_utils intltool dbus_glib ]; + buildInputs = [ + docbook2x libxslt gnome_doc_utils intltool dbus_glib hicolor_icon_theme + ]; propagatedBuildInputs = [ pygobject pygtk pyxdg gnome_python dbus sqlite3 ]; diff --git a/pkgs/applications/misc/synapse/default.nix b/pkgs/applications/misc/synapse/default.nix index 8086e8ca56d..7dce7c7fbcd 100644 --- a/pkgs/applications/misc/synapse/default.nix +++ b/pkgs/applications/misc/synapse/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, intltool, pkgconfig, glib, libnotify, gtk3, libgee -, keybinder3, json_glib, zeitgeist, vala +, keybinder3, json_glib, zeitgeist, vala, hicolor_icon_theme }: with stdenv.lib; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { buildInputs = [ intltool pkgconfig glib libnotify gtk3 libgee keybinder3 json_glib zeitgeist - vala + vala hicolor_icon_theme ]; meta = { From d6c0c0e3c903c5a1c14190ad91e91b66c0c51a0d Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 13 Oct 2015 22:14:27 +0900 Subject: [PATCH 50/88] goaccess: 0.9 -> 0.9.4 --- pkgs/tools/misc/goaccess/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/goaccess/default.nix b/pkgs/tools/misc/goaccess/default.nix index e73bc487f21..8ce93f6bb66 100644 --- a/pkgs/tools/misc/goaccess/default.nix +++ b/pkgs/tools/misc/goaccess/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, pkgconfig, geoip, ncurses, glib }: let - version = "0.9"; + version = "0.9.4"; mainSrc = fetchurl { url = "http://tar.goaccess.io/goaccess-${version}.tar.gz"; - sha256 = "1yi7bxrmhvd11ha405bqpz7q442l9bnnx317iy22xzxjl96frn29"; + sha256 = "1kn5yvgzrzjlxd0zhr2d2gbjdin9j9vmfbk5gkrwqc4kd9zicvla"; }; in From 2b09bfc3c8b54536dca99186f8f1fef3482e96c1 Mon Sep 17 00:00:00 2001 From: Jordan Woehr Date: Tue, 13 Oct 2015 08:12:52 -0600 Subject: [PATCH 51/88] Latest llvm-general now requires llvm 3.5 --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index cc11adbb431..ad26ad43bdf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -635,8 +635,8 @@ self: super: { # Uses OpenGL in testing caramia = dontCheck super.caramia; - # Supports only 3.4 for now, https://github.com/bscarlet/llvm-general/issues/144 - llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_34; }; + # Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142 + llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; }; # Needs help finding LLVM. spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm; From e8d82e08cf927ee75589891f8cef4797eade9385 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 13 Oct 2015 19:29:43 +0300 Subject: [PATCH 52/88] baresip: 0.4.14 -> 0.4.15 --- .../networking/instant-messengers/baresip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/baresip/default.nix b/pkgs/applications/networking/instant-messengers/baresip/default.nix index d41ba5fcdb3..2b60b3a7a46 100644 --- a/pkgs/applications/networking/instant-messengers/baresip/default.nix +++ b/pkgs/applications/networking/instant-messengers/baresip/default.nix @@ -4,11 +4,11 @@ , gsm, speex, portaudio, spandsp, libuuid }: stdenv.mkDerivation rec { - version = "0.4.14"; + version = "0.4.15"; name = "baresip-${version}"; src=fetchurl { url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; - sha256 = "19vn63j6dpybjy14mgnwf0yk2jbcbfdjs50whzwyrrkcv6ipj6hc"; + sha256 = "13712li6y3ikwzl17j46w25xyv3z98yqj7zpr3jifyvbna9ls5r3"; }; buildInputs = [zlib openssl libre librem pkgconfig cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good From 5c32df44c19253720a5a507abf670f3b64114129 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 13 Oct 2015 19:30:01 +0300 Subject: [PATCH 53/88] gajim: 0.16.3 -> 0.16.4 --- .../networking/instant-messengers/gajim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix index 2045dcdeca4..b2325e87e0d 100644 --- a/pkgs/applications/networking/instant-messengers/gajim/default.nix +++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix @@ -20,11 +20,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "gajim-${version}"; - version = "0.16.3"; + version = "0.16.4"; src = fetchurl { url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2"; - sha256 = "05a59hf9wna6n9fi0a4bhz1hifqj21bwb4ff9rd0my23rdwmij51"; + sha256 = "0zyfs7q1qg8iqszr8l1gb18gqla6zrrfsgpmbxblpi9maqxas5i1"; }; patches = [ From 4ab39c9358ad34cd61040e51dfb46d3d45540548 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 13 Oct 2015 19:30:29 +0300 Subject: [PATCH 54/88] eudev: 3.1.2 -> 3.1.5 --- pkgs/os-specific/linux/eudev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/eudev/default.nix b/pkgs/os-specific/linux/eudev/default.nix index 1db5967aab5..e9fcf5d8c4d 100644 --- a/pkgs/os-specific/linux/eudev/default.nix +++ b/pkgs/os-specific/linux/eudev/default.nix @@ -3,10 +3,10 @@ let s = # Generated upstream information rec { baseName="eudev"; - version = "3.1.2"; + version = "3.1.5"; name="${baseName}-${version}"; url="http://dev.gentoo.org/~blueness/eudev/eudev-${version}.tar.gz"; - sha256 = "0wq2w67ip957l5bi21jj3w2rv7s7klcrnlg6zpg1g0fxjfgbd4s3"; + sha256 = "0akg9gcc3c2p56xbhlvbybqavcprly5q0bvk655zwl6d62j8an7p"; }; buildInputs = [ glib pkgconfig gperf utillinux From 8147a3d9d875f855b0204d3ed63e2786261375db Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 13 Oct 2015 19:30:51 +0300 Subject: [PATCH 55/88] dd_rescue: 1.98 -> 1.99 --- pkgs/tools/system/dd_rescue/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/dd_rescue/default.nix b/pkgs/tools/system/dd_rescue/default.nix index a0ff9b063dd..d90b5d1d2f0 100644 --- a/pkgs/tools/system/dd_rescue/default.nix +++ b/pkgs/tools/system/dd_rescue/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoconf }: stdenv.mkDerivation rec { - version = "1.98"; + version = "1.99"; name = "dd_rescue-${version}"; src = fetchurl { - sha256 = "14lf2pv52sr16977qjq1rsr42rfd3ywsss2xw9svgaa14g49ss6b"; + sha256 = "0gkbwssn134fjyyvjvylyvassw4fwv5mbis9gcb969xdc64dfhg1"; url="http://www.garloff.de/kurt/linux/ddrescue/${name}.tar.bz2"; }; From 3d04780e65019c15364123ec19f66262efc0cd0e Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 18:13:05 +0200 Subject: [PATCH 56/88] perl-X11-XCB: 0.12 -> 0.14 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3cd2ecc894b..08f42efac7f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12378,10 +12378,10 @@ let self = _self // overrides; _self = with self; { }; X11XCB = buildPerlPackage rec { - name = "X11-XCB-0.12"; + name = "X11-XCB-0.14"; src = fetchurl { url = "mirror://cpan/authors/id/M/MS/MSTPLBG/${name}.tar.gz"; - sha256 = "15jq55qcc27s5bn925pwry0vx2f4d42rlyz2hlfglnn2qnhsp37s"; + sha256 = "11ff0a4nqbdj68mxdvyqdqvi573ha10vy67wpi7mklpxvlm011bn"; }; AUTOMATED_TESTING = false; buildInputs = [ From 4da51940756493d45cd82030afe5ae5d10ce914a Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 13 Oct 2015 18:35:46 +0200 Subject: [PATCH 57/88] perl-Wx: 0.9923 -> 0.9927 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 08f42efac7f..1869db9fae6 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12320,10 +12320,10 @@ let self = _self // overrides; _self = with self; { }; Wx = buildPerlPackage rec { - name = "Wx-0.9923"; + name = "Wx-0.9927"; src = fetchurl { url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; - sha256 = "1ja2fkz0xabafyc6gnp3nnwsbkkjsf44kq9x5zz6cb5fsp3p9sck"; + sha256 = "1fr23nn5cvzydl8nxfv0iljn10pvwbny0nvpjx31fn2md8dvsx51"; }; propagatedBuildInputs = [ ExtUtilsXSpp AlienWxWidgets ]; # Testing requires an X server: From 7d8602e78e186c59b3d1f68a681a0e433f6cb253 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 13 Oct 2015 14:39:57 +0200 Subject: [PATCH 58/88] geolite-legacy 2015-10-09 -> 2015-10-13 --- pkgs/data/misc/geolite-legacy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 51e46f4335a..fa704aef097 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let # Annoyingly, these files are updated without a change in URL. This means that # builds will start failing every month or so, until the hashes are updated. - version = "2015-10-09"; + version = "2015-10-13"; in stdenv.mkDerivation { name = "geolite-legacy-${version}"; @@ -27,10 +27,10 @@ stdenv.mkDerivation { "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "05j2nygvb7xi4s636dik12vgrdi37q5fdv5k3liqgswf9z0msz81"; + "0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "17s7pcqmfd9xvq0hd7g7nh62sjayl24w04ifm39snrq2a32l667n"; + "1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br"; meta = with stdenv.lib; { inherit version; From 8222eeca6eb3081de3439c2fcfd501dc96b45c6b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 13 Oct 2015 14:43:01 +0200 Subject: [PATCH 59/88] simple-scan 3.18.0 -> 3.18.1 --- pkgs/applications/graphics/simple-scan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index c5d1b936233..d5f5d6c672c 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb , libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }: -let version = "3.18.0"; in +let version = "3.18.1"; in stdenv.mkDerivation rec { name = "simple-scan-${version}"; src = fetchurl { - sha256 = "09qki4h1px65fxwpr7jppzqsi5cfcb8168p13blp3wcfizjgb9gl"; + sha256 = "1i37j36kbn1h8yfzcvbis6f38xz2nj5512ls3gb0j5na0bvja2cw"; url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz"; }; From 3680198bb91649c239ae163bd30b84dbe1040d25 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 13 Oct 2015 18:43:12 +0200 Subject: [PATCH 60/88] libpsl list 2015-09-25 -> 2015-10-11 --- pkgs/development/libraries/libpsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 25bd92add38..ebdce2bfc48 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -5,10 +5,10 @@ let version = "${libVersion}-list-${listVersion}"; - listVersion = "2015-09-25"; + listVersion = "2015-10-11"; listSources = fetchFromGitHub { - sha256 = "045snl0pz8ma5rk51xxbjcamm28hi4z2v7gd8zkkv8yrjyg9yp82"; - rev = "509db00ef21795e58bfc2c576cebf72c8ee7a6f9"; + sha256 = "1zvfywi43kyh7b6hsm8ldmdypk9n36jzp0s1lf2rzd4yzcyxwgzy"; + rev = "8952c0c398ba44d507a8ed430fd1cff7b92dfde8"; repo = "list"; owner = "publicsuffix"; }; From b36ac2c44a44397b55ac00221e2783c27b257ad0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 13 Oct 2015 19:53:54 +0200 Subject: [PATCH 61/88] netsniff-ng 0.5.9-{98-gb3a9f17 -> 106-g895377c} --- pkgs/tools/networking/netsniff-ng/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 9ccc91b7bc1..27175c9ed23 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -2,7 +2,7 @@ , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl , pkgconfig, zlib }: -let version = "0.5.9-98-gb3a9f17"; in +let version = "0.5.9-106-g895377c"; in stdenv.mkDerivation { name = "netsniff-ng-${version}"; @@ -10,8 +10,8 @@ stdenv.mkDerivation { src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; - rev = "b3a9f17eb9c7a47e6c4aee3649179b2a54d17eca"; - sha256 = "05nwi5ksijv42w7km08dhymiyyvcj43b5lrpdf9x5j725l79yqdb"; + rev = "895377c6e96ec8ac853568eb275043741a7621cd"; + sha256 = "092jzakldpqram26dccd5k5hv4jc396c3l7iaf9r3139dx83plag"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl From a65cf63f55b0e808f7b5bf9a52ed330b73a01f03 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 13 Oct 2015 20:56:52 +0200 Subject: [PATCH 62/88] copy-com service: order after network-online.target I doubt that ordering non-sysvinit services after network.target ever makes sense. In this case, CopyConsole requires DNS lookups and fails if these are not yet possible. --- nixos/modules/services/networking/copy-com.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/copy-com.nix b/nixos/modules/services/networking/copy-com.nix index 69a41ab9796..ee0d043d471 100644 --- a/nixos/modules/services/networking/copy-com.nix +++ b/nixos/modules/services/networking/copy-com.nix @@ -39,7 +39,8 @@ in systemd.services."copy-com-${cfg.user}" = { description = "Copy.com client"; - after = [ "network.target" "local-fs.target" ]; + wants = [ "network-online.target" ]; + after = [ "network-online.target" "local-fs.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}"; From 528ebb4e5e0d9c42eea8d9b07655dff9c6966b1d Mon Sep 17 00:00:00 2001 From: Robbin C Date: Wed, 14 Oct 2015 08:48:34 +0800 Subject: [PATCH 63/88] Fix typo in nixos/modules/tasks/filesystems/nfs.nix. statd should be cfg.statd. --- nixos/modules/tasks/filesystems/nfs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/tasks/filesystems/nfs.nix b/nixos/modules/tasks/filesystems/nfs.nix index 79de6556f25..e454eca3a0e 100644 --- a/nixos/modules/tasks/filesystems/nfs.nix +++ b/nixos/modules/tasks/filesystems/nfs.nix @@ -90,7 +90,7 @@ in serviceConfig.Type = "forking"; serviceConfig.ExecStart = '' @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ - ${if cfg.statdPort != null then "-p ${toString statdPort}" else ""} + ${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""} ''; serviceConfig.Restart = "always"; }; From d6d88aaa2b101998b7f3b4ef0f7806024e879828 Mon Sep 17 00:00:00 2001 From: Joe Hermaszewski Date: Sat, 10 Oct 2015 19:30:04 +0100 Subject: [PATCH 64/88] neovim: Create symlink to correct python3 binary The symlink being created pointed to 'python' rather than 'python3' --- pkgs/applications/editors/neovim/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 1cc39b6465c..f9f1921a176 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -103,7 +103,7 @@ let '' + optionalString withPython '' ln -s ${pythonEnv}/bin/python $out/bin/nvim-python '' + optionalString withPython3 '' - ln -s ${python3Env}/bin/python $out/bin/nvim-python3 + ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3 '' + optionalString (withPython || withPython3) '' wrapProgram $out/bin/nvim --add-flags "${ (optionalString withPython From 11aef37ca65e4b52a7c30dbb62e53ed0110d17ba Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Oct 2015 11:52:40 +0200 Subject: [PATCH 65/88] less: Update to 481 --- pkgs/tools/misc/less/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/less/default.nix b/pkgs/tools/misc/less/default.nix index 8c0f0e96d21..af8a0dd7d81 100644 --- a/pkgs/tools/misc/less/default.nix +++ b/pkgs/tools/misc/less/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ncurses }: stdenv.mkDerivation rec { - name = "less-475"; + name = "less-481"; src = fetchurl { url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; - sha256 = "16703m6g5l97af3jwpypgac7gpmh3yjkdpqygf5a2scfip0hxm2g"; + sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; }; # Look for ‘sysless’ in /etc. From 2e098d58d2b845b19fffefbbc54f405ef2d79d8a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Oct 2015 11:54:43 +0200 Subject: [PATCH 66/88] libmicrohttpd: Update to 0.9.44 Also move the info pages to a separate output, significantly reducing the size of the main output. --- pkgs/development/libraries/libmicrohttpd/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libmicrohttpd/default.nix b/pkgs/development/libraries/libmicrohttpd/default.nix index fb6ba1761b5..3ef4ba77c31 100644 --- a/pkgs/development/libraries/libmicrohttpd/default.nix +++ b/pkgs/development/libraries/libmicrohttpd/default.nix @@ -1,13 +1,15 @@ { lib, stdenv, fetchurl, libgcrypt }: stdenv.mkDerivation rec { - name = "libmicrohttpd-0.9.43"; + name = "libmicrohttpd-0.9.44"; src = fetchurl { url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; - sha256 = "17q6v5q0jpg57vylby6rx1qkil72bdx8gij1g9m694gxf5sb6js1"; + sha256 = "07j1p21rvbrrfpxngk8xswzkmjkh94bp1971xfjh1p0ja709qwzj"; }; + outputs = [ "out" "info" ]; + buildInputs = [ libgcrypt ]; preCheck = From a0d7a458b1bf775f82abbefd68622fd41859545b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Oct 2015 13:55:11 +0200 Subject: [PATCH 67/88] Don't block releases on nixos.tests.gnome3.i686-linux http://hydra.nixos.org/build/26702440 Issue #10353. --- nixos/release-combined.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index a3948401d78..4dc221dba68 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -51,7 +51,7 @@ in rec { (all nixos.tests.chromium) (all nixos.tests.firefox) (all nixos.tests.firewall) - (all nixos.tests.gnome3) + nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux (all nixos.tests.installer.lvm) (all nixos.tests.installer.luksroot) (all nixos.tests.installer.separateBoot) From 67861f4b7588c623174ca187f4d0f20241334b30 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 12:16:22 +0200 Subject: [PATCH 68/88] perl-Test-Warnings: 0.016 -> 0.021 --- pkgs/top-level/perl-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 432c94d8848..7084e1f3c74 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11223,13 +11223,13 @@ let self = _self // overrides; _self = with self; { }; }; - TestWarnings = buildPerlPackage { - name = "Test-Warnings-0.016"; + TestWarnings = buildPerlPackage rec { + name = "Test-Warnings-0.021"; src = fetchurl { - url = mirror://cpan/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz; - sha256 = "09ebc9afa29eb4d1d44fbd974dfcd52e0a2d9ce7ec3e3ee7602394157831aba9"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "0i1crkhqfl5gs55i5nrvsw3xy946ajgnvp4gqrzvsn1x6cp1i2nr"; }; - buildInputs = [ TestTester if_ ]; + buildInputs = [ TestTester if_ CPANMetaCheck ModuleMetadata ]; meta = { homepage = https://github.com/karenetheridge/Test-Warnings; description = "Test for warnings and the lack of them"; From 4e62944d83a01bb896551dfb701d42fae875e699 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 12:19:29 +0200 Subject: [PATCH 69/88] perl-Test-Version: 1.002004 -> 2.03 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 7084e1f3c74..1c504c4c10b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11670,11 +11670,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestVersion = buildPerlPackage { - name = "Test-Version-1.002004"; + TestVersion = buildPerlPackage rec { + name = "Test-Version-2.03"; src = fetchurl { - url = mirror://cpan/authors/id/X/XE/XENO/Test-Version-1.002004.tar.gz; - sha256 = "1lvg1p6i159ssk5br5qb3gvrzdg59wchd97z7j44arnlkhfvwhgv"; + url = "mirror://cpan/authors/id/P/PL/PLICEASE/${name}.tar.gz"; + sha256 = "02nbi7iqab1b0ngkiim9kbvnnr9bhi17bq54vm8hn9ridzgbj1vj"; }; buildInputs = [ TestException TestRequires TestTester ]; propagatedBuildInputs = [ FileFindRulePerl ]; From b8210de8914d90dd847f319a192061a40c77f484 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 12:31:33 +0200 Subject: [PATCH 70/88] perl-Test-Trap: 0.2.2 -> 0.3.2 --- pkgs/top-level/perl-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 1c504c4c10b..09610638840 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11640,10 +11640,10 @@ let self = _self // overrides; _self = with self; { }; }; - TestTrap = buildPerlPackage { - name = "Test-Trap-0.2.2"; + TestTrap = buildPerlPackage rec { + name = "Test-Trap-0.3.2"; src = fetchurl { - url = mirror://cpan/authors/id/E/EB/EBHANSSEN/Test-Trap-v0.2.2.tar.gz; + url = "mirror://cpan/authors/id/E/EB/EBHANSSEN/${name}.tar.gz"; sha256 = "1ci5ag9pm850ww55n2929skvw3avy6xcrwmmi2yyn0hifxx9dybs"; }; buildInputs = [ TestTester ]; From ac0a757465de877a8f7f374a861af456147a89f6 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 12:41:01 +0200 Subject: [PATCH 71/88] perl-Test-TCP: 1.18 -> 2.14 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 09610638840..7a5b1a2af1e 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11161,11 +11161,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestTCP = buildPerlPackage { - name = "Test-TCP-1.18"; + TestTCP = buildPerlPackage rec { + name = "Test-TCP-2.14"; src = fetchurl { - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-TCP-1.18.tar.gz; - sha256 = "0flm7x0z7amppi9y6s8mxm0pkrgfihfpfjs0w4i6s80jiss1gfld"; + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; + sha256 = "00bxgm7qva4fd25phwl8fvv36h8h5k3jk89hz9302a288wv3ysmr"; }; propagatedBuildInputs = [ TestSharedFork ]; meta = { From 1b40c4bb771aa90e4c3be42a9cb7303defd598f2 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 12:48:58 +0200 Subject: [PATCH 72/88] perl-Test-Synopsis: 0.10 -> 0.11 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 7a5b1a2af1e..023afd9889d 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11135,11 +11135,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ HookLexWrap ]; }; - TestSynopsis = buildPerlPackage { - name = "Test-Synopsis-0.10"; + TestSynopsis = buildPerlPackage rec { + name = "Test-Synopsis-0.11"; src = fetchurl { - url = mirror://cpan/authors/id/Z/ZO/ZOFFIX/Test-Synopsis-0.10.tar.gz; - sha256 = "0gbk4d2vwlldsj5shmbdar3a29vgrw84ldsvm26mflkr5ji34adv"; + url = "mirror://cpan/authors/id/Z/ZO/ZOFFIX/${name}.tar.gz"; + sha256 = "1jn3vna5r5fa9nv33n1x0bmgc434sk0ggar3jm78xx0zzy5jnsxv"; }; meta = { description = "Test your SYNOPSIS code"; From d443e8795de4e4d304b80391c374b3aabe6ada26 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 12:52:10 +0200 Subject: [PATCH 73/88] perl-Test-Spec: 0.47 -> 0.51 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 023afd9889d..e589f422add 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11113,11 +11113,11 @@ let self = _self // overrides; _self = with self; { TestSimple = null; - TestSpec = buildPerlPackage { - name = "Test-Spec-0.47"; + TestSpec = buildPerlPackage rec { + name = "Test-Spec-0.51"; src = fetchurl { - url = mirror://cpan/authors/id/P/PH/PHILIP/Test-Spec-0.47.tar.gz; - sha256 = "e425c0b9efa3c7e21496d31a607d072a63e31988c3d298a8c1fd7d145cc0681e"; + url = "mirror://cpan/authors/id/A/AN/ANDYJONES/${name}.tar.gz"; + sha256 = "0n2pzc32q4fr1b9w292ld9gh3yn3saxib3hxrjx6jvcmy3k9jkbi"; }; propagatedBuildInputs = [ PackageStash TestDeep TestTrap TieIxHash ]; meta = { From 51b4d6fe02802413a9708ddb71711d0c9840757c Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 13:01:17 +0200 Subject: [PATCH 74/88] perl-Test-Shared-Fork: 0.29 -> 0.34 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index e589f422add..441f2b64201 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11097,11 +11097,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ ProbePerl IPCRun3 ]; }; - TestSharedFork = buildPerlPackage { - name = "Test-SharedFork-0.29"; + TestSharedFork = buildPerlPackage rec { + name = "Test-SharedFork-0.34"; src = fetchurl { - url = mirror://cpan/authors/id/E/EX/EXODIST/Test-SharedFork-0.29.tar.gz; - sha256 = "63af7788cc35b9b7e6fa37c61220ca66abd6364d8bb90c20038e3d8241988a6e"; + url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; + sha256 = "1yq4xzify3wqdc07zq33lwgh9gywp3qd8w6wzwrllbjw0hhkm4s8"; }; buildInputs = [ TestRequires ]; meta = { From 171147949ddc2afb6351a839016b425daa8c0e13 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 13:34:48 +0200 Subject: [PATCH 75/88] perl-Test-Requires: 0.06 -> 0.10 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 441f2b64201..0886fc4a5ba 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11045,11 +11045,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestRequires = buildPerlPackage { - name = "Test-Requires-0.06"; + TestRequires = buildPerlPackage rec { + name = "Test-Requires-0.10"; src = fetchurl { - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-Requires-0.06.tar.gz; - sha256 = "1ksyg4npzx5faf2sj80rm74qjra4q679750vfqfvw3kg1d69wvwv"; + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; + sha256 = "1d9f481lj12cw1ciil46xq9nq16p6a90nm7yrsalpf8asn8s6s17"; }; meta = { description = "Checks to see if the module can be loaded"; From af75246b21f36bb1be9154696b81cdc971310f0c Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 14 Oct 2015 14:22:07 +0200 Subject: [PATCH 76/88] perl-Test-Pod: 1.48 -> 1.51 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 0886fc4a5ba..c3865223554 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -10996,11 +10996,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ PerlCritic ]; }; - TestPod = buildPerlPackage { - name = "Test-Pod-1.48"; + TestPod = buildPerlPackage rec { + name = "Test-Pod-1.51"; src = fetchurl { - url = mirror://cpan/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz; - sha256 = "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "1yvy5mc4j3s2h4aizryvark2nm58g2c6zhw9mlx9wmsavz7d78f1"; }; meta = { homepage = http://search.cpan.org/dist/Test-Pod/; From 013cf1b4f26b0a0fb6191cd562e5c5424af5610d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Oct 2015 14:27:13 +0200 Subject: [PATCH 77/88] syslinux: Strip static libraries This prevents a retained dependency on gcc. --- pkgs/os-specific/linux/syslinux/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/syslinux/default.nix b/pkgs/os-specific/linux/syslinux/default.nix index 3c01516b081..150b2b44729 100644 --- a/pkgs/os-specific/linux/syslinux/default.nix +++ b/pkgs/os-specific/linux/syslinux/default.nix @@ -21,6 +21,8 @@ stdenv.mkDerivation rec { substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl) ''; + stripDebugList = "bin sbin share/syslinux/com32"; + makeFlags = [ "BINDIR=$(out)/bin" "SBINDIR=$(out)/sbin" From b41742414e99967ec40699d1fa6e76a1b1e40b67 Mon Sep 17 00:00:00 2001 From: "Desmond O. Chang" Date: Wed, 14 Oct 2015 20:38:30 +0800 Subject: [PATCH 78/88] git-crypt: update maintainer --- lib/maintainers.nix | 1 + .../version-management/git-and-tools/git-crypt/default.nix | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 1eb2906c6a5..6248ecadb7d 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -81,6 +81,7 @@ dezgeg = "Tuomas Tynkkynen "; dfoxfranke = "Daniel Fox Franke "; dmalikov = "Dmitry Malikov "; + dochang = "Desmond O. Chang "; doublec = "Chris Double "; ebzzry = "Rommel Martinez "; ederoyd46 = "Matthew Brown "; diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix index c13c5e07001..c0acb13740a 100644 --- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { make install PREFIX=$out ''; - meta = { + meta = with stdenv.lib; { homepage = "https://www.agwa.name/projects/git-crypt"; description = "transparent file encryption in git"; longDescription = '' @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { entire repository. ''; downloadPage = "https://github.com/AGWA/git-crypt/releases"; - license = stdenv.lib.licenses.gpl3; + license = licenses.gpl3; version = "0.5.0"; - maintainers = [ "Desmond O. Chang " ]; + maintainers = [ maintainers.dochang ]; }; } From a6011bb606bc6e285f1dbe742e6de1887984d7e2 Mon Sep 17 00:00:00 2001 From: Andraz Brodnik Date: Tue, 13 Oct 2015 20:39:13 +0200 Subject: [PATCH 79/88] scrolls: 2014-03-08 -> 2015-10-13 --- pkgs/games/scrolls/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/scrolls/default.nix b/pkgs/games/scrolls/default.nix index 0f252a5043f..5fa7410ef93 100644 --- a/pkgs/games/scrolls/default.nix +++ b/pkgs/games/scrolls/default.nix @@ -2,7 +2,7 @@ , mesa_glu, libX11, libXext, libXcursor, libpulseaudio }: stdenv.mkDerivation { - name = "scrolls-2014-03-08"; + name = "scrolls-2015-10-13"; meta = { description = "A strategy collectible card game"; @@ -16,7 +16,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://download.scrolls.com/client/linux.tar.gz"; - sha256 = "164d13ce5b81b215a58bae5a0d024b4cf6e32c986ca57a2c9d4e80326edb5004"; + sha256 = "ead1fd14988aa07041fedfa7f845c756cd5077a5a402d85bfb749cb669ececec"; }; libPath = stdenv.lib.makeLibraryPath [ @@ -39,7 +39,7 @@ stdenv.mkDerivation { --set-rpath "$libPath" "$out/opt/Scrolls/Scrolls" mkdir "$out/bin" - ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" + ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" ''; } From 8b847ce3d6d6dcb3ea3b8772fd2be21b1394ecdd Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Wed, 14 Oct 2015 16:51:04 +0200 Subject: [PATCH 80/88] ardour: fix the git revision and hash to _really_ pull the latest 4.2 version --- pkgs/applications/audio/ardour/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index e47dbfb856b..56ba68df70b 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -25,8 +25,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "Ardour"; repo = "ardour"; - rev = "fe672c827cb2c08c94b1fa7e527d884c522a1af7"; - sha256 = "12yfy9l5mnl96ix4s2qicp3m2zscli1a4bd50nk9v035pgf77s3f"; + rev = "05e3a00b7e3a52a838bc5ec9ee7b3b9e6a271feb"; + sha256 = "1j8zw0bvh16qwyy8qrqynpak9nghl9j3qhjjcdl7wh9raafjqc00"; }; buildInputs = From 88cba6d8b576495143ea3d1293a65d10a97bddf5 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 14 Oct 2015 17:58:51 +0300 Subject: [PATCH 81/88] yandex-disk: update 0.1.5.905 -> 0.1.5.940 --- pkgs/tools/filesystems/yandex-disk/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/yandex-disk/default.nix b/pkgs/tools/filesystems/yandex-disk/default.nix index 97d70d1a45b..42308947c07 100644 --- a/pkgs/tools/filesystems/yandex-disk/default.nix +++ b/pkgs/tools/filesystems/yandex-disk/default.nix @@ -6,18 +6,18 @@ let p = if stdenv.is64bit then { arch = "x86_64"; gcclib = "${stdenv.cc.cc}/lib64"; - sha256 = "08mmjz061b0hrqp8zg31w089n5bk3sq4r3w84zr33d8pnvkgq2wk"; + sha256 = "1dr976z0zgg5jk477hrnfmpcx4llh5xi1493k0pkp28m6ypbxy2q"; } else { arch = "i386"; gcclib = "${stdenv.cc.cc}/lib"; - sha256 = "1zb6cnldd43nr4k2qg9hnrkgj0iik2gpxqrjypbhwv75hnvjma93"; + sha256 = "01v0caf194y6yb0zc0d3ywx3y0rwb7sxkav4ickd4l968jpi8p91"; }; in stdenv.mkDerivation rec { name = "yandex-disk-${version}"; - version = "0.1.5.905"; + version = "0.1.5.940"; src = fetchurl { url = "http://repo.yandex.ru/yandex-disk/rpm/stable/${p.arch}/${name}-1.fedora.${p.arch}.rpm"; From 5f077e229625583072ebf63ea48b11170771b0ed Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Oct 2015 18:05:50 +0200 Subject: [PATCH 82/88] Factor out option renaming Option aliases/deprecations can now be declared in any NixOS module, not just in nixos/modules/rename.nix. This is more modular (since it allows for example grub-related aliases to be declared in the grub module), and allows aliases outside of NixOS (e.g. in NixOps modules). The syntax is a bit funky. Ideally we'd have something like: options = { foo.bar.newOption = mkOption { ... }; foo.bar.oldOption = mkAliasOption [ "foo" "bar" "newOption" ]; }; but that's not possible because options cannot define values in *other* options - you need to have a "config" for that. So instead we have functions that return a *module*: mkRemovedOptionModule, mkRenamedOptionModule and mkAliasOptionModule. These can be used via "imports", e.g. imports = [ (mkAliasOptionModule [ "foo" "bar" "oldOption" ] [ "foo" "bar" "newOption" ]); ]; As an added bonus, deprecation warnings now show the file name of the offending module. Fixes #10385. --- lib/modules.nix | 65 ++++++ nixos/modules/config/users-groups.nix | 4 + nixos/modules/rename.nix | 218 ++++++------------ .../modules/system/boot/loader/grub/grub.nix | 11 + nixos/modules/system/boot/systemd.nix | 7 + 5 files changed, 155 insertions(+), 150 deletions(-) diff --git a/lib/modules.nix b/lib/modules.nix index 3e4d0547ecc..12ec7004d1e 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -469,6 +469,7 @@ rec { mkBefore = mkOrder 500; mkAfter = mkOrder 1500; + # Convenient property used to transfer all definitions and their # properties from one option to another. This property is useful for # renaming options, and also for including properties from another module @@ -498,4 +499,68 @@ rec { /* Compatibility. */ fixMergeModules = modules: args: evalModules { inherit modules args; check = false; }; + + /* Return a module that causes a warning to be shown if the + specified option is defined. For example, + + mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ] + + causes a warning if the user defines boot.loader.grub.bootDevice. + */ + mkRemovedOptionModule = optionName: + { options, ... }: + { options = setAttrByPath optionName (mkOption { + visible = false; + }); + config.warnings = + let opt = getAttrFromPath optionName options; in + optional opt.isDefined + "The option definition `${showOption optionName}' in ${showFiles opt.files} no longer has any effect; please remove it."; + }; + + /* Return a module that causes a warning to be shown if the + specified "from" option is defined; the defined value is however + forwarded to the "to" option. This can be used to rename options + while providing backward compatibility. For example, + + mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] + + forwards any definitions of boot.copyKernels to + boot.loader.grub.copyKernels while printing a warning. + */ + mkRenamedOptionModule = from: to: doRename { + inherit from to; + visible = false; + warn = true; + use = builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'."; + }; + + /* Like ‘mkRenamedOptionModule’, but doesn't show a warning. */ + mkAliasOptionModule = from: to: doRename { + inherit from to; + visible = true; + warn = false; + use = id; + }; + + doRename = { from, to, visible, warn, use }: + let + toOf = attrByPath to + (abort "Renaming error: option `${showOption to}' does not exists."); + in + { config, options, ... }: + { options = setAttrByPath from (mkOption { + description = "Alias of ."; + apply = x: use (toOf config); + }); + config = { + /* + warnings = + let opt = getAttrFromPath from options; in + optional (warn && opt.isDefined) + "The option `${showOption from}' defined in ${showFiles opt.files} has been renamed to `${showOption to}'."; + */ + } // setAttrByPath to (mkAliasDefinitions (getAttrFromPath from options)); + }; + } diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix index adc014eed41..485926fb1dd 100644 --- a/nixos/modules/config/users-groups.nix +++ b/nixos/modules/config/users-groups.nix @@ -550,4 +550,8 @@ in { }; + imports = + [ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ]) + (mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ]) + ]; } diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 62be7dc6cae..28ac1c3e888 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -1,170 +1,88 @@ -{ config, lib, options, ... }: +{ lib, ... }: with lib; -let +{ + imports = [ + (mkRenamedOptionModule [ "environment" "x11Packages" ] [ "environment" "systemPackages" ]) + (mkRenamedOptionModule [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ]) + (mkRenamedOptionModule [ "environment" "nix" ] [ "nix" "package" ]) + (mkRenamedOptionModule [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ]) + (mkRenamedOptionModule [ "fonts" "extraFonts" ] [ "fonts" "fonts" ]) - alias = from: to: rename { - inherit from to; - name = "Alias"; - use = id; - define = id; - visible = true; - }; + (mkRenamedOptionModule [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ]) + (mkRenamedOptionModule [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ]) + (mkRenamedOptionModule [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ]) - # warn option was renamed - obsolete = from: to: rename { - inherit from to; - name = "Obsolete name"; - use = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; - define = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; - }; + # Old Grub-related options. + (mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]) + (mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ]) - # abort if deprecated option is used - deprecated = from: to: rename { - inherit from to; - name = "Deprecated name"; - use = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; - define = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; - }; + # smartd + (mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ]) - showOption = concatStringsSep "."; + # OpenSSH + (mkRenamedOptionModule [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ]) + (mkAliasOptionModule [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ]) + (mkRenamedOptionModule [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ]) + (mkRenamedOptionModule [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ]) + (mkRenamedOptionModule [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ]) + (mkRenamedOptionModule [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ]) + (mkRenamedOptionModule [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ]) + (mkRenamedOptionModule [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ]) + (mkAliasOptionModule [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ]) - zipModules = list: - zipAttrsWith (n: v: - if tail v != [] then - if all (o: isAttrs o && o ? _type) v then mkMerge v - else if n == "_type" then head v - else if n == "warnings" then concatLists v - else if n == "description" || n == "apply" then - abort "Cannot rename an option to multiple options." - else zipModules v - else head v - ) list; + # VirtualBox + (mkRenamedOptionModule [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) + (mkRenamedOptionModule [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) - rename = { from, to, name, use, define, visible ? false }: - let - setTo = setAttrByPath to; - setFrom = setAttrByPath from; - toOf = attrByPath to - (abort "Renaming error: option `${showOption to}' does not exists."); - fromOf = attrByPath from - (abort "Internal error: option `${showOption from}' should be declared."); - in - [ { options = setFrom (mkOption { - description = "${name} of ."; - apply = x: use (toOf config); - inherit visible; - }); + # Tarsnap + (mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]) - config = setTo (mkAliasAndWrapDefinitions define (fromOf options)); - } - ]; + # proxy + (mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ]) - obsolete' = option: singleton - { options = setAttrByPath option (mkOption { - default = null; - visible = false; - }); - config.warnings = optional (getAttrFromPath option config != null) - "The option `${showOption option}' defined in your configuration no longer has any effect; please remove it."; - }; + # KDE + (mkRenamedOptionModule [ "kde" "extraPackages" ] [ "environment" "systemPackages" ]) + (mkRenamedOptionModule [ "environment" "kdePackages" ] [ "environment" "systemPackages" ]) -in zipModules ([] + # Multiple efi bootloaders now + (mkRenamedOptionModule [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ]) -++ obsolete [ "environment" "x11Packages" ] [ "environment" "systemPackages" ] -++ obsolete [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ] -++ obsolete [ "environment" "nix" ] [ "nix" "package" ] -++ obsolete [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ] -++ obsolete [ "fonts" "extraFonts" ] [ "fonts" "fonts" ] -++ alias [ "users" "extraUsers" ] [ "users" "users" ] -++ alias [ "users" "extraGroups" ] [ "users" "groups" ] + # NixOS environment changes + # !!! this hardcodes bash, could we detect from config which shell is actually used? + (mkRenamedOptionModule [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ]) -++ obsolete [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ] -++ obsolete [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ] -++ obsolete [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ] + (mkRenamedOptionModule [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ]) + (mkRenamedOptionModule [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ]) + (mkRenamedOptionModule [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ]) + (mkRenamedOptionModule [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ]) -# FIXME: Remove these eventually. -++ obsolete [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ] -++ obsolete [ "boot" "systemd" "targets" ] [ "systemd" "targets" ] -++ obsolete [ "boot" "systemd" "services" ] [ "systemd" "services" ] + (mkRenamedOptionModule [ "services" "mysql55" ] [ "services" "mysql" ]) -# Old Grub-related options. -++ obsolete [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] -++ obsolete [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ] -++ obsolete [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ] -++ obsolete [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ] -++ obsolete [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ] -++ obsolete [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ] + (mkAliasOptionModule [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ]) -++ obsolete [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ] -++ obsolete [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ] + # XBMC + (mkRenamedOptionModule [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) + (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) -# smartd -++ obsolete [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ] + # DNSCrypt-proxy + (mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]) -# OpenSSH -++ obsolete [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ] -++ alias [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ] -++ obsolete [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ] -++ obsolete [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ] -++ obsolete [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ] -++ obsolete [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ] -++ obsolete [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ] -++ obsolete [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ] -++ alias [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ] + # Options that are obsolete and have no replacement. + (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) + (mkRemovedOptionModule [ "programs" "bash" "enable" ]) + (mkRemovedOptionModule [ "services" "samba" "defaultShare" ]) + (mkRemovedOptionModule [ "services" "syslog-ng" "serviceName" ]) + (mkRemovedOptionModule [ "services" "syslog-ng" "listenToJournal" ]) + (mkRemovedOptionModule [ "ec2" "metadata" ]) + (mkRemovedOptionModule [ "services" "openvpn" "enable" ]) -# VirtualBox -++ obsolete [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] -++ obsolete [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] -++ obsolete [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] -++ obsolete [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] -++ obsolete [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] -++ obsolete [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] -++ obsolete [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] -++ obsolete [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] - -# Tarsnap -++ obsolete [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ] - -# proxy -++ obsolete [ "nix" "proxy" ] [ "networking" "proxy" "default" ] - -# KDE -++ deprecated [ "kde" "extraPackages" ] [ "environment" "systemPackages" ] -++ obsolete [ "environment" "kdePackages" ] [ "environment" "systemPackages" ] - -# Multiple efi bootloaders now -++ obsolete [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ] - -# NixOS environment changes -# !!! this hardcodes bash, could we detect from config which shell is actually used? -++ obsolete [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ] - -++ obsolete [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ] -++ obsolete [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ] -++ obsolete [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ] -++ obsolete [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ] - -++ obsolete [ "services" "mysql55" ] [ "services" "mysql" ] - -++ alias [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ] - -# XBMC -++ obsolete [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] -++ obsolete [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] - -# DNSCrypt-proxy -++ obsolete [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ] - -# Options that are obsolete and have no replacement. -++ obsolete' [ "boot" "loader" "grub" "bootDevice" ] -++ obsolete' [ "boot" "initrd" "luks" "enable" ] -++ obsolete' [ "programs" "bash" "enable" ] -++ obsolete' [ "services" "samba" "defaultShare" ] -++ obsolete' [ "services" "syslog-ng" "serviceName" ] -++ obsolete' [ "services" "syslog-ng" "listenToJournal" ] -++ obsolete' [ "ec2" "metadata" ] -++ obsolete' [ "services" "openvpn" "enable" ] - -) + ]; +} diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index ce3efc3cd7c..5f09e937537 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -488,4 +488,15 @@ in ]; + + imports = + [ (mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ]) + (mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ]) + (mkRenamedOptionModule [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ]) + (mkRenamedOptionModule [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ]) + (mkRenamedOptionModule [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ]) + (mkRenamedOptionModule [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ]) + (mkRenamedOptionModule [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ]) + ]; + } diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 13c44e0930a..4704b3981e4 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -772,4 +772,11 @@ in }; + # FIXME: Remove these eventually. + imports = + [ (mkRenamedOptionModule [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ]) + (mkRenamedOptionModule [ "boot" "systemd" "targets" ] [ "systemd" "targets" ]) + (mkRenamedOptionModule [ "boot" "systemd" "services" ] [ "systemd" "services" ]) + ]; + } From e2a58a6a03ace0c8c8d8b2bb9652c9e226d77b15 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 14 Oct 2015 20:16:13 +0300 Subject: [PATCH 83/88] djmount: init at 0.71 --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6564a15cad2..037030f9794 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -602,6 +602,8 @@ let bonnie = callPackage ../tools/filesystems/bonnie { }; + djmount = callPackage ../tools/filesystems/djmount { }; + grc = callPackage ../tools/misc/grc { }; lastpass-cli = callPackage ../tools/security/lastpass-cli { }; From 91202fd475d78472342b0cdda4a2f9b856202ebd Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 14 Oct 2015 20:20:30 +0300 Subject: [PATCH 84/88] djmount: add missing file --- pkgs/tools/filesystems/djmount/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/tools/filesystems/djmount/default.nix diff --git a/pkgs/tools/filesystems/djmount/default.nix b/pkgs/tools/filesystems/djmount/default.nix new file mode 100644 index 00000000000..7010a60bcbc --- /dev/null +++ b/pkgs/tools/filesystems/djmount/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, fuse }: + +stdenv.mkDerivation rec { + name = "djmount-${version}"; + version = "0.71"; + src = fetchurl { + url = "mirror://sourceforge/djmount/${version}/${name}.tar.gz"; + sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa"; + }; + + buildInputs = [ pkgconfig fuse]; + + meta = { + homepage = http://djmount.sourceforge.net/; + description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices"; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + license = stdenv.lib.licenses.gpl2; + }; +} From 621b66c3df4bfa1debec3002740480fb1a590c0e Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 14 Oct 2015 19:25:58 +0200 Subject: [PATCH 85/88] js_of_ocaml: fix for OCaml < 4.0 --- .../tools/ocaml/js_of_ocaml/Makefile.conf.diff | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff b/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff index e6fc96038ff..0e3f55df6d2 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff +++ b/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff @@ -8,3 +8,14 @@ #### +--- old/Makefile 2014-09-30 16:40:37.000000000 +0200 ++++ new/Makefile 2015-10-14 10:28:41.366815864 +0200 +@@ -52,7 +52,7 @@ + install-bin: + install -d -m 755 $(BINDIR) + install $(BIN) $(BINDIR) +- install $(TOOLS) $(BINDIR) ++ install $(TOOLS) $(BINDIR) || true + + uninstall: uninstall-lib uninstall-bin + From 92e2e18fbb3348f52c7ecb27b221142d3b088671 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 14 Oct 2015 19:26:38 +0200 Subject: [PATCH 86/88] ocaml-ocp-indent: 1.4.2b -> 1.5.2 --- .../development/tools/ocaml/ocp-indent/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/ocaml/ocp-indent/default.nix b/pkgs/development/tools/ocaml/ocp-indent/default.nix index 9ad2976adbf..224ce57808f 100644 --- a/pkgs/development/tools/ocaml/ocp-indent/default.nix +++ b/pkgs/development/tools/ocaml/ocp-indent/default.nix @@ -1,23 +1,25 @@ -{ stdenv, fetchurl, ocaml, findlib, ocpBuild, opam, cmdliner }: +{ stdenv, fetchzip, ocaml, findlib, ocpBuild, opam, cmdliner }: let inherit (stdenv.lib) getVersion versionAtLeast; in assert versionAtLeast (getVersion ocaml) "3.12.1"; -assert versionAtLeast (getVersion ocpBuild) "1.99.3-beta"; +assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; stdenv.mkDerivation { - name = "ocp-indent-1.4.2b"; + name = "ocp-indent-1.5.2"; - src = fetchurl { - url = "https://github.com/OCamlPro/ocp-indent/archive/1.4.2b.tar.gz"; - sha256 = "1p0n2zcl5kf543x2xlqrz1aa51f0dqal8l392sa41j6wx82j0gpb"; + src = fetchzip { + url = "https://github.com/OCamlPro/ocp-indent/archive/1.5.2.tar.gz"; + sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; }; buildInputs = [ ocaml findlib ocpBuild opam cmdliner ]; createFindlibDestdir = true; + preConfigure = "patchShebangs ./install.sh"; + postInstall = '' mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/} ''; From 0da6fb5fa5a1cc8181996fbfa447c0754b8b9fca Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 14 Oct 2015 19:27:10 +0200 Subject: [PATCH 87/88] ocaml-cmdliner: 0.9.7 -> 0.9.8 --- pkgs/development/ocaml-modules/cmdliner/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/cmdliner/default.nix b/pkgs/development/ocaml-modules/cmdliner/default.nix index e90e7c4571c..ba955061740 100644 --- a/pkgs/development/ocaml-modules/cmdliner/default.nix +++ b/pkgs/development/ocaml-modules/cmdliner/default.nix @@ -2,11 +2,11 @@ let pname = "cmdliner"; - version = "0.9.7"; + version = "0.9.8"; ocaml_version = (builtins.parseDrvName ocaml.name).version; in -assert stdenv.lib.versionAtLeast ocaml_version "4.00"; +assert stdenv.lib.versionAtLeast ocaml_version "3.12"; stdenv.mkDerivation { @@ -14,7 +14,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz"; - sha256 = "0ymzy1l6z85b6779lfxk179igfpf7rgfik70kr3c7lxmzwy8j6cw"; + sha256 = "0hdxlkgiwjml9dpaa80282a8350if7mc1m6yz2mrd7gci3fszykx"; }; unpackCmd = "tar xjf $src"; From 37d731790b071403502e5eb636d4cfe7ba967c90 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 14 Oct 2015 19:27:33 +0200 Subject: [PATCH 88/88] ocp-index: requires OCaml >= 4 --- pkgs/development/tools/ocaml/ocp-index/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/ocaml/ocp-index/default.nix b/pkgs/development/tools/ocaml/ocp-index/default.nix index c901d676b90..76be5f8bd47 100644 --- a/pkgs/development/tools/ocaml/ocp-index/default.nix +++ b/pkgs/development/tools/ocaml/ocp-index/default.nix @@ -2,7 +2,7 @@ let inherit (stdenv.lib) getVersion versionAtLeast optional; in -assert versionAtLeast (getVersion ocaml) "3.12.1"; +assert versionAtLeast (getVersion ocaml) "4"; assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; assert versionAtLeast (getVersion ocpIndent) "1.4.2";