Commit Graph

34060 Commits

Author SHA1 Message Date
Domen Kožar
ab0aae42a4 couchdb: remove redundant customConfigFile 2014-02-27 14:34:19 +01:00
Rok Garbas
a6a3b22bc0 removing unused couchdb files 2014-02-27 13:34:11 +01:00
Rok Garbas
62438c09f7 update couchdb to 1.5.0(current latest) and add service for it 2014-02-27 13:34:11 +01:00
Domen Kožar
c23ec33c77 Add selenium-server-standalone (submitted by coreyoconnor) 2014-02-27 13:06:33 +01:00
Austin Seipp
2059d4c339 cb0cat: version 20131216153906
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-27 00:01:59 -06:00
Evgeny Egorochkin
05c19ced9b linuxPackages_3_12.perf: update from 3.12.12 to 3.12.13 2014-02-26 20:49:27 +02:00
Evgeny Egorochkin
68e9829134 youtubeDL: update from 2014.02.19.1 to 2014.02.26 2014-02-26 20:47:30 +02:00
Oliver Charles
08dfbebbf1 haskellPackages.singletons: New expression
Haddock's are disabled for the singletons library as it can't yet
understand some of the extensions that this library uses.
2014-02-26 16:21:47 +00:00
Shea Levy
1ce6fff4e2 Merge mysql55 module into mysql
This also removes the default for services.mysql.package, as this should
not generally be updated automatically if we change the mysql attribute
2014-02-26 07:54:12 -05:00
Song Wenwu
687fe45582 renpy: update to 6.17.1 2014-02-26 19:21:46 +08:00
Shea Levy
2fd60ee948 Add graph-wrapper haskell package 2014-02-26 06:07:22 -05:00
Pascal Wittmann
78e7d5db00 calibre: upgrade from 1.23.0 to 1.25.0 2014-02-26 09:36:14 +01:00
aszlig
b5de8156cb
Merge branch 'vmtools-windows-vm'.
This adds a new function in vmTools, called runInWindowsVM, which allows
to run a derivation within a Windows + Cygwin environment.

To use it, you need to pass a Windows ISO and product key, for example:

------------------------------------------------------
vmTools.runInWindowsVM (stdenv.mkDerivation {
  name = "hello-from-windows";

  windowsImage = {
    isoFile = /path/to/windows/image.iso;
    productKey = "ABCDE-FGHIJ-KLMNO-PQRST-UVWXY";
  };

  buildCommand = ''
    echo 'Look, I am running inside Windoze!'
    uname -a > "$out"
  '';
})
------------------------------------------------------

The derivation is then run within a special build process, which roughly
does something like this:

                ____________
               |            |
               | controller |
               |____________|
              /      |       \
  _________ /    ____|____     \___________      _______
 |         |    |         |    |           |    |       |
 | install | -> | suspend | -> | suspended | -> | build |
 |_________|    |_________|    |___________|    |_______|

There are three steps necessary to produce the builder, which in the end
is just a suspended Windows VM, running Cygwin and OpenSSH.

Those steps are essentially:

 * install: Install the base Windows VM with Cygwin and OpenSSH.
 * suspend: Run the installed VM and dump the memory into a state file.
 * suspended: Resume from the state file and execute the build.

Every build is based on the "suspended" step, which throws away all
changes except to the resulting output store path(s).

All of these steps are based on the controller, which is described in
greater detail in commit 276b72fb93.

The reason I'm merging this right in is because it actually adds a
feature that doesn't break existing functionality and only hooks into
vmTools with a single line.

To the contrary it even duplicates a bit of the code from vmTools, which
might be a good start for refactoring. I didn't do that within that
branch, because it otherwise *could* break existing functionality - VM
tests in particular.

Also, this implementation currently *only* supports Windows XP, because
the implementation was originally made for building a Software where the
majority of the users are using Windows XP and we need to do extensive
testing on that platform.

However, adding support for more recent versions is rather trivial. All
there needs to be done is adding a new unattended installation config in
unattended-image.nix.
2014-02-26 06:24:56 +01:00
aszlig
88ea17284e
vmTools: Hook in runInWindowsVM function.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 06:21:48 +01:00
aszlig
895a683d39
vm/windows: Add setup.ini for 32bit architecture.
Also update 64bit setup.ini and check whether we have a 64 bit stdenv in
order to choose the proper Cygwin version. Otherwise we now have the
setup.ini for 32bit available as well.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 06:20:24 +01:00
aszlig
623f1940c0
vm/windows: Make list of dependencies explicit.
So far, the VMs have always been using the native architecture, because
it was reimporting <nixpkgs> several times. Now, we propagate a list of
packages down to all sub-imports, which not only makes clearer which
dependencies a part actually has, but also will make it easier in case
we want to refactor those parts to use callPackage.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 05:43:34 +01:00
aszlig
d8e66722a3
vm/windows: Factor out bootstrapping process.
This now isolates the vmTools integration from the bootstrap process and
thus removes our fixed Windows ISO and product key. The latter can now
be provided by an attribute "windowsImage" to runInWindowsVM.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:52:01 +01:00
aszlig
e40f41e505
vm/windows: Collect exit code from xchg.
This is the last item that was missing to get a fully working
runInWindowsVM function. Apart from checking exit codes, we also now
have preVM/postVM hooks which we can use to write arbitrary constructs
around this architecture, without the need to worry about specific
details.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:52:00 +01:00
aszlig
b01c9624cf
vm/windows: Add new runInWindowsVM function.
This function is quite similar to runInLinuxVM, but also ensures that
the builder is run decoupled of the Nix store and using the userland
inside the VM.

We're now picking up the environment variables saved in the previous
commit.

The reason we suppress all errors from the source operation is that it
would emit a ton of errors because we're trying to set read-only
variables.

Also, detecting whether the origBuilder is using the default builder
from the stdenv is currently a bit of a workaround until we have a
specialized pseudo-cross-stdenv someday in the future[TM].

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:52:00 +01:00
aszlig
dd8b0fcf52
vm/windows: Save envirenoment before running VM.
Later, when we start the actual builder, we're going to restore those
environment variables. We're using "(set; declare -p)", here, because
the former is just printing _all_ environment variables, even those not
supported, and the latter only lists specifically declared variables,
which also encludes exports.

The "declare -p" command also emits those variables in a format similar
to the "export" command.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:52:00 +01:00
aszlig
707b7ad1bd
vm/windows: Generate mounts from an attribute set.
This is mainly to make it easier to quickly change mappings, without
making room for errors such as typos.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:59 +01:00
aszlig
5258bbe4c9
vm/windows: Create fstab entries in suspended VM.
Cygwin initializes mounts on _every_ login via SSH and doesn't keep them
consistently like on Unix systems, that's why we need to also add fstab
entries for the bind mounts to the store and xchg shares.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:59 +01:00
aszlig
d16dae8d32
vm/windows: Use &&, not set -e in runAndSuspend.
We now have proper quoting, so we no longer need the workaround using
"set -e".

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:59 +01:00
aszlig
084238c6ec
vm/windows: Fix perms of the Samba shares.
We now map all guest accounts to the root user, because in the end the
permissions of the current user boil down to the build user of the Nix
builder of the host. That way it's not possible to gain more permissions
at all and just makes the VM communication a lot easier.

However, setting "writable" to yes instead of "read only" to no doesn't
change anything here, I just found it to be clearer.

Also, we now no longer need to have a "nobody" user.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:59 +01:00
aszlig
5241bb1d5e
vm/windows: Avoid shadowing the Nix store.
This is done by putting the non-initrd /nix/store into a subdirectory,
which we then chroot to and pass along the SSH command.

Also, we now collect the exit code after the chroot command and power
off the VM thereafter, because the store is no longer shadowed and we
have still access to the busybox inside the initrd.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:58 +01:00
aszlig
a1d7974acd
vm/windows: Remove Samba from installMode.
This should trim down possible dependencies on the base installation and
hereby reduce the need for reinstallation of the damn VM to only changes
that affect the Windows installation and the base Cygwin + OpenSSH
setup.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:58 +01:00
aszlig
fedf13e6cf
vm/windows: Implement and use "xchg" share.
This now finally introduces our xchg share and also uses it for
exchanging state while suspending a VM. However, accessing the _real_
Nix store still isn't possible because we're shadowing the directory in
the initrd.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:58 +01:00
aszlig
0ce1fd07fe
vm/windows: Reintroduce setting up /nix/store.
Now we're doing this at the point where we're saving the VM state.
Unfortunately it's not quite right, because the controller VM is shut
down _before_ we're saving the state, so the share gets disconnected
despite autodisconnect being deactivated during setup.

We can get around this issue by finally introducing the xchg share,
which is the last item to be implemented before we can merge to master.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:57 +01:00
aszlig
aa65a7057f
vm/windows: Properly escape shell command.
Security-wise it's not a big issue because we're still sandboxed, but I
really don't want to write something like \\\\\\\\192.168.0.2\\\\share
in order to set up network shares.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:57 +01:00
aszlig
cfa859d792
vm/windows: Don't init /nix/store on install.
We're going to do this during the suspendedVM phase, so we're able to
more easily change the shares without reinstalling the whole VM.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:57 +01:00
aszlig
3e91192f07
vm/windows: Wait for VDE switch to startup.
This could possibly cause flapping whenever qemu is too fast in starting
up. As we are running with the shell's -e flag, the socat check also
ensures that the VDE switch is properly started and causes the whole
build to fail, should it not start up within 20 seconds.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:56 +01:00
aszlig
c731467e2c
vm/windows: Split install into several stages.
These stages are in particular:

 * Install of the bare Windows VM with Cygwin and shut down.
 * Boot up the same VM again without the installation media and dump the
   VMs memory to state.gz.
 * Resume from state.gz and build whatever we want to build.

Every single stage involves a new "controller", which is more like an
abstraction on the Nix side that constructs the madness described in
276b72fb93.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:51:56 +01:00
aszlig
5105e7f0bf
vm/windows: Update sha256 of Cygwin's setup.ini.
This is kinda stupid to do every little time the file is automatically
regenerated upstream. But let's see how often that happens and whether
it will become a major annoyance or not, and if yes, we might be forced
to include it in our source tree.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:50:55 +01:00
aszlig
9b1862ca1f
vm/windows: Move creating SSH key into install/.
This SSH key is specifically only for accessing the installed Cygwin
within the Windows VM, so we only need to expose the private key. Yes,
you heard right, the private key. It's not security-relevant because the
machine is completely read-only, only exposed to the filesystem and
networking is not available.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:50:54 +01:00
aszlig
4e21215d52
vm/windows: Move the installer into install/.
At least the largest portion of the installer, because in the end we
don't want the installer to *actually* save the state but only prepare
the base image.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:50:54 +01:00
aszlig
276b72fb93
vm: Introduce new Windows VM installer for Cygwin.
After quite a lot of fighting against Windows and its various
limitations, this new is the base architecture for installing and
accessing the Windows VM and thus the Cygwin environment inside it:

                .------------.
          .---> | vde_switch |
          |     `-[#]----[#]-'
          |        |      |
         ,'       .'      `---.___
       ,'    192.168.0.1          `.
       |          |            192.168.0.2
      ,'    _____[#]____           |
    ,'     |            |   ______[#]______
    |      | Windows VM |  |    .--'       |
    |      |____________|  |    |          |
    |             |  /|\   |  .-|          |
    | .---------. |   |    |  | |          |
  .-|-| manager |-'   |    |  | |          |
  | | `---------'     |    |  | |          |
  | |                 |    |  | |          |
  | | .-------------. |    | Samba         |
  | | | BOOTSTRAP   | |    |  | |          |
  | | |-------------| |    |  | |   .------|
  | `-| spawn VMs   |-+--> |  | `---| xchg | <-------.
  |   |-------------|      |  | .---^------|         |
  |   | install     |---.  |  `-| nixstore | <----.  |
  |   |-------------|   |  |    `----------|      |  |
  |---| suspend VM  |   |  |               |      |  |
  |   `------.------'   |  | Controller VM |      |  |
  |          |          |  |_______________|      |  |
  |       .--'          |         /|\            VirtIO
  |       |           __|__________:____________  |  |
  |      \|/         |  |          `.           | |  |
  | .------------.   |  |           :           | |  |
  | | REAL BUILD |   |  |   .-------^--------.  | |  |
  | |------------|   |  `-> | serial console |  | |  |
  `-| revive VM  |   |      `----------------'  | |  |
    |------------|   |------------.             | |  |
    | build      |-->| /nix/store >>>-----------|-'  |
    |------------|   |------------|             |    |
    | collect    |<--| xchg       >>>-----------|----'
    `-----.------'   |------------'             |
          |          |                          |
         \|/         |    |  |  __   ___  |     |
                     |    |--| |  | (__  -|-    |
    F I N I S H E D  |    |  | |__| ___)  |     |
                     |__________________________|

This might look a bit overwhelming, but let me try to explain:

We're starting at the base derivation ("BOOTSTRAP" above), where we
actually install the Cygwin envirenment. Over there we basically fire up
a vde_switch process and two virtual machines: One is the Windows
machine, the other is a NixOS machine, which serves as some kind of
proxy between the host and the Windows machine.

The reason we're doing this, is because we don't have a lot of options
for sharing files between a stock Windows machine and the host. In
earlier experiments, I've tried to communicate with the Windows guest by
using pipes and OpenSSH, but obviously this wasn't a big speed rush (or
to say it bluntly: It was fucking slow).

Using TCP/IP directly for accessing the guest would have been another
option, but it could lead to possible errors when the port or a range of
ports are in use at the Host system. Also, we would need to punch a hole
into the sandbox of the Nix builder (as it doesn't allow networking),
which in turn will possibly undermine deterministic builds/runs (well,
at least as deterministic as it can be, we're running Windows,
remember?).

So, let's continue: The responsibility of the NixOS (controller) VM is
to just wait until an SSH port becomes available on the Windows VM,
whereas the Windows VM itself is installed using an unattended
installation file provided via a virtual floppy image.

With the installation of the basic Windows OS, we directly install
Cygwin and start up an OpenSSH service.

At this point the bootstrapping is almost finished and as soon as the
port is available, the controller VM sets up Samba shares and makes it
available as drive letters within Windows and as bind mounts (for
example /nix/store) within Cygwin.

Finally we're making a snapshot of the memory of the Windows VM in order
to revive it within a few seconds when we want to build something.

Now, the build process itself is fairly straightforward: Revive VM and
build based on existing store derivations and collect the result _and_
the exit code from the xchg share/directory.

Conclusion: This architecture may sound a bit complicated, but we're
trying to achieve deterministic and reproducable builds and/or test
runs.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-26 04:50:53 +01:00
Shea Levy
c11f32acdf scotty: jailbreak
Needed when overriding aeson to the new version, which in turn is needed
if using scotty on a project that also uses lens 4.0.
2014-02-25 11:14:07 -05:00
Shea Levy
9ef06bd387 Add libjenkins haskell package 2014-02-25 11:09:26 -05:00
Shea Levy
1f42fa7cc0 Add hspec-expectations-lens haskell package 2014-02-25 10:49:15 -05:00
Peter Simons
ec09c7d34e haskell-cpphs: update to version 1.18.2 2014-02-25 00:25:28 +01:00
Peter Simons
f49ce8adc7 haskell-threepenny-gui: update to version 0.4.1.0 2014-02-25 00:25:28 +01:00
Peter Simons
38d51bdf3b haskell-multirec: update to version 0.7.4 2014-02-25 00:25:28 +01:00
Peter Simons
e4f4e42896 haskell-multiarg: update to version 0.24.0.4 2014-02-25 00:25:28 +01:00
Peter Simons
7fc5eea0f3 haskell-x509: update to version 1.4.9 2014-02-25 00:25:28 +01:00
Peter Simons
3b3afdce57 haskell-shakespeare-text: update to version 1.0.2 2014-02-25 00:25:28 +01:00
Peter Simons
3912c15aa8 haskell-io-streams: update to version 1.1.4.2 2014-02-25 00:25:28 +01:00
Peter Simons
efcaa15444 haskell-hoogle: update to version 4.2.29 2014-02-25 00:25:28 +01:00
Peter Simons
75a2d1b2f0 haskell-crypto-pubkey-types: update to version 0.4.2.1 2014-02-25 00:25:28 +01:00
Peter Simons
eedfd78218 haskell-asn1-encoding: update to version 0.8.1.3 2014-02-25 00:25:28 +01:00
Peter Simons
c20be9610c haskell-fb: re-generate package with cabal2nix 2014-02-25 00:25:27 +01:00
Peter Simons
bac47e8168 haskell-lens: update to version 4.0.4 2014-02-25 00:25:27 +01:00
viric
0c11d4aa1f Merge pull request #1448 from pSub/dwm-remove-patch
Removed confnotify-6.0.patch.
2014-02-24 22:48:48 +01:00
Peter Simons
2955a48107 python-packages.nix: strip trailing whitespace 2014-02-24 22:04:40 +01:00
Peter Simons
199afbe062 python-logilab-common: update to version 0.61.0 2014-02-24 22:04:40 +01:00
Peter Simons
ddbeda0142 python-logilab-astng: update to version 0.24.3 2014-02-24 22:04:40 +01:00
Peter Simons
02a475bf75 pylint: update from 0.26.0 to 0.28.0 2014-02-24 22:04:40 +01:00
Peter Simons
dfff43fe59 nspr: update from 4.10.2 to 4.10.3 2014-02-24 22:04:40 +01:00
Peter Simons
65aaf865a7 nasm: update from 2.10 to 2.11.01 2014-02-24 22:04:40 +01:00
Peter Simons
684e06c2e6 mtools: update from 4.0.17 to 4.0.18 2014-02-24 22:04:40 +01:00
Peter Simons
20a150a1df memtest86: update from 4.1.0 to 4.3.3 2014-02-24 22:04:40 +01:00
Peter Simons
ce365835d7 links2: update from 2.5 to 2.8 2014-02-24 22:04:40 +01:00
Peter Simons
17f7c664f6 libzip: update from 0.11.1 to 0.11.2 2014-02-24 22:04:40 +01:00
Peter Simons
2dc6bcbc40 libselinux: update from 2.2.1 to 2.2.2 2014-02-24 22:04:40 +01:00
Peter Simons
9a409ee3fd libpcap: update from 1.4.0 to 1.5.3 2014-02-24 22:04:40 +01:00
Peter Simons
77f03b973d libmilter: update from 8.14.4 to 8.14.8 2014-02-24 22:04:40 +01:00
Peter Simons
9f714fbafa iw: update from 3.11 to 3.14 2014-02-24 22:04:40 +01:00
Peter Simons
4d7ee5246c isocodes: update from 3.49 to 3.51 2014-02-24 22:04:40 +01:00
Peter Simons
01aaf816c9 acpid: update from 2.0.20 to 2.0.21 2014-02-24 22:04:40 +01:00
Shea Levy
a0a9430869 Add mariadb 2014-02-24 15:34:57 -05:00
Peter Simons
b05d3e77f1 spamassassin: update from 3.3.2 to 3.4.0 2014-02-24 21:17:55 +01:00
Peter Simons
df4919f070 duplicity: update from 0.6.22 to 0.6.23 2014-02-24 21:17:55 +01:00
Peter Simons
abca8f64f2 lxc: update from 1.0.0.beta4 to 1.0.0 2014-02-24 21:17:55 +01:00
Lluís Batlle i Rossell
9c36f01edd Updating toxic and toxcore to newer code. 2014-02-24 19:18:15 +01:00
Peter Simons
51c9dbc9f3 python-wrapper: add 'ignoreCollisions' parameter (which default to 'false') 2014-02-24 12:41:12 +01:00
Rob Vermaas
aa23a99436 Add stackdriver-statsd-backend/statsd-librato-backend node packages and update existing node packages. 2014-02-24 12:02:21 +01:00
Song Wenwu
3db6fc36f6 gradle: update to 1.11 2014-02-24 17:30:40 +08:00
Peter Simons
0b290b03e2 Merge pull request #1805 from bennofs/new-ghc-events-analyze
New expression: ghc-events-analyze
2014-02-24 09:59:29 +01:00
Peter Simons
0f0e0da667 Merge pull request #1809 from ocharles/haskellPackages.fb
haskellPackages.fb: New expression
2014-02-24 09:58:06 +01:00
cillianderoiste
99590f3362 Merge pull request #1810 from orbitz/update-to-opam-1.1.1
Add opam 1.1.1
2014-02-24 09:39:47 +01:00
Austin Seipp
60728bc46c ktap: add v0.5-dev from git
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-23 22:29:56 -06:00
Austin Seipp
55ac3b0a93 spark: version 0.9.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-23 22:29:08 -06:00
AndersonTorres
ad6bdfaf56 Deleting the "runme" stuff - it is not needed at all,
and the run method is fully documented
2014-02-24 00:12:00 -03:00
AndersonTorres
2c09d55904 Merge remote-tracking branch 'upstream/master' 2014-02-24 00:07:02 -03:00
AndersonTorres
4670b503b1 New package: 8086tiny, a tiny 8086 emulator 2014-02-24 00:01:43 -03:00
Cillian de Róiste
f6aba32af3 ardour3: update 3.5.308 -> 3.5.357 2014-02-23 19:14:27 +01:00
Domen Kožar
a131bf9be7 i3minator: 0.0.3 -> 0.0.4 2014-02-23 16:57:44 +01:00
Cillian de Róiste
169b452e0c aqbanking, gwenhywfar: add license info 2014-02-23 12:44:18 +01:00
Cillian de Róiste
9f08c21c2b gnucash: enable aqbanking support for online banking
This requires recent versions of aqbanking and gwenhywfar:
https://devel.aqbanking.de/trac/aqbanking/ticket/197

It seems as if the developers have changed their version numbering
scheme in 2012 and have only released versions with the "beta" suffix
since then.
2014-02-23 12:21:32 +01:00
Oliver Charles
3f95f39bab postgresql: Build all versions on Hydra (Linux)
Additionally, add @ocharles to the list of maintainers.

I am only building these on Linux environments in Hydra for now, as
that's the only environment I can be a maintainer for.
2014-02-23 11:25:18 +01:00
Austin Seipp
7f4b97d495 grsecurity: stable/testing updates
- stable:  3.0-3.2.55-201402201903 -> 3.0-3.2.55-201402221305
 - testing: 3.0-3.13.4-201402201908 -> 3.0-3.13.4-201402221308

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-22 20:29:25 +01:00
Ricardo M. Correia
6554a490f6 gradm, pax-utils, paxctl: Add myself as a maintainer 2014-02-22 20:17:00 +01:00
Ricardo M. Correia
4ee12df331 pax-utils: Fix URL 2014-02-22 19:25:33 +01:00
Ricardo M. Correia
bf02ae28d6 gradm: Fix URL 2014-02-22 19:25:33 +01:00
Ricardo M. Correia
1b60ee5f67 paxctl: Fix URL 2014-02-22 19:17:53 +01:00
Malcolm Matalka
83c5d12d4c Add opam 1.1.1 2014-02-22 19:08:54 +01:00
Sergey Mironov
5b223d457e zathura: set default window-icon 2014-02-22 18:38:06 +01:00
Vladimír Čunát
88d490588d xorg: add some modules
I was testing whether 10.1 mesa might solve the LLVM RTTI problems,
and it seems mesa will need these (and the problems aren't solved).
2014-02-22 18:37:05 +01:00
Domen Kožar
72d3ce1431 pythonPackages.eggdeps: disable tests, they've been failing for ages and author is not responding 2014-02-22 18:29:16 +01:00
Vladimír Čunát
c895bb910d xfce4-power-manager: update patch hash (no idea what's changed) 2014-02-22 18:20:44 +01:00
Matej Cotman
0df7152c8f twmn: add twmn to all-packages.nix 2014-02-22 18:17:19 +01:00
Matej Cotman
9f06f92fd2 remove a dot; add matejc as maintainer 2014-02-22 18:17:19 +01:00
Matej Cotman
72fb60117e twmn: new package 2014-02-22 18:17:19 +01:00
Ricardo Correia
39fbd8f4fb Merge pull request #1771 from thoughtpolice/grsec-tools
grsecurity: add gradm, paxctl, and pax-utils (take #2)
2014-02-22 18:14:57 +01:00
Oliver Charles
a188cfd37d postgresql: Update to latest releases 2014-02-22 18:13:28 +01:00
Matej Cotman
e07c7d233b add matejc as maintainer 2014-02-22 18:11:18 +01:00
Matej Cotman
e310dd1774 searx: new package 2014-02-22 18:11:18 +01:00
Oliver Charles
c541462cb4 haskellPackages.fb: New expression 2014-02-22 17:10:28 +00:00
Vladimír Čunát
5a8a3195a0 xorg.xcb-util-wm: minor update 0.4.0 -> .1 2014-02-22 17:40:01 +01:00
Vladimír Čunát
0f4942ecbc gnome3.libgee: downgrade to latest stable, add meta
Tests started to fail, and stable is preferred anyway.
Cf. #1770 discussion.
2014-02-22 17:13:40 +01:00
Vladimír Čunát
fb1028813c subversion: minor bump to fix CVE-2014-0032 2014-02-22 17:04:34 +01:00
Linquize
afaee01ed3 pycairo: Update to 1.10.0 and support both python 2 and python 3
Close #1802.
2014-02-22 16:59:24 +01:00
Vladimír Čunát
351f704091 Merge x-updates into master
There's a major dbus bump (1.6 -> 1.8), and various minor fixes and updates.
2014-02-22 11:28:51 +01:00
Vladimír Čunát
a35d4a9d4e unstable job: don't depend on glib-tested yet (fails) 2014-02-22 10:38:13 +01:00
Peter Simons
6522d4254f haskell-primitive: update to version 0.5.2.1 2014-02-22 09:19:19 +01:00
Peter Simons
aa654a5857 haskell-mono-traversable: update to version 0.3.0.2 2014-02-22 09:19:19 +01:00
Peter Simons
2d8aa999c3 haskell-http-conduit: update to version 2.0.0.7 2014-02-22 09:19:18 +01:00
Peter Simons
d55f488a61 haskell-haskell-packages: update to version 0.2.3.4 2014-02-22 09:19:18 +01:00
Peter Simons
36bc104279 haskell-haskell-names: update to version 0.3.2.5 2014-02-22 09:19:18 +01:00
Peter Simons
f7ad96cbb5 haskell-hamlet: update to version 1.1.9 2014-02-22 09:19:18 +01:00
Peter Simons
b4cc157cb5 haskell-dns: update to version 1.2.0 2014-02-22 09:19:18 +01:00
Peter Simons
ca3491f514 haskell-classy-prelude: update to version 0.8.0.1 2014-02-22 09:19:18 +01:00
Peter Simons
358f4de889 haskell-amqp: update to version 0.8.1 2014-02-22 09:19:18 +01:00
Peter Simons
1cfc55518b haskell-HList: update to version 0.3.4.0 2014-02-22 09:19:18 +01:00
Peter Simons
007611cf4b haskell-git-annex: update to version 5.20140221 2014-02-22 09:19:18 +01:00
Peter Simons
864db9c088 haskell-HTTP: update to version 4000.2.11 2014-02-22 09:19:18 +01:00
Benno Fünfstück
9ad8ce91a3 New expression: ghc-events-analyze 2014-02-22 00:55:26 +01:00
Domen Kožar
269955a521 pythonPackages.psycopg2: 2.5.1 -> 2.5.2 2014-02-21 23:46:56 +01:00
Peter Simons
2e079fd608 haskell-aeson-0.7.x: enable test suite 2014-02-21 23:29:33 +01:00
Peter Simons
5306d974ce haskell-aeson-0.7.x: fix build with older versions of ByteString
Closes <https://github.com/bos/aeson/issues/185>.
Closes <https://github.com/ekmett/lens/issues/397>.
2014-02-21 23:29:33 +01:00
Domen Kožar
40b8b3206e fix remaining broken python packages due to refactoring 2014-02-21 23:27:06 +01:00
Ricardo M. Correia
92794f775a firefox: Fix hash 2014-02-21 21:23:56 +01:00
Ricardo M. Correia
2a462ff6ae firefox: Update from 27.0 -> 27.0.1 2014-02-21 21:07:59 +01:00
Austin Seipp
4631a65c43 grsecurity: add pax-utils-0.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:56 -06:00
Austin Seipp
c2e4ccd4ad grsecurity: add paxctl-0.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:53 -06:00
Austin Seipp
f1459cd4b0 grsecurity: add gradm-3.0-201401291757
This also ensures the appropriate udev rules are installed.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:14:11 -06:00
Ricardo M. Correia
2391129307 chromium: Update stable and beta channels
stable: 33.0.1750.115 -> 33.0.1750.117
beta:   33.0.1750.115 -> 33.0.1750.117
2014-02-21 19:35:18 +01:00
Ricardo Correia
308015e213 Merge pull request #1801 from thoughtpolice/kernel-grsec
kernel: stable updates, grsecurity patch updates
2014-02-21 19:23:49 +01:00
Ricardo M. Correia
96c481b8a0 flashplayer: Update from 11.2.202.336 -> 11.2.202.341 2014-02-21 19:19:01 +01:00
Domen Kožar
e65eb02a35 fix eval 2014-02-21 18:38:02 +01:00
Domen Kožar
368839c703 Merge pull request #1467 from iElectric/buildPythonPackage-refactor
buildPythonPackage refactoring
2014-02-21 18:33:48 +01:00
Domen Kožar
f1db57f1fe buildPythonPackage: fix more borken packages 2014-02-21 18:29:57 +01:00
Sander van der Burg
fc4e653167 titaniumsdk: Fix issue with APK with spaces in them 2014-02-21 16:20:27 +01:00
Domen Kožar
68a5b5e5fb add xarchiver: GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only) 2014-02-21 13:19:25 +01:00
Domen Kožar
0ca4f087b3 Merge pull request #1797 from lethalman/empathy
new empathy, folks and clutter-gst packages, with related lib changes
2014-02-21 12:56:51 +01:00
Luca Bruno
3991f590f4 empathy: new package
Messaging program which supports text, voice, video chat,
and file transfers over many different protocols

https://wiki.gnome.org/Apps/Empathy
2014-02-21 11:47:19 +01:00
Luca Bruno
d50909f56b folks: new package 2014-02-21 11:47:19 +01:00
Luca Bruno
dfa357c3e4 yelp: save loaders.cache in yelp-specific directory 2014-02-21 09:52:32 +01:00
Luca Bruno
aa29235621 clutter-gtk: update to 1.4.4 2014-02-21 09:52:32 +01:00
Luca Bruno
9f21874781 telepathy-logger: install gschemas in share/telepathy-logger 2014-02-21 09:52:32 +01:00
Luca Bruno
226be5a247 evolution-data-server: install gschemas in share/evolution-data-server 2014-02-21 09:52:32 +01:00
Luca Bruno
4232f21de3 evolution-data-server: Generate vala bindings 2014-02-21 09:52:31 +01:00
Luca Bruno
668a0bbfc7 telepathy-glib: Generate vala bindings 2014-02-21 09:52:31 +01:00
Luca Bruno
9f5beec66f clutter-gst: new package 2014-02-21 09:52:31 +01:00
Luca Bruno
b1a2c840a7 cogl: Compile with gstreamer 2014-02-21 09:52:31 +01:00
Austin Seipp
18f65f3640 grsecurity: stable/testing updates
- stable:  3.0-3.2.55-201402192249 -> 3.0-3.2.55-201402201903
  - testing: 3.0-3.13.3-201402192252 -> 3.0-3.13.4-201402201908

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 20:21:16 -06:00
Austin Seipp
a1dc5ea707 kernel: stable updates
- 3.13 stable:   3.13.3  -> 3.13.4
 - 3.12 stable:   3.12.11 -> 3.12.12
 - 3.10 longterm: 3.10.30 -> 3.10.31
 - 3.4  longterm: 3.4.80  -> 3.4.81

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 20:21:11 -06:00
Cillian de Róiste
864c75b7fd guitarix: update from 0.25.2 to 0.28.3
Add new required inputs: lv2 and avahi, tidy up
2014-02-21 00:19:25 +01:00
Domen Kožar
cc2b86d133 google_talk_plugin: 4.2.1.0 -> 5.1.4.0 2014-02-21 00:10:40 +01:00
Cillian de Róiste
c5e1cc5f37 Minor whitespace cleanup 2014-02-20 23:12:54 +01:00
cillianderoiste
f47d6a1314 Merge pull request #1792 from larkery/davmail-and-lxappearance
Add lxappearance and davmail
2014-02-20 23:08:04 +01:00
Vladimír Čunát
2cf1f0b229 Revert "pango: major update 1.32.5 -> 1.36.1"
This reverts commit 9c4d656102 (modified).

We can't have newer pango with fontconfig-2.10.*
2014-02-20 21:35:42 +01:00
William A. Kennington III
8534fdf3fe dbus: Update from 1.6.12 -> 1.8.0 2014-02-20 21:05:01 +01:00
Vladimír Čunát
ae5d8f6768 Merge master into x-updates 2014-02-20 20:55:31 +01:00
Vladimír Čunát
e40a059714 Revert "fontconfig: update 2.10.2 -> 2.11.0"
This reverts commit 32a4081a7f.

After ec985c8ff the apps linked to 2.11 fontconfig run fine on nixos
with older /etc/fonts/, but the other way won't work.

Unfortunately, I see no easy work-around ATM.
2014-02-20 20:52:27 +01:00
Ricardo M. Correia
3c871ccbc9 chromium: Update all channels
stable: 32.0.1700.107 -> 33.0.1750.115
beta:   33.0.1750.46  -> 33.0.1750.115
dev:    34.0.1809.0   -> 34.0.1847.3
2014-02-20 14:32:09 +01:00
Sander van der Burg
f5a9e5188d titaniumsdk: remove some obsolete debugging stuff 2014-02-20 14:19:32 +01:00
Ricardo Correia
1c645521bd Merge pull request #1796 from thoughtpolice/grsec
grsecurity: stable/testing updates
2014-02-20 14:18:29 +01:00
Ricardo M. Correia
2537b7c679 vim: add config option to generate vimrc 2014-02-20 14:08:42 +01:00
Rob Vermaas
cf00cd5e36 Add support for printing qr code for google-authenticator. 2014-02-20 12:30:49 +01:00
Lluís Batlle i Rossell
94591762fe Updating rdesktop to 1.8.1. 2014-02-20 12:28:30 +01:00
Peter Simons
676f44eb04 Merge pull request #1790 from thoughtpolice/checksec
checksec: version 1.5
2014-02-20 12:03:24 +01:00
Austin Seipp
58e08a1a4f grsecurity: stable/testing updates
- stable:  3.0-3.2.55-201402152203 -> 3.0-3.2.55-201402192249
  - testing: 3.0-3.13.3-201402152204 -> 3.0-3.13.3-201402192252

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 04:53:19 -06:00
Austin Seipp
7411fabd3e checksec: version 1.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 04:26:17 -06:00
Tom Hinton
f6ba040bdc Add me to maintainers list
Add a derivation for davmail
Add a derivation for lxappearance
Add both new derivations to all-packages
2014-02-20 09:49:50 +00:00
Shea Levy
21d1e7deb1 libev: bump 2014-02-19 20:03:30 -05:00
Domen Kožar
567e67f05f bash doesn't allow comments between multiline statements 2014-02-20 01:19:16 +01:00
Domen Kožar
c72d59881f remove unneeded pytest test skip 2014-02-20 01:19:16 +01:00
Domen Kožar
fa98edf2b1 fix eval 2014-02-20 01:19:16 +01:00
Domen Kožar
dfa8ac64ad miro: keep quotes 2014-02-20 01:19:16 +01:00
Domen Kožar
b1ffb9ede4 buildPythonPackage: Add --old-and-unmanageable flag to install command and add more docs.
For explanation see inline comments.
2014-02-20 01:19:16 +01:00
Domen Kožar
c80feaf542 document setuptools monkeypatching and DETERMINISTIC_BUILD=1 2014-02-20 01:19:16 +01:00
Domen Kožar
21ada5b105 garden 2014-02-20 01:19:16 +01:00
Domen Kožar
ab6865c3a4 distutils.cfg: name as others coding conventions for python packages 2014-02-20 01:19:15 +01:00
Domen Kožar
7cdab2c024 pythonPackages.setuptools: 2.0.2 -> 2.1 2014-02-20 01:19:15 +01:00
Domen Kožar
fae6079a01 adopt rest of the packages that were failing with the buildPythonPackage changes 2014-02-20 01:19:15 +01:00
Domen Kožar
6adfd13dd4 adopt setuptools to new python infrastructure (also make sure we unzip setuptools while building) 2014-02-20 01:19:15 +01:00
Domen Kožar
bf5d6fb9b1 Refactor buildPythonPackage to modularize building process.
Before we used `easy_install` command to handle installation
in one shot, now this is split into two phases:

 - buildPhase: python setup.py build
 - installPhase: python setup.py install

Each of those commands have the ability to pass extra
parameters through buildPythonPackage parameters as
`setupPyInstallFlags` and `setupPyBuildFlags`.

Phases now correctly execute post/pre hooks.

In configurePhase we inject setuptools dependency before distutils
is imported to apply monkeypatching by setuptools that is needed
for special features to apply.

We don't have to reorder default phases anymore, as test
phase comes after build and that works.

I rewrote offineDistutils into distutils-cfg with a bit cleaner
syntax and ability to specify extraCfg to the config file.

Plone packages are failing and garbas said he will adopt them to
the new functions. The rest of the packages I fixed and these commits
shouldn't break any package (according to my testings) and they introduce
16 new jobs and fix 38 that were broken before.
2014-02-20 01:19:15 +01:00
Domen Kožar
e9923c6499 pythonPackages: update a bunch of them 2014-02-20 01:19:15 +01:00
Domen Kožar
29b7f2e182 setuptools: remove obsolete patch 2014-02-20 01:19:15 +01:00
Domen Kožar
6cbc1d554f remove unused setuptools/site.nix 2014-02-20 01:19:14 +01:00
Domen Kožar
a0ff8f687f python3.3: 3.3.3 -> 3.3.4 2014-02-20 00:44:51 +01:00
Domen Kožar
31949ead32 python2.7: 2.7.5 -> 2.7.6 2014-02-20 00:44:27 +01:00
Domen Kožar
67cc87a35a python2.6: 2.6.8 -> 2.6.9 2014-02-20 00:44:08 +01:00
Domen Kozar
342ed631a4 speedtest_cli: update from 0.2.4 to 0.2.5 2014-02-20 00:23:05 +01:00
Austin Seipp
0441bb1b7a virtualbox: 4.2.18 -> 4.2.22
This is needed to compile the Virtual Box guest additions with the 3.13
kernel (and thus the grsecurity testing kernel).

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-19 23:58:53 +01:00
Cillian de Róiste
77041cbf45 linuxsampler: fix the build by using bison2 2014-02-19 23:50:24 +01:00
Cillian de Róiste
30fb0365df openimageio: update from 1.1.12 to 1.3.12 2014-02-19 22:49:21 +01:00
Cillian de Róiste
f2b59904e5 opencolorio: update from 1.0.8 to 1.0.9 2014-02-19 22:49:07 +01:00
Austin Seipp
e43130d379 reptyr: version 0.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-19 15:05:36 -06:00
Cillian de Róiste
927ed152f4 minixml: upgrade from 2.6 to 2.8
Tested with yoshimi and zynaddsubfx
2014-02-19 21:58:43 +01:00
Sergey Mironov
2142d7542b zathura: version bump (0.2.6 -> 0.2.7) (close #1782) 2014-02-19 20:51:50 +01:00
Sergey Mironov
a629aaee72 viewnior: version bump (1.4) (close #1781) 2014-02-19 20:44:30 +01:00
Vladimír Čunát
048a85f952 gnutls: add platforms for the default version 2014-02-19 20:42:51 +01:00
Badi' Abdul-Wahid
68f9e60435 gnutls: fix linking on Darwin (close #1779) 2014-02-19 20:40:04 +01:00
Cillian de Róiste
845f30aa6a sonic-visualiser: upgrade from 1.9 to 2.3
remove obsolete patch, add new inputs
2014-02-19 20:14:15 +01:00
Cillian de Róiste
058ed07fb8 vamp-sdk: update from 2.2.1 to 2.5
Tested with mixxx, qtractor, rubberband and sonic-visualiser
2014-02-19 20:14:15 +01:00
Tom Hinton
208d4241ff - Add openobex's unusual pkgconfig to pkgconfig path
- Prepend dbus_libs pkgconfig to pkgconfig path, as otherwise the dbus-daemon pkgconfig wins,
  as it has the same name (dbus-1.pc), which doesn't provide all the dbus headers that are needed
- Apply the included patch to obex-data-server which lets it build against current openobex
2014-02-19 18:11:54 +00:00
Jaka Hudoklin
5caaa5e0ba pythonPackages: fix and upate graphite, carbon and whisper
Twisted needed downgrade for carbon to start
2014-02-19 16:42:12 +01:00
Domen Kožar
189273af38 add gnome3.vino 2014-02-19 16:38:41 +01:00
Peter Simons
2a1f4c82b2 haskell-cabal2nix: update to version 1.60 2014-02-19 16:07:35 +01:00
Peter Simons
731e3c186e haskell-skein: update to version 1.0.9 2014-02-19 16:07:35 +01:00
Peter Simons
baffeb2b66 haskell-shakespeare-css: update to version 1.0.7.1 2014-02-19 16:07:35 +01:00
Peter Simons
9f7aa5e224 haskell-shake: update to version 0.11.2 2014-02-19 16:07:35 +01:00
Peter Simons
fe92d6bbed haskell-multiarg: update to version 0.24.0.2 2014-02-19 16:07:35 +01:00
Peter Simons
8a81d2c200 haskell-http-conduit: update to version 2.0.0.6 2014-02-19 16:07:35 +01:00
Peter Simons
65972a5724 haskell-css-text: update to version 0.1.2.0.1 2014-02-19 16:07:34 +01:00
Peter Simons
0c008eb857 haskell-bert: update to version 1.2.2.1 2014-02-19 16:07:34 +01:00
Peter Simons
40debd63ca nc-indicators: re-generate with cabal2nix 2014-02-19 16:07:34 +01:00
Domen Kožar
66a353c9b9 Merge pull request #1786 from lethalman/icons
gnome-icon-theme-symbolic and yelp update
2014-02-19 15:19:56 +01:00
Evgeny Egorochkin
a52f17e4e1 youtubeDL: update from 2014.02.17 to 2014.02.19.1 2014-02-19 15:56:13 +02:00
Luca Bruno
df2661953e yelp: Show icons in the application 2014-02-19 14:29:07 +01:00
Luca Bruno
6aef8266f0 gnome-icon-theme-symbolic: new package 2014-02-19 14:25:27 +01:00
Eelco Dolstra
83ca2c272a fetchurl: Ensure that ‘urls’ is a list 2014-02-19 13:58:42 +01:00
Eelco Dolstra
7a51e17775 Fix updating of the tarball mirror 2014-02-19 13:58:42 +01:00
Domen Kožar
aea043aec0 Revert "upgrade video-intel stack to 2.99.906"
This reverts commit 89f710f18e.

Reported by others for xorg-server to crash on different kernel
versions.
2014-02-19 12:37:49 +01:00
Cillian de Róiste
2f08652cce rubberband: update from 1.7.0 to 1.8.1
Tidy up, and add myself to the maintainers. Tested that qtractor and
sonic_visualiser compile and run with this version of rubberband.
2014-02-19 00:15:20 +01:00
Cillian de Róiste
6af0b814f5 kde_wacomtablet: upgrade from 1.3.5 to 2.0 2014-02-18 23:45:36 +01:00
Cillian de Róiste
8c83ae965f blender: upgrade from 2.67 to 2.69 and add myself as maintainter 2014-02-18 22:11:39 +01:00
Cillian de Róiste
b532c03fbe ardour3: update from 3.0 to 3.5.308 2014-02-18 21:28:28 +01:00
Cillian de Róiste
78f961e217 aubio: Fix the build, tidy up and add myself as a maintainer 2014-02-18 21:28:16 +01:00
Cillian de Róiste
134e65b150 aubio: update from 0.3.2 to 0.4.0 2014-02-18 21:28:07 +01:00
Ricardo M. Correia
2539acf351 manpages: Update from 3.54 -> 3.60. 2014-02-18 20:23:59 +00:00
Vladimír Čunát
dcf6cbf5b3 glib: add -tested variant, also to the unstable job
Replaces #1753.
2014-02-18 20:27:23 +01:00
Peter Simons
029967dca6 haskell-cpphs: update to version 1.18.1 2014-02-18 19:56:13 +01:00
Peter Simons
e68b54eda8 haskell-warp: update to version 2.0.3.2 2014-02-18 19:56:13 +01:00
Peter Simons
cba685279d haskell-shakespeare: update to version 1.2.1.1 2014-02-18 19:56:13 +01:00
Peter Simons
9dce1a82e8 haskell-shakespeare-js: update to version 1.2.0.4 2014-02-18 19:56:13 +01:00
Peter Simons
dd49144d44 haskell-shakespeare-css: update to version 1.0.7 2014-02-18 19:56:13 +01:00
Peter Simons
c13ececdc5 haskell-iteratee: update to version 0.8.9.5 2014-02-18 19:56:13 +01:00
Peter Simons
eab179c39f haskell-hamlet: update to version 1.1.8 2014-02-18 19:56:13 +01:00
Peter Simons
623627f097 haskell-charset: update to version 0.3.7 2014-02-18 19:56:13 +01:00
Eelco Dolstra
a8ded9d5d3 fetchgit: Require a content hash
Without this, the result will not be a fixed-output derivation and
won't work in general.
2014-02-18 19:13:07 +01:00
Eelco Dolstra
3c7aa5aa8f cjdns: Don't include "-git" in the package name 2014-02-18 19:13:07 +01:00
Peter Simons
d62001d049 Merge pull request #1768 from klao/nc-indicators
Add nc-indicators-0.1 Haskell package
2014-02-18 18:23:37 +01:00
Sander van der Burg
44a9ebac47 axis2: bump to version 1.6.2 2014-02-18 18:07:24 +01:00
David Guibert
c3126080fd vaapi-vdpau: apply a patch to delete dropped types from VA API
Close #1766.
2014-02-18 17:17:24 +01:00
Sander van der Burg
70798243a2 titaniumsdk: Add 3.2 SDK option 2014-02-18 16:34:34 +01:00
Dario Bertini
4247a34463
Updated vagrant to 1.4.3 2014-02-18 15:23:16 +01:00
Domen Kožar
e2bc091213 Merge pull request #1777 from lethalman/gitglib
libgit2-glib: Fix build after gnome3.gnome_common changes
2014-02-18 14:36:30 +01:00
Luca Bruno
5181cbd7c6 libgit2-glib: Fix build after gnome3.gnome_common changes 2014-02-18 13:23:32 +01:00
Mathijs Kwik
68d8f67c04 e17/terminology: upgrade to 0.4.0 2014-02-18 09:44:50 +01:00
Domen Kožar
810eff6087 Merge pull request #1769 from lethalman/epiphany
Epiphany: new package
2014-02-18 09:10:30 +01:00
Domen Kožar
0d56579b81 Merge pull request #1770 from lethalman/libgee
libgee: Update to 0.13.90 and enable checks
2014-02-18 09:10:06 +01:00
Evgeny Egorochkin
64ddd86714 perlPackages.ExceptionClass: update from 1.30 to 1.37 2014-02-18 04:22:27 +02:00
Evgeny Egorochkin
f10280fc19 youtubeDL: update from 2014.02.13 to 2014.02.17 2014-02-18 04:14:05 +02:00
Evgeny Egorochkin
c67f562d5e add branch info 2014-02-18 04:13:45 +02:00
Evgeny Egorochkin
952fa02b90 KDE 4.12: add branch meta 2014-02-18 03:18:02 +02:00
Evgeny Egorochkin
586188fa7d KDE 4.11: add branch meta 2014-02-18 03:10:25 +02:00
Evgeny Egorochkin
5174a69400 KDE 4.10: add branch info 2014-02-18 02:59:13 +02:00
Moritz Ulrich
53b6744646 teensy-loader: New package
Firmware uploader for the teensy microcontroller board family.
2014-02-18 01:02:47 +01:00
Luca Bruno
8b4003c102 libgee: Update to 0.13.90 and enable checks 2014-02-18 00:38:18 +01:00
Luca Bruno
92f9949e09 epiphany: new package
WebKit based web browser for GNOME

https://wiki.gnome.org/Apps/Epiphany
2014-02-18 00:13:14 +01:00
Luca Bruno
e1801a83f0 gnome-common: Propagate autoconf and automake build inputs 2014-02-18 00:09:53 +01:00
Mihaly Barasz
668e81ad5a Add nc-indicators-0.1 Haskell package 2014-02-17 23:06:26 +01:00
Bjørn Forsman
493adc9227 Rename 'gnome-terminator' to 'terminator'
Align the package name with what other distros call it.

Other distros: Fedora, Debian, Archlinux, OpenSUSE, Mageia, Slackware
(and probably more).
2014-02-17 20:56:03 +01:00
Bjørn Forsman
0fa9dca362 gnome-terminator: add missing dependencies (for extra features)
Add 'keybinder' and 'python-notify' as dependencies. Fixes this:

  $ terminator
  [...]
  Warning: python-keybinder is not installed. This means the hide_window shortcut will be unavailable
  [...]
  ActivityWatch plugin unavailable: please install python-notify
2014-02-17 20:53:55 +01:00
Bjørn Forsman
1d1667b7b0 keybinder: new package
keybinder is a library for registering global keyboard shortcuts.
keybinder works with GTK-based applications using the X Window System.

https://github.com/engla/keybinder/
2014-02-17 20:50:22 +01:00
Ricardo Correia
09b2365806 Merge pull request #1764 from thoughtpolice/grsec
linux-3.2 & grsecurity updates
2014-02-17 18:32:08 +01:00
Peter Simons
ba9cc84ad0 gnulib: update to version 0.1-83-g8008cac 2014-02-17 17:11:58 +01:00
Peter Simons
2668493a14 haskell-websockets: update to version 0.8.2.0 2014-02-17 16:41:10 +01:00
Peter Simons
be4b35eb15 haskell-timezone-olson: update to version 0.1.3 2014-02-17 16:41:10 +01:00
Peter Simons
9e15812d40 haskell-quickcheck-instances: update to version 0.3.7 2014-02-17 16:41:10 +01:00
Peter Simons
641e37519b haskell-pipes-attoparsec: update to version 0.4.0.1 2014-02-17 16:41:10 +01:00
Peter Simons
95b1e11618 haskell-network-protocol-xmpp: update to version 0.4.6 2014-02-17 16:41:10 +01:00
Peter Simons
641891a7c4 haskell-network-conduit: update to version 1.0.2.2 2014-02-17 16:41:10 +01:00
Peter Simons
669c336164 haskell-mono-traversable: update to version 0.3.0.1 2014-02-17 16:41:10 +01:00
Peter Simons
2a25467ece haskell-libxml-sax: update to version 0.7.5 2014-02-17 16:41:10 +01:00
Peter Simons
f5fb0e043d haskell-language-javascript: update to version 0.5.9 2014-02-17 16:41:09 +01:00
Peter Simons
1683378b3a haskell-irc: update to version 0.6.0.0 2014-02-17 16:41:09 +01:00
Peter Simons
87ddf3963a haskell-hit: update to version 0.5.5 2014-02-17 16:41:09 +01:00
Peter Simons
663e179856 haskell-dns: update to version 1.1.1 2014-02-17 16:41:08 +01:00
Peter Simons
b5ec3460b2 haskell-dbus: update to version 0.10.6 2014-02-17 16:41:08 +01:00
Peter Simons
58b51c95bd haskell-conduit: update to version 1.0.15 2014-02-17 16:41:08 +01:00
Peter Simons
c6855fc5a9 haskell-classy-prelude: update to version 0.8.0 2014-02-17 16:41:08 +01:00
Peter Simons
4379ea1929 haskell-classy-prelude-conduit: update to version 0.8.0 2014-02-17 16:41:08 +01:00
Peter Simons
e1993d4c92 haskell-JuicyPixels: update to version 3.1.3.3 2014-02-17 16:41:08 +01:00
Peter Simons
6e28b6ebb8 haskell-text-stream-decode: add version 0.1.0.3 2014-02-17 16:41:08 +01:00
Peter Simons
aaa4d951dd haskell-enclosed-exceptions: add version 1.0.0.1 2014-02-17 16:41:08 +01:00
Peter Simons
ba53ddcbb5 haskell-conduit-combinators: add version 0.1.0.0 2014-02-17 16:41:07 +01:00
Peter Simons
f3a3119bd0 haskell-chunked-data: add version 0.1.0.0 2014-02-17 16:41:07 +01:00
Austin Seipp
c137015328 grsecurity updates.
- stable:  3.0-3.2.54-201402062221 -> 3.0-3.2.55-201402152203
  - testing: 3.0-3.13.3-201402132113 -> 3.0-3.13.3-201402152204

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-17 07:27:51 -06:00
Austin Seipp
8e349e721c linux: 3.2.54 -> 3.2.55
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-17 07:27:51 -06:00
Luca Bruno
9d34103a57 gucharmap: new package
GNOME Character Map, based on the Unicode Character Database

https://wiki.gnome.org/Apps/Gucharmap
2014-02-17 12:51:30 +01:00
Luca Bruno
d8dd998ff0 gnome3: Add missing yelp_tools in gnome-3/default.nix 2014-02-17 12:51:30 +01:00
Domen Kožar
72cf0e2280 gnome3.yelp-tools: add 2014-02-17 12:32:59 +01:00
Domen Kožar
9fb2897677 Merge pull request #1761 from iyzsong/gstreamer
update gstreamer to 1.2.3
2014-02-17 09:10:27 +01:00
Mathijs Kwik
2eedf210d3 celestia: fix install location 2014-02-17 06:49:05 +01:00
Nixpkgs Monitor
aab0ccaa93 gst-libav: update from 1.2.2 to 1.2.3 2014-02-17 10:40:51 +08:00
Nixpkgs Monitor
7814a08a1e gst-plugins-ugly: update from 1.2.2 to 1.2.3 2014-02-17 10:40:47 +08:00
Nixpkgs Monitor
a96f3e2e8d gst-plugins-bad: update from 1.2.2 to 1.2.3 2014-02-17 10:40:43 +08:00