Commit Graph

12522 Commits

Author SHA1 Message Date
Eelco Dolstra 535de5e45a Add nifskope 2014-05-07 00:08:40 +02:00
Maxim Ivanov e2e77950f3 Scatter output hook
This hook allows to scatter files in $out to multiple outputs.
For "bin" and "doc" outputs there are prefefined default masks, but
they can be overriden by setting files_<outname>, for example:

files_bin = [ "/bin/*" "/lib/libexec/" ];

To make an effect hook must be specified in buildInputs.
2014-05-06 22:47:45 +01:00
Shea Levy 0d0f7d2681 Merge branch 'buildLocalCabal-drvArgs' of git://github.com/proger/nixpkgs
buildLocalCabal: allow drvArgs in buildLocalCabalWithArgs
2014-05-06 09:27:40 -04:00
Peter Simons 81a05aabbe haskell-packages.nix: update (unused) reference to cabal-install 2014-05-06 10:59:23 +02:00
Vladimir Kirillov 7eff825487 buildLocalCabal: allow cabalDrvArgs in buildLocalCabalWithArgs
allows to write neat expressions like (as we're still generating an
expression string):

```
{
  build = haskellPackages.buildLocalCabalWithArgs {
    inherit src name;
    cabalDrvArgs = {
      jailbreak = false;
      doCheck = false;
    };
  };
}
```

without resorting to weird kung-fu like darcs does:

```
darcs = haskellPackages.darcs.override {
  # A variant of the Darcs derivation that containts only the
  # executable and
  # thus has no dependencies on other Haskell packages.
  cabal = { mkDerivation = x: rec { final = haskellPackages.cabal.mkDerivation (self: (x final) // {
            isLibrary = false;
            configureFlags = "-f-library"; }); }.final;
          };
};
```

While here, move the `jailbreak = true;` as the default `cabalDrvArgs`
option.
2014-05-06 11:00:48 +03:00
Ricky Elrod df0014488a First attempt at data/fonts/poly 2014-05-06 03:48:04 -04:00
John Wiegley 7848f96b58 Add an expression for the Haskell library djinn 2014-05-05 19:48:50 -05:00
Cillian de Róiste 7c2c5987d1 Add setBfree a DSP tonewheel organ emulator 2014-05-05 22:57:48 +02:00
Peter Simons f69be7d8af haskell-defaults.nix: let ghc 7.8.2 builds use the binary library shipped with the compiler 2014-05-05 22:34:58 +02:00
Peter Simons d56bbd6364 haskell-defaults.nix: let ghc-7.8.2 use the HEAD prefs for the time being
The whole notion of per-compiler HP-compliant environments has failed
anyway and I'll try to get rid of that ASAP, so it feels pointless to
configure that stuff for GHC 7.8.2 to begin with.
2014-05-05 22:25:19 +02:00
Vladimir Kirillov 9aa231abfa buildLocalCabal: include cabalInstall to buildDepends to preserve developer experience 2014-05-05 14:43:55 +03:00
Peter Simons 66997bba1e haskell-gloss: require the latest OpenGL and GLUT libraries 2014-05-05 10:54:12 +02:00
Peter Simons dbb561ae62 haskell-packages.nix: strip trailing whitespace 2014-05-05 10:52:11 +02:00
Peter Simons f5a6b58374 cabal-install: update to version 1.20.0.1 2014-05-05 10:46:40 +02:00
Peter Simons 986a42dfe7 haskell-cabal-lenses: add version 0.1 2014-05-05 10:46:39 +02:00
Peter Simons e7c207e10d haskell-hourglass: add version 0.1.1 2014-05-05 10:46:39 +02:00
Ricky Elrod d66cdd3c43 scala: Bump to 2.11.0, bump 2.10 to 2.10.4 2014-05-05 02:14:57 -04:00
Mathijs Kwik 00a70b454c v8: remove old version 3.14 2014-05-05 07:32:37 +02:00
Jason "Don" O'Conal 05095ec48d goobook: fix build on darwin 2014-05-05 11:45:03 +10:00
Peter Simons 66bcd77f0e R: simplify the generic builder 2014-05-04 23:54:11 +02:00
Peter Simons 401f4a28c1 cryptol: fix reference to text library 2014-05-04 23:21:39 +02:00
Benno Fünfstück d385835c38 haskell-profiteur: new expression 2014-05-04 23:02:46 +02:00
Peter Simons 18f49692ec haskell-wreq: fix reference to attoparsec 2014-05-04 22:25:56 +02:00
Peter Simons a306b28baa haskell-defaults: prefer cabal-install 1.20.x on ghc-head 2014-05-04 21:19:11 +02:00
Peter Simons a9258080b1 R: don't install the "recommended packages"
These packages come with R, but if we install them as part of this build, then
we cannot update them without re-building R as well. Instead, we add those
packages to the R environment through the r-wrapper. This means that
recommended packages can be updated in cran-packgaes.nix, and those updates
have an effect on the installation without re-building R itself.
2014-05-04 21:12:34 +02:00
Peter Simons a329900977 Move r-packages.nix into the r-modules directory. 2014-05-04 21:09:38 +02:00
Peter Simons 834679ddab all-packages.nix: move all R-related attributes into one place 2014-05-04 20:51:36 +02:00
Peter Simons 0d264c1761 r-packages.nix: add an auto-generated list of all CRAN packages 2014-05-04 20:51:36 +02:00
Peter Simons 35d2c4b741 r-packages.nix: added various new libraries 2014-05-04 15:33:15 +02:00
Peter Simons 7c6a730e0b R: added wrapper script that provides "R" and "Rscript" binaries that know about extra libraries
Configure an override in ~/.nixpkgs/config.nix as follows:

  {
    packageOverrides = pkgs: {

      rWrapper = pkgs.rWrapper.override {
        packages = with pkgs.rPackages; [ Defaults dataTable foreach xtable ];
      };

    };
  }
2014-05-04 15:33:15 +02:00
Peter Simons adce4233af all-packages.nix: strip trailing whitespace 2014-05-04 15:33:15 +02:00
Peter Simons 911d9d5b1b Merge pull request #2489 from jwiegley/haskexprs
Add several new Haskell expressions
2014-05-04 13:22:13 +02:00
Peter Simons ce21d883c0 haskell-vinyl: add version 0.3 2014-05-04 13:19:56 +02:00
Peter Simons c2fd001fd4 Remove obsolete Agda-executable package; the compiler is not part of 'Agda'. 2014-05-04 12:17:35 +02:00
Wout Mertens 6ab576b702 Monit: Bump to 5.8
- Use callPackage etc
- Make PAM optional
2014-05-04 09:53:26 +02:00
John Wiegley 9bc6893712 Add several new Haskell expressions 2014-05-03 23:01:00 -05:00
Wout Mertens d93b1f80c0 Add Handbrake 0.9.9: DVD ripper
This packaging splices off the unfree faac library and forces handbrake
to use the (more recent/patched) versions of libraries in Nixpkgs.
Produces the CLI HandbrakeCLI and optionally the GTK+ version ghb.
2014-05-04 01:56:49 +02:00
Wout Mertens 3a7b7a8499 libmkv: from Handbrake project
Libmkv was started from Handbrake but is now unmaintained upstream.

Patches:
- A01: add constant to header file
- A02: Breaks API: Allow changing output sampling frequency
- P00: Fix accessing large files on Mingw32
2014-05-04 01:56:49 +02:00
Bjørn Forsman 70b39119c3 qwt: add version 6.x (we already have 5.x)
'qgis', one of the few 'qwt' dependees in nixpkgs, fails to build with
qwt 6. So I'm not moving the default version away from 5.x. Also, not
changing the default allows easy/safe cherry-picking to the stable
branch.
2014-05-04 00:11:26 +02:00
Vladimír Čunát d96f262166 json-c: update to 0.12, fixing CVE-2013-{6370,6371} 2014-05-03 21:30:48 +02:00
Peter Simons 4b307a7b96 haskell-network: update to version 2.5.0.0 2014-05-03 20:03:33 +02:00
Peter Simons dd1dd06b88 haskell-text: update to version 1.1.1.1 2014-05-03 20:03:32 +02:00
Peter Simons c1705e8b33 haskell-fgl: add version 5.5.0.1 2014-05-03 20:03:32 +02:00
Peter Simons eb7958247a haskell-unordered-containers: update to version 0.2.4.0 2014-05-03 20:03:32 +02:00
Peter Simons 074c128fec haskell-attoparsec: update to version 0.11.3.0 2014-05-03 20:03:32 +02:00
Peter Simons eca445a408 Bootstrap ghc-head with GHC 7.6.3 to see if that solves our weird compiler errors:
compiler/simplCore/CoreMonad.lhs:835:10:
      Non type-variable argument in the constraint: MonadPlus IO
      (Use -XFlexibleContexts to permit this)
      In the context: (MonadPlus IO)
      While checking an instance declaration
      In the instance declaration for `A.Alternative CoreM'

  compiler/simplCore/CoreMonad.lhs:841:10:
      Non type-variable argument in the constraint: MonadPlus IO
      (Use -XFlexibleContexts to permit this)
      In the context: (MonadPlus IO)
      While checking an instance declaration
      In the instance declaration for `MonadPlus CoreM'
2014-05-03 20:03:30 +02:00
Vladimir Kirillov 599f9a09fe haskell: bump ekg to 0.4, add ekg-core 2014-05-03 17:36:03 +03:00
Peter Simons 64d662e056 Agda: move compiler and standard library into a common directory
Also renamed AgdaStdLib attribute to AgdaStdlib, since upstream doesn't
seem to capitalize that name.
2014-05-03 12:37:17 +02:00
Peter Simons 801a4818c8 Merge pull request #2474 from jwiegley/agda-stdlib
Add expression for the Agda standard library
2014-05-03 12:33:26 +02:00
Mateusz Kowalczyk ab7e2f1dc5 haskell-HTTP: update to version 4000.2.13 2014-05-03 12:27:25 +02:00
Oliver Charles 4e70c764f5 Merge pull request #2473 from jwiegley/these
Add expression for Haskell library 'these'
2014-05-03 11:19:18 +01:00
John Wiegley 7d788d5e4f Add expression for the Agda standard library 2014-05-02 19:15:38 -05:00
John Wiegley fb778b705f Add expression for Haskell library 'these' 2014-05-02 13:43:34 -05:00
Michael Raskin feddcfaf1e Readding Erlang R16B02: R17 is a major update and it breaks Ejabberd. 2014-05-02 20:50:58 +04:00
Luca Bruno 63cdda1f4e zeitgeist: new package
Zeitgeist is a service which logs the users's activities and events

https://launchpad.net/zeitgeist
2014-05-02 17:43:02 +02:00
Austin Seipp b10f4af8f9 nginx: upgrade to 1.6.0, expose many more modules
By default, we now build all the optional nginx modules, including the
out-of-band ones like moreheaders and rtmp support.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-02 01:24:38 -05:00
Austin Seipp f21d619558 nixpkgs: move frama-c to a more appropriate directory
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 19:14:08 -05:00
Austin Seipp 0c51a4ac98 nixpkgs: add CompCert
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 19:11:46 -05:00
Peter Simons e81ac36bff haskell-spoon: add version 0.3.1 2014-05-01 21:57:02 +02:00
Peter Simons 39c3cb1d99 haskell-groom: add version 0.1.2 2014-05-01 21:57:02 +02:00
Emery Hemingway 3b1a171c05 qtbitcointrader: initial expression 2014-05-01 15:50:57 +02:00
Benno Fünfstück 8310c6a403 haskell-cabal-bounds: use versionOlder
for some reason, versionAtLeast doesn't work
2014-05-01 15:02:50 +02:00
Peter Simons 979520396e Merge pull request #2311 from bennofs/haskell-cabal-bounds
haskell-cabal-bounds: New expression
2014-05-01 14:53:10 +02:00
Benno Fünfstück e914f15728 haskell-cabal-bounds: avoid rebuild of Cabal 2014-05-01 14:51:06 +02:00
Peter Simons d4ceed5f2a haskell-hspec: the limitation on QuickCheck 2.7 has been lifted recently 2014-05-01 14:37:09 +02:00
Tom Dimiduk c4f66df29a add zeromq4 and zeromq4-haskell 2014-05-01 07:52:21 -04:00
Peter Simons 0293dc9fbd Merge pull request #2357 from Chaddai/texstudio
Texstudio : advanced editor for LaTeX
2014-05-01 13:06:06 +02:00
Oliver Charles 038645ad97 Merge pull request #2457 from jwiegley/posix-paths
Add expression for the Haskell posix-paths library
2014-05-01 11:41:39 +01:00
Austin Seipp 6d52463bd3 nixpkgs: add alt-ergo 0.95.2
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 02:42:31 -05:00
Austin Seipp 4ee4f76176 nixpkgs: add why3 0.83
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 02:30:39 -05:00
Austin Seipp d1a32414cd nixpkgs: add ltl2ba 1.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 02:30:34 -05:00
Austin Seipp 02351691ba ocaml-packages: add zarith 1.2.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 02:30:28 -05:00
Moritz Ulrich 397682be6b Bump pass(word-store) to 1.6.1.
...and also simplify the expression massively.
2014-04-30 23:52:55 +02:00
John Wiegley 3988f438ef Add expression for the Haskell posix-paths library 2014-04-30 17:19:34 -04:00
Austin Seipp 3c3256e4a8 nixpkgs: clang-analyzer 3.4
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-29 19:36:43 -05:00
Austin Seipp d9d76f1a3a cryptol: add 1.8.x expression
This also includes support for the verification tools I'm using. Cryptol
2 is still the default obviously.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-29 17:50:55 -05:00
Austin Seipp 1d3b5874ad nixpkgs: cov-build 7.0.2
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-29 16:00:34 -05:00
Benno Fünfstück 3685bf378f haskell: new expression cabal-bounds 2014-04-29 19:19:10 +02:00
Chaddaï Fouché ce82a2d6d9 Cleaning up the description and fixing qt to qt4 2014-04-29 16:49:20 +02:00
Chaddaï Fouché 89595fbcea Creation of a new package for texstudio, an editor for LaTeX documents 2014-04-29 16:48:22 +02:00
Peter Simons e8ba2d4ded haskell-packages.nix: switch ghc-head to cabal-install 1.20.x.x 2014-04-29 01:35:45 +02:00
Peter Simons 2bf7311b3f haskell-packages.nix: cosmetic 2014-04-29 01:35:45 +02:00
Peter Simons 192ef70a7c haskell-prelude-extras: add version 0.4 2014-04-29 01:35:45 +02:00
Peter Simons 1d7f7ad92f Merge pull request #2353 from jwiegley/sage
Add expression for sage
2014-04-28 22:46:27 +02:00
Peter Simons 3445df42a4 Merge pull request #2368 from Chaddai/texmaker
TeXmaker
2014-04-28 22:42:47 +02:00
Austin Seipp aaa0304a45 nixpkgs: verifast 13.11.14
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-28 13:46:27 -05:00
Eelco Dolstra 2ca913c509 Add some packages to the channel 2014-04-28 18:34:23 +02:00
Domen Kožar 80f7248c83 Merge pull request #2432 from Fuuzetsu/livestreamer
livestreamer: version 1.8.0
2014-04-28 17:08:58 +02:00
Eelco Dolstra 0af5d11a6f qemu-image: Remove (obsolete) 2014-04-28 14:34:34 +02:00
Mateusz Kowalczyk 9cb0a79538 livestreamer: version 1.8.0
A test fails with Python 3.4 so we ignore that one.
2014-04-28 09:03:44 +00:00
James Cook 39b5a0c3a2 libgnurl, a fork of libcurl used by GNUnet 2014-04-27 22:20:37 -07:00
Austin Seipp 111e1536e5 nixpkgs: remove cb1cat
Brice Minaud reported a simple attack on the CBEAM Pi permutation
function, resulting in it being withdrawn from CAESAR. :(

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-27 13:51:56 -05:00
Austin Seipp da0c8f33ef nixpkgs: yices 2.2.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-27 13:05:40 -05:00
Domen Kožar 67b0c3e1a6 pythonPackages.chameleon: 2.11 -> 2.15 2014-04-27 12:21:11 +02:00
Charles Strahan 64754519d9 libmx: Add package 2014-04-26 17:06:16 -04:00
Mateusz Kowalczyk 9a77b8e64f tibia: version 10.38
Closes #2396
2014-04-26 12:58:25 -05:00
Peter Simons 75da9d640e Merge pull request #2374 from klao/tz
Add tzdata and tz Haskell packages
2014-04-26 16:06:55 +02:00
Domen Kožar 083a407d04 pythonPackages.pyramid: 1.4.5 -> 1.5 2014-04-26 12:16:14 +02:00
Oliver Charles 136b454e48 Merge pull request #2395 from cstrahan/pycapnp
pycapnp: Add package
2014-04-26 10:00:12 +01:00
Oliver Charles f6e8b77294 Merge pull request #2399 from ttuegel/hmatrix-special
Add haskell-hmatrix-special-0.2.0
2014-04-26 09:58:37 +01:00
Oliver Charles b50c525e69 Merge pull request #2409 from fmap/haskell-bv
Derivation for the Haskell library, "bv".
2014-04-26 09:56:20 +01:00
Domen Kožar 954c1123ad Merge pull request #2403 from linquize/chatzilla
chatzilla: Use latest firefox's xulrunner
2014-04-26 10:28:22 +02:00
vi 74efbde57c Derivation for the Haskell library, "bv". 2014-04-26 16:17:04 +08:00
Linquize 20c395d8aa chatzilla: Use latest firefox's xulrunner 2014-04-26 02:04:18 +02:00
Thomas Tuegel 7c274bf958 Add haskell-hmatrix-special-0.2.0 2014-04-25 17:17:47 -05:00
Charles Strahan 5ebb896d5b pycapnp: Add package 2014-04-25 14:34:13 -04:00
Austin Seipp e146a02d14 nixpkgs: Add cryptol2 expression
This is just a convenient shorthand so people don't have to spell out
haskellPackages.cryptol

Note that the top-level expression is named 'cryptol2' but the package
isn't. That's because Cryptol is a library and other things could depend
on it (hence the vanilla name), but also the full name will be
disambiguated as 'haskell-cryptol-ghc7.6.3' anyway.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-25 11:07:18 -05:00
Oliver Charles 282a662a32 Merge pull request #2392 from cstrahan/capnproto
capnproto: Add package
2014-04-25 17:06:20 +01:00
Charles Strahan 604a4b680c capnproto: Add package 2014-04-25 11:18:18 -04:00
Mihaly Barasz 8bb3f19c6b Add tz Haskell package 2014-04-25 16:21:50 +02:00
Mihaly Barasz 2d37f8ecf0 Add tzdata Haskell package 2014-04-25 16:21:50 +02:00
mornfall abe9fb340e Merge pull request #2390 from ertes/ertes-haskell-jack
haskell: Added enumset and jack.
2014-04-25 14:28:13 +02:00
Shea Levy e85b164df8 Add php 5.3 variant with fpm support 2014-04-25 08:19:45 -04:00
Ertugrul Söylemez a3a2222fec haskell: Added enumset 0.0.4 and jack 0.7.0.2. 2014-04-25 14:03:57 +02:00
Oliver Charles 5de0ca50d7 Merge pull request #2389 from bennofs/haskell-ghc-gc-tune
haskell-ghc-gc-tune: new expression
2014-04-25 12:12:57 +01:00
Austin Seipp 5401849e3a cryptol v2.0.0
This comes with several extra libraries, including GraphSCC, monadLib,
presburger, process and smtLib, all required as build dependencies. But
otherwise totally automated via cabal2nix.

Next up is CVC4 (a total pain in the ass to package) for proving/SAT
support.

I have another WIP branch for the unfree 1.x series which I may (or may
not) add later as it has external verification tech at the moment.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-25 05:42:00 -05:00
Benno Fünfstück 027319708e haskell-ghc-gc-tune: new expression 2014-04-25 12:33:07 +02:00
aszlig 33eced411f
python-django: Update to 1.4.11, 1.5.6 and 1.6.3.
This fixes CVE-2014-0472, details can be found at:

http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-0472
https://www.djangoproject.com/weblog/2014/apr/21/security/

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
(cherry picked from commit 4a0c468043f9c143d784c9d19b6e2a2c395648fb)
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-25 12:30:23 +02:00
Oliver Charles cb82334421 Merge pull request #2336 from jwiegley/cabal
Add expression for cabal-install 1.20.0.0
2014-04-25 10:55:12 +01:00
Christoph Hrdinka e11a71c3be glibc_multi: fix typo 2014-04-25 11:49:09 +02:00
Rob Vermaas 477b9a9bbb Merge pull request #2363 from wizeman/u/nethogs
nethogs: Add package
2014-04-25 11:34:22 +02:00
Oliver Charles 954bc3131e haskellPackages.wreq: New expression 2014-04-25 10:33:23 +01:00
Oliver Charles 2fde59d20f Merge pull request #2356 from hrdinka/haskell-msgpack
haskell-msgpack: add version 0.7.2.5
2014-04-25 10:31:45 +01:00
Oliver Charles 4ccda3324f Merge pull request #2369 from fmap/master
New package: lists and its dependency, list-extras (Haskell.)
2014-04-25 10:18:57 +01:00
Shea Levy c7f2d87a56 Add haskell-http-kit 2014-04-24 13:06:01 -04:00
Eelco Dolstra d304b277bd Silence some Hydra evaluation warnings 2014-04-24 15:40:55 +02:00
Rickard Nilsson 7336218a9e postfix: Add version 2.11.0 as nixpkgs.postfix211
I think this version should replace the current nixpkgs.postfix,
but it could potentially break stuff since the version jump is
big (2.8 -> 2.11).
2014-04-24 11:56:54 +02:00
vi a16098995a New package: lists and its dependency, list-extras (Haskell.) 2014-04-24 17:41:40 +08:00
Chaddaï Fouché 31b58dccfe Added TeXmaker package : an advanced editor for latex 2014-04-24 10:59:29 +02:00
Mathijs Kwik 1a877418d4 node-packages: upgrade all generated expressions 2014-04-24 08:05:44 +02:00
Ricardo M. Correia 347db30cb8 nethogs: Add package
nethogs is a small 'net top' tool, grouping bandwidth by process.
2014-04-23 17:54:04 +02:00
Shea Levy a3b1f48c5d Add gcc-4.9.0 2014-04-23 10:45:00 -04:00
Christoph Hrdinka 6b1d20abe8 haskell-msgpack: add version 0.7.2.5 2014-04-23 10:06:19 +02:00
Ricardo M. Correia 419a71e1e5 spl, zfs: Add git versions, based on recent commits
Upstream has not been tagging new versions for a long time, but we need
compatibility with newer kernels. The 0.6.2 versions already have a bunch of
backported compatibility patches, but 3.14 kernels need even more.

Also, the git versions have fixed a bunch of crashes and other bugs, so perhaps
we should just bite the bullet and just use recent git versions (as sometimes
upstream recommends, when people run into bugs).

This adds a new "boot.zfs.useGit" boolean option, so that a user can
easily opt into using the git versions.
2014-04-23 01:42:52 +02:00
Christoph Hrdinka ca88cf2ac9 glibc_multi: fix ldd on x86_64 2014-04-23 00:51:27 +02:00
John Wiegley 7ce39b067a Add expression for sage 2014-04-22 14:10:36 -05:00
aszlig 52769d5c17
perl-dbix-class: Fix tests with newer SQLite.
Our version of SQLite causes the tests to fail, so I'm hereby adding a
patch from dbsrgits/dbix-class@ed5550d36 with the hunk for the Changes
file dropped.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-22 16:27:28 +02:00
Eelco Dolstra 19e9d25e8f Remove KDE 4.11 2014-04-21 18:13:17 +02:00
Eelco Dolstra ee798c5c0f Use KDE 4.12 2014-04-21 18:13:17 +02:00
aszlig 625d7b9043
Merge pull request #1928 from 'cross-win-osx'.
This includes a lot of fixes for cross-building to Windows and Mac OS X
and could possibly fix things even for non-cross-builds, like for
example OpenSSL on Windows.

The main reason for merging this in 14.04 already is that we already
have runInWindowsVM in master and it doesn't work until we actually
cross-build Cygwin's setup binary as the upstream version is a fast
moving target which gets _overwritten_ on every new release.

Conflicts:
	pkgs/top-level/all-packages.nix
2014-04-21 10:00:35 +02:00
aszlig cdd1c9caa5
Merge branch 'chromium-refactor', closes #1798.
This implements some longstanding work of getting the Chromium
derivation more modular. Unfortunately, I didn't manage to decrease the
compile time, which was one of the primary goal for doing the refactor.
A main reason this didn't work out well was the fact that most bundled
libraries are so heavily patched that it's not possible within a limited
time frame to decouple it from the main derivation.

However, it should now be easier to build other derivations that build
upon Chromium, like libcef. Also, it finally adds support for the
non-free PepperAPI Flash and PDF plugins and support for fetching the
corresponding versions through the updater.
2014-04-21 09:50:50 +02:00
Shea Levy 5701e4e15a Add buildLocalCabalWithArgs for providing extra arguments to callPackage 2014-04-20 22:57:03 -04:00
Rickard Nilsson 6b634673f9 Add remarkjs 0.6.4, a markdown-driven slideshow tool
Also, add required node packages (and update generated node pkgs).
2014-04-21 01:27:23 +02:00
John Wiegley a07455dd16 Add expression for cabal-install 1.20.0.0 2014-04-20 14:04:41 -05:00
AndersonTorres 31a94915d2 mpv: minor updates and cleanup
E.g. parameterize lua.
2014-04-20 19:46:21 +02:00
Eelco Dolstra 4e8c2f0ff9 Merge branch 'systemd-update' 2014-04-20 19:31:01 +02:00
Eelco Dolstra a0c0dfb647 Revert accidental change 2014-04-20 19:29:53 +02:00
Matt Whiteley 552d66cd9e Add swig-3.x 2014-04-20 11:30:31 +01:00
Eelco Dolstra c95cea4bfd Tarball: Check whether Nixpkgs evaluation doesn't depend on its path 2014-04-20 00:08:52 +02:00
Eelco Dolstra 5c2bd5dffc Remove obsolete line 2014-04-20 00:08:52 +02:00
Eelco Dolstra 0a256cc0ee Firewall: Only start if we have CAP_NET_ADMIN 2014-04-19 23:02:59 +02:00
John Wiegley 1337f5f84c Do not build CUPS support for ghostscript on Darwin 2014-04-19 14:22:35 +01:00
John Wiegley 599c2775dd Add expression for xml-lens 2014-04-19 11:21:15 +01:00
AndersonTorres cf8459fecf Dillo: new package
Dillo is a lightweight, fast web browser.
2014-04-19 11:08:39 +01:00
Roelof Wobben a6a90cad1b new package: muffin 2014-04-19 10:39:30 +01:00
Domen Kožar 85992ec738 Merge pull request #1507 from offlinehacker/pkgs/node_webkit/add
Add node-webkit, app runtime based on Chromium and node.js
2014-04-19 05:35:20 +02:00
aszlig 4c8ec5e12e
v8: Bring back old version 3.14.
The current version of v8 breaks builds of nodejs, mongodb and
rethinkdb. So let's bring back the old package with annoying _3_14
version suffix so hopefully the corresponding maintainers will get rid
of that dependency :-)

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:44 +02:00
aszlig 88a939c2d1
chromium: Decouple browser from default.nix.
This currently only passes through the arguments and is nothing more
than the foundation of the new structure. In essence, I want to have a
really small default.nix which is then going down into the respective
subparts that are isolated from each other.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:41 +02:00
aszlig 33acfbe917
minizip: New package based on zlib derivation.
This is needed by Chromium and is part of the zlib source tree in
contrib/, so let's propagate the version of zlib and use the same source
tree.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:40 +02:00
Michael Raskin f45bcfb5e9 Merge pull request #2298 from jwiegley/hfsevents
Add hfsevents expression, and make fsnotify use it on darwin
2014-04-18 10:42:16 -07:00
Michael Raskin b4b62ef776 Merge pull request #2314 from iyzsong/kakasi
add kakasi, a Kanji to Hiragana, Katakana or Romaji converter
2014-04-18 10:31:48 -07:00
Michael Raskin 97a3a803e1 Merge pull request #2313 from 1126/master
Adding pamixer.
2014-04-18 10:31:25 -07:00
Michael Raskin b1fad4ab9b Merge pull request #2279 from kowey/master
megam: New package
2014-04-18 10:19:44 -07:00
Michael Raskin 07053c040a Merge pull request #2271 from lethalman/apparix
apparix: new package
2014-04-18 10:17:44 -07:00
Michael Raskin 6cdce9deec Merge pull request #2220 from taku0/thunderbird-bin-24.0.0
add thunderbird-bin: the binary package for Thunderbird mail client
2014-04-18 10:16:35 -07:00
Michael Raskin d31cf5329e Merge pull request #2075 from iyzsong/webkit
get rid of old webkit packages
2014-04-18 10:10:29 -07:00
Michael Raskin 1fbba069fd Merge pull request #2241 from roelof1967/master
new package: cinnamon-control-center
2014-04-18 10:06:49 -07:00
_1126 25f7565657 Merge branch 'pamixer' 2014-04-18 16:09:50 +02:00
_1126 96257ea486 Adding pamixer. 2014-04-18 16:09:34 +02:00
宋文武 c796adfd65 add kakasi, a Kanji to Hiragana, Katakana or Romaji converter 2014-04-18 22:07:17 +08:00
Eelco Dolstra da774bced5 Remove dhcpcd_without_udev attribute 2014-04-18 15:36:06 +02:00
Sander van der Burg 104c841c85 Move su to the base packages of chrootenv builder 2014-04-18 13:30:24 +02:00
Rok Garbas 7aa3790f34 adding development version of weechat (alongside stable) 2014-04-17 22:22:54 +01:00
Mathijs Kwik 8ca0bbe1a9 bedup: fix hash 2014-04-17 17:48:43 +02:00
Mathijs Kwik 28b3318a04 bedup: fix public github url 2014-04-17 09:08:33 +02:00
John Wiegley 0556bc0fcb Add hfsevents expression, and make fsnotify use it on darwin 2014-04-16 16:43:32 -05:00
John Wiegley df56712700 The timeparsers library requires convertible == 1.0.* 2014-04-16 13:09:31 -05:00
Eelco Dolstra 5e16621afc IO::Socket::SSL: Update to 1.981
Required by "git send-email".
2014-04-16 18:43:39 +02:00
Domen Kožar 3a9f28ee08 Merge pull request #2185 from lethalman/gnome3
tracker, licenses.cc-by-30, gnome-user-docs, upgrade sushi, gnome-keyring service, gnome-user-share, gnome-tweak-tool, gnome-shell-extensions, xdg-user-dirs
2014-04-16 18:08:00 +02:00
Eelco Dolstra c13d582c78 Make dbus overridable 2014-04-16 16:44:27 +02:00
Luca Bruno 92a831a4ec xdg-user-dirs: new package
A tool to help manage well known user directories
like the desktop folder and the music folder

http://freedesktop.org/wiki/Software/xdg-user-dirs
2014-04-16 15:02:27 +02:00
Michael Raskin f44a3235a9 Use IcedTea for VUE, not Oracle JRE 2014-04-16 14:47:33 +04:00
Lluís Batlle i Rossell 44bda71b88 Adding ghdl 0.31 mcode flavour
This allows having a recent ghdl, without building it with gcc.
The major drawback is the speed.
2014-04-16 10:35:45 +02:00
Peter Simons d4097e4e0e Merge pull request #2273 from jwiegley/cabal-delete
Add expression for cabal-delete
2014-04-16 10:17:29 +02:00
William A. Kennington III 171a58bcd6 cpupower: Add package to replace cpufrequtils 2014-04-16 01:09:57 +02:00
Eelco Dolstra ee9c068b0c systemd: Update to 212
Note that systemd no longer depends on dbus, so we're rid of the
cyclic dependency problem between systemd and dbus.

This commit incorporates from wkennington's systemd branch
(203dcff45002a63f6be75c65f1017021318cc839,
1f842558a95947261ece66f707bfa24faf5a9d88).
2014-04-16 00:59:26 +02:00
Eelco Dolstra a37edbbb63 linux-headers: Add 3.14 2014-04-15 16:59:19 +02:00
Eelco Dolstra 0fc9f65ff2 linux-headers-2.6.28: Remove, no longer used 2014-04-15 16:50:29 +02:00
Peter Simons e572b5c104 Merge pull request #2253 from jwiegley/watch
Add a recipe for installing "watch" from procps (#2227)
2014-04-15 16:12:27 +02:00
Shea Levy f0d7c3841e Update node packages, add pure-css 2014-04-15 09:26:58 -04:00
Eric Kow 9e457049e4 megam: New package
Maximum Entropy (GA) Model Optimization Package
2014-04-15 14:00:56 +01:00
Oliver Charles 253f83ea2d Merge pull request #2275 from jwiegley/haskell-utils
Three new Haskell tools: rehoo, una, cabal-meta
2014-04-15 12:38:14 +01:00
Eelco Dolstra 9646ddc5a3 Archive::Cpio: Add to channel 2014-04-15 12:49:25 +02:00
John Wiegley f2690384c9 Three new Haskell tools: rehoo, una, cabal-meta 2014-04-15 04:32:06 -05:00
John Wiegley 00d5f3ab79 Add expression for cabal-delete 2014-04-15 04:16:55 -05:00
Lukas Toth f5fa89f198 haskellPackages.Unixutils: New expression 2014-04-15 10:43:38 +02:00
Lukas Toth 66e750190f haskellPackages.bzlib: New expression 2014-04-15 10:43:38 +02:00
Lukas Toth cf63d8953c haskellPackages.Extra: New expression 2014-04-15 10:43:38 +02:00
Lukas Toth 1ae0fec71b haskellPackages.ipprint: New expression 2014-04-15 10:43:38 +02:00
Luca Bruno 8decc8fc2f apparix: new package
Add directory bookmarks, distant listing, and distant editing to the command line

http://micans.org/apparix
2014-04-15 10:41:55 +02:00
Peter Simons 16e236b02e Merge pull request #2269 from jwiegley/leafnode
Add leafnode for unix systems
2014-04-15 10:26:04 +02:00
Oliver Charles 1c3b20e7cc Merge pull request #2268 from jwiegley/sizes
Add the Haskell system utility "sizes" (take two)
2014-04-15 08:56:22 +01:00
John Wiegley 8ee52f3856 Add leafnode for unix systems 2014-04-15 02:54:58 -05:00
John Wiegley d5898b3733 Add the Haskell system utility "sizes" 2014-04-15 02:28:02 -05:00
Mathijs Kwik 5ab600ab00 add pythonPackages.bedup (btrfs deduplication tool) 2014-04-15 09:22:16 +02:00
Mathijs Kwik 1daddde5dd add pythonPackages.contextlib2 2014-04-15 09:22:16 +02:00
Austin Seipp 6376ac57d8 emacsPackages: add cryptol-mode
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-14 18:23:51 -05:00
John Wiegley 7a59054dce Add a recipe for installing "watch" from procps (#2227) 2014-04-14 09:10:10 -05:00
Eelco Dolstra 5d6c6abe50 kde-4.10: Remove 2014-04-14 15:09:11 +02:00
Luca Bruno e08861a4cd mod_dnssd: new apache httpd 2.2 module
Provide Zeroconf support via DNS-SD using Avahi

http://0pointer.de/lennart/projects/mod_dnssd
2014-04-14 09:58:03 +02:00
Roelof Wobben 641ea31345 new package: cinnamon-control-center 2014-04-13 21:46:48 +02:00
Bjørn Forsman 99afbf9e91 sdcc: bump 3.3.0 -> 3.4.0
This new sdcc doesn't need older boost, so switch to nixpkgs default
version (currently 1.55).
2014-04-13 19:46:00 +02:00
Michael Raskin e86e76e560 Adding sysdig system call tracer for Linux 2014-04-13 20:49:37 +04:00
Cillian de Róiste 83044b788c pytest: fix for py2.6 by adding argparse as an input 2014-04-13 17:21:33 +02:00
Oliver Charles 7f4afcda7e Merge pull request #2235 from bennofs/haskell-monad-extras
haskell: add monad-extras
2014-04-13 12:11:27 +01:00
Roelof Wobben 0096bb677a new package: cinnamon-settings-daemon (close #2205)
With tiny changes from @vcunat.
2014-04-13 11:57:12 +02:00
Benno Fünfstück 7fed418b24 haskell: add monad-extras 2014-04-13 10:19:30 +02:00
Domen Kožar 7e37e4b5ee Merge pull request #2184 from offlinehacker/pkgs/pythonPacakges/sqlalchemy-imageattach_darwin_fix
pythonPackages: sqlalchemy-imageattach, fix tests on darwin
2014-04-13 00:25:25 +02:00
Michael Raskin 97982c4085 Update MDBTools Git version 2014-04-12 19:29:40 +04:00
taku0 c4eadfbac5 add thunderbird-bin: the binary package for Thunderbird mail client 2014-04-13 00:29:14 +09:00
John Wiegley 0ef3c47778 Add recipes for a few Haskell libraries 2014-04-12 10:22:37 -05:00
Oliver Charles 1b7a8e6f5b Merge pull request #2217 from bennofs/haskell-uri
Add uri haskell package
2014-04-12 16:09:46 +01:00
Oliver Charles 99d8ef0673 haskellPackages.snapCORS: New expression 2014-04-12 16:04:40 +01:00
Benno Fünfstück 796ea8ee11 haskell: add uri package 2014-04-12 16:59:29 +02:00
William A. Kennington III 4fea09ca4c google_api_python_client: Add package
Closes #2178

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-12 08:11:46 -05:00
Aristid Breitkreuz c62b9e56f8 perl: Finance::Quote 1.29 2014-04-12 14:40:03 +02:00
Vladimír Čunát 7be0e37ca2 Merge master into test-1515
To get rid of 2k aborted builds. ?compare=1095725
2014-04-12 10:38:40 +02:00
Vladimír Čunát 83cb0354e9 clang_34: make it evaluate to 3.4 even on Darwin 2014-04-12 09:46:37 +02:00
Austin Seipp 172dc1336f nixos: add grsecurity module (#1875)
This module implements a significant refactoring in grsecurity
configuration for NixOS, making it far more usable by default and much
easier to configure.

 - New security.grsecurity NixOS attributes.
   - All grsec kernels supported
   - Allows default 'auto' grsec configuration, or custom config
   - Supports custom kernel options through kernelExtraConfig
   - Defaults to high-security - user must choose kernel, server/desktop
     mode, and any virtualisation software. That's all.
   - kptr_restrict is fixed under grsecurity (it's unwriteable)
 - grsecurity patch creation is now significantly abstracted
   - only need revision, version, and SHA1
   - kernel version requirements are asserted for sanity
   - built kernels can have the uname specify the exact grsec version
     for development or bug reports. Off by default (requires
     `security.grsecurity.config.verboseVersion = true;`)
 - grsecurity sysctl support
   - By default, disabled.
   - For people who enable it, NixOS deploys a 'grsec-lock' systemd
     service which runs at startup. You are expected to configure sysctl
     through NixOS like you regularly would, which will occur before the
     service is started. As a result, changing sysctl settings requires
     a reboot.
 - New default group: 'grsecurity'
   - Root is a member by default
   - GRKERNSEC_PROC_GID is implicitly set to the 'grsecurity' GID,
     making it possible to easily add users to this group for /proc
     access
 - AppArmor is now automatically enabled where it wasn't before, despite
   implying features.apparmor = true

The most trivial example of enabling grsecurity in your kernel is by
specifying:

    security.grsecurity.enable          = true;
    security.grsecurity.testing         = true;      # testing 3.13 kernel
    security.grsecurity.config.system   = "desktop"; # or "server"

This specifies absolutely no virtualisation support. In general, you
probably at least want KVM host support, which is a little more work.
So:

    security.grsecurity.enable = true;
    security.grsecurity.stable = true; # enable stable 3.2 kernel
    security.grsecurity.config = {
      system   = "server";
      priority = "security";
      virtualisationConfig   = "host";
      virtualisationSoftware = "kvm";
      hardwareVirtualisation = true;
    }

This module has primarily been tested on Hetzner EX40 & VQ7 servers
using NixOps.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-11 22:43:51 -05:00
Peter Simons f32be2da85 haddock: update to version 2.14.2 2014-04-11 22:33:11 +02:00
Peter Simons 86177f06e9 haskell-haskell-src: add version 1.0.1.6 2014-04-11 22:33:11 +02:00
Peter Simons f5dd4d383b haskell-HTTP: update to version 4000.2.12 2014-04-11 22:33:11 +02:00
Peter Simons e1bdc5c164 haskell-statistics: add version 0.11.0.0 2014-04-11 22:33:11 +02:00
Peter Simons ea95516bf8 haskell-parsers: add version 0.11 2014-04-11 22:33:11 +02:00
Peter Simons 4604d52df4 GHC version 7.8.1 has been deprecated because of a serious bug.
We'll have version 7.8.2 out soon.

http://www.haskell.org/pipermail/ghc-devs/2014-April/004605.html
http://www.haskell.org/pipermail/ghc-devs/2014-April/004616.html
2014-04-11 22:33:11 +02:00
Peter Simons 5b211b9a9b Merge pull request #2207 from jwiegley/master
Add c2hsc to haskell-packages.nix
2014-04-11 22:30:49 +02:00
Domen Kožar baf2a4d4b9 ugly tarball fix for llvmPackages support on Darwin 2014-04-11 21:28:43 +02:00
John Wiegley 8026caec43 Add c2hsc to haskell-packages.nix 2014-04-11 10:34:56 -05:00
Ricardo M. Correia b8a6eef6fa gradm: Attempt to fix build failure by using older flex
Thanks to @thoughtpolice for noticing and suggesting the fix!
2014-04-11 16:38:24 +02:00
Peter Simons 2396e9d036 perlPackages.PackageStash: Revert "update from 0.34 to 0.36"
This reverts commit 5adbf4d447. The update broke
the test suite of perl-Moose [1], which is required by Hydra.

[1] http://hydra.nixos.org/build/10268974
2014-04-11 15:23:34 +02:00
Eelco Dolstra 2da09363bf nix: Update to 1.7 2014-04-11 12:24:48 +02:00
Peter Simons 9818422bc0 Merge pull request #2203 from fmap/language-c-inline
New derivation: language-c-inline (haskell)
2014-04-11 11:45:45 +02:00
Peter Simons 846906fc53 ipsec-tools: fix build by passing old version of flex 2014-04-11 11:09:59 +02:00
Peter Simons e35c2f6d4c all-packages.nix: drop trailing whitespace 2014-04-11 10:06:19 +02:00
Peter Simons 6913650adc maude: use old flex version; the new one causes build errors
This issue has been fixed in the latest alpha release.
2014-04-11 10:06:18 +02:00
Peter Simons f741be954c Offer consistently named attributes for the two available flex versions. 2014-04-11 10:06:18 +02:00
Vladimír Čunát 8c12816d59 pango on darwin: amend the wrong fix
I didn't realize pango doesn't depend on flex directly,
only through introspection which caused build problems by itself, too.
2014-04-11 09:57:26 +02:00
Vladimír Čunát e2e74154e2 fix tarball (dragonegg missing in llvmPackages on darwin) 2014-04-11 09:57:25 +02:00
Peter Simons b62ac3995c haskell-hastache: remove obsolete version 0.5.1 2014-04-11 09:53:16 +02:00
Michael Raskin 31f3755327 Adding TCPFlow: a tool to separate tcp streams when capturing 2014-04-11 11:08:51 +04:00
vi 7839df9a09 New derivation: language-c-inline (haskell) 2014-04-11 10:20:21 +08:00
Vladimír Čunát 07dc578572 llvm(Packages) on darwin: attempts to fix
- mark llvm34 as broken on darwin (so it doesn't install by default with nix-env)
- don't use our gcc for llvm_34 (might fix the build)
- switch also clang default to 3.3 on darwin (llvm was before)
2014-04-10 21:19:40 +02:00
Vladimír Čunát 297bcd2088 pango on darwin: attempt to fix build
Supply older flex (new doesn't build), and disable introspection.
2014-04-10 20:37:52 +02:00
Carles Pagès 8aa84644f9 libtxc_dxtn_s2tc: add v1.0 (close #2194)
S2TC is a patent-free S3TC compatible implementation and provides texture
compression to mesa.
2014-04-10 20:19:49 +02:00
Rob Vermaas c3c045c59d Add logstash-forwarder. 2014-04-10 13:31:23 +02:00
Ricardo M. Correia 5dfc6584a5 grsecurity: Update stable patch from 3.0-3.2.56-201404062126 -> 3.0-3.2.57-201404091758 2014-04-10 00:37:33 +02:00
Aristid Breitkreuz 5d12cbf1c2 add back old version of flex for grub2 2014-04-09 20:42:08 +02:00
Jaka Hudoklin 1bb391e2bb pythonPackages: sqlalchemy-imageattach, fix tests on darwin 2014-04-09 16:10:42 +02:00
Domen Kožar e5e27cfd64 Merge pull request #2153 from lethalman/gnome3
accounts-daemon service, fix gnome-shell, add libgnomekbd, musicbrainz5, sushi, gnome-contacts
2014-04-09 15:01:17 +02:00
Oliver Charles 18039f52bb Merge pull request #2181 from fmap/stuff
Derivations for HandsomeSoup and hxt-xpath (Haskell.)
2014-04-09 12:04:55 +01:00
vi 09e245b3ab Derivations for HandsomeSoup and hxt-xpath (Haskell.) 2014-04-09 18:36:49 +08:00
Peter Simons 9b4e914dac Merge pull request #2171 from ocharles/remove-lens-aeson
Remove haskellPackages.lensAeson
2014-04-09 11:53:07 +02:00
Austin Seipp 692ee73af1 libseccomp: version 2.1.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 19:37:47 -05:00
Austin Seipp 3ff158289a lockdep: refactor into non-kernel package
Lockdep doesn't *really* require the kernel package - just the kernel
sources. It's really a user-space tool just compiled from some portable
code within the kernel, nothing more.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 19:21:55 -05:00
Domen Kožar da7e94e0b6 Merge pull request #2174 from matejc/upgrade_searx
searx: upgrade to latest
2014-04-08 21:08:11 +02:00
Vladimír Čunát f5865a5155 linux: switch to 3.12 by default (latest longterm)
Close #2151.
2014-04-08 20:30:41 +02:00
Matej Cotman 6a3d9a84c4 searx: upgrade to latest 2014-04-08 20:14:01 +02:00
Oliver Charles f251d0d386 Remove haskellPackages.lensAeson
This is now part of haskellPackages.lens
2014-04-08 17:21:47 +01:00
Austin Seipp 57cfb4315e haskell: sbv 3.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 10:12:58 -05:00
Austin Seipp 968740e0c1 capstone: version 2.1.2
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 07:04:19 -05:00
Luca Bruno 9b737eb282 libmusicbrainz5: new major version 2014-04-08 13:39:51 +02:00
cillianderoiste 565ff3da00 Merge pull request #2166 from offlinehacker/pkgs/pythonPacakges/ipdb_ipythonLight
pythonPackages: ipdb, use ipythonLight by default
2014-04-08 13:27:16 +02:00
Peter Simons 28410f40b4 perlPackages.DataPage: update from 2.01 to 2.02 2014-04-08 13:25:17 +02:00
Peter Simons 83a4c1ed79 perlPackages.DataCompare: update from 1.22 to 1.2102 2014-04-08 13:25:17 +02:00
Peter Simons bfe8e8148a perlPackages.DBIxClassCandy: update from 0.002103 to 0.002104 2014-04-08 13:25:17 +02:00
Peter Simons 639c075ca5 perlPackages.DBI: update from 1.630 to 1.631 2014-04-08 13:25:17 +02:00
Peter Simons ce938b40bf perlPackages.CryptUnixCryptXS: update from 0.09 to 0.10 2014-04-08 13:25:16 +02:00
Peter Simons 4f8820cce6 perlPackages.CryptRijndael: update from 1.11 to 1.12 2014-04-08 13:25:16 +02:00
Peter Simons d3a072b81c perlPackages.CryptRandPasswd: update from 0.03 to 0.05 2014-04-08 13:25:16 +02:00
Peter Simons 3f323615b2 perlPackages.CryptPasswdMD5: update from 1.3 to 1.40 2014-04-08 13:25:16 +02:00
Peter Simons 33d9f8bd5c perlPackages.CryptOpenSSLRandom: update from 0.04 to 0.06 2014-04-08 13:25:16 +02:00
Peter Simons 4b906253d8 perlPackages.CryptDHGMP: update from 0.00011 to 0.00012 2014-04-08 13:25:16 +02:00
Peter Simons 665f7e653a perlPackages.Coro: update from 6.33 to 6.37 2014-04-08 13:25:16 +02:00
Peter Simons 42d2cf897e perlPackages.ConfigTiny: update from 2.12 to 2.20 2014-04-08 13:25:16 +02:00
Peter Simons 8843b31863 perlPackages.ConfigMVP: update from 2.200004 to 2.200007 2014-04-08 13:25:16 +02:00
Peter Simons 35a8be6a0c perlPackages.CompressRawBzip2: update from 2.063 to 2.064 2014-04-08 13:25:16 +02:00
Peter Simons 02cd3d3f2d perlPackages.ClassXSAccessor: update from 1.16 to 1.19 2014-04-08 13:25:16 +02:00
Peter Simons 5198214d70 perlPackages.ClassUnload: update from 0.07 to 0.08 2014-04-08 13:25:16 +02:00
Peter Simons 4c05aacb52 perlPackages.ClassThrowable: update from 0.10 to 0.11 2014-04-08 13:25:15 +02:00
Peter Simons 9a091a98b8 perlPackages.ClassMethodModifiers: update from 2.00 to 2.10 2014-04-08 13:25:15 +02:00
Peter Simons a826bd4836 perlPackages.ClassMethodMaker: update from 2.18 to 2.21 2014-04-08 13:25:15 +02:00
Peter Simons 9fbd2668a5 perlPackages.ClassLoad: update from 0.20 to 0.21 2014-04-08 13:25:15 +02:00
Peter Simons adaa09ea51 perlPackages.ClassC3: update from 0.24 to 0.26 2014-04-08 13:25:15 +02:00
Peter Simons 3049b02731 perlPackages.ClassBase: update from 0.03 to 0.05 2014-04-08 13:25:15 +02:00
Peter Simons 442f027c69 perlPackages.CatalystXComponentTraits: update from 0.16 to 0.19 2014-04-08 13:25:15 +02:00
Peter Simons d67240b5b9 perlPackages.CatalystViewTT: update from 0.40 to 0.41 2014-04-08 13:25:15 +02:00
Peter Simons da172c171b perlPackages.CatalystViewDownload: update from 0.07 to 0.09 2014-04-08 13:25:15 +02:00
Peter Simons 03e9004bc8 perlPackages.CatalystPluginStaticSimple: update from 0.30 to 0.31 2014-04-08 13:25:15 +02:00
Peter Simons 66d3ba9cae perlPackages.CatalystPluginStackTrace: update from 0.11 to 0.12 2014-04-08 13:25:15 +02:00
Peter Simons 2017c7a1eb perlPackages.CatalystPluginSession: update from 0.36 to 0.39 2014-04-08 13:25:15 +02:00
Peter Simons 04cdf8a974 perlPackages.CatalystPluginConfigLoader: update from 0.30 to 0.33 2014-04-08 13:25:15 +02:00
Peter Simons 599ae0f43c perlPackages.CatalystManual: update from 5.9006 to 5.9007 2014-04-08 13:25:15 +02:00
Peter Simons b62a1edf53 perlPackages.CatalystDispatchTypeRegex: update from 5.90032 to 5.90033 2014-04-08 13:25:15 +02:00
Peter Simons b5f3b44160 perlPackages.CatalystDevel: update from 1.37 to 1.39 2014-04-08 13:25:14 +02:00
Peter Simons 9d8ef258e3 perlPackages.CatalystAuthenticationStoreDBIxClass: update from 0.1503 to 0.1506 2014-04-08 13:25:14 +02:00
Peter Simons beeb787017 perlPackages.CaptureTiny: update from 0.21 to 0.24 2014-04-08 13:25:14 +02:00
Peter Simons 626061e79d perlPackages.CGIExpand: update from 2.03 to 2.04 2014-04-08 13:25:14 +02:00
Peter Simons d8cd48542b perlPackages.CGICookieXS: update from 0.16 to 0.18 2014-04-08 13:25:14 +02:00
Peter Simons 282fe2da2a perlPackages.BoostGeometryUtils: update from 0.12 to 0.15 2014-04-08 13:25:14 +02:00
Peter Simons 353bb1c2f7 perlPackages.BHooksEndOfScope: update from 0.12 to 0.13 2014-04-08 13:25:14 +02:00
Peter Simons 79d6aa625d perlPackages.AppCLI: update from 0.07 to 0.313 2014-04-08 13:25:14 +02:00
Peter Simons f548b6c06a perlPackages.AnyEvent: update from 7.05 to 7.07 2014-04-08 13:25:14 +02:00
Peter Simons ecc8da9672 perlPackages.AlienWxWidgets: update from 0.64 to 0.65 2014-04-08 13:25:14 +02:00
Peter Simons 18a14b3455 perlPackages.strictures: update from 1.004004 to 1.005004 2014-04-08 13:25:14 +02:00
Peter Simons 4955d0e876 perlPackages.namespaceclean: update from 0.24 to 0.25 2014-04-08 13:25:14 +02:00
Peter Simons 3984a70646 perlPackages.if: update from 0.0601 to 0.01000001 2014-04-08 13:25:14 +02:00
Peter Simons 7514552d3e perlPackages.constant: update from 1.15 to 1.27 2014-04-08 13:25:14 +02:00
Peter Simons 0cb15d8ff8 perlPackages.cam_pdf: update from 1.52 to 1.60 2014-04-08 13:25:13 +02:00
Peter Simons ca577f28b1 perlPackages.boolean: update from 0.30 to 0.32 2014-04-08 13:25:13 +02:00
Peter Simons 0273315c62 perlPackages.aliased: update from 0.30 to 0.31 2014-04-08 13:25:13 +02:00
Peter Simons 5bad11016b perlPackages.YAMLSyck: update from 1.22 to 1.27 2014-04-08 13:25:13 +02:00
Peter Simons f2e9c3dad1 perlPackages.XMLWriter: update from 0.612 to 0.624 2014-04-08 13:25:13 +02:00
Peter Simons a296adc1a1 perlPackages.XMLSimple: update from 2.18 to 2.20 2014-04-08 13:25:13 +02:00
Peter Simons 0a019d4023 perlPackages.XMLRegExp: update from 0.03 to 0.04 2014-04-08 13:25:13 +02:00
Peter Simons a6d0e04330 perlPackages.XMLParser: update from 2.36 to 2.41 2014-04-08 13:25:13 +02:00
Peter Simons 8626dc7d49 perlPackages.XMLNamespaceSupport: update from 1.09 to 1.11 2014-04-08 13:25:13 +02:00
Peter Simons 5789357f36 perlPackages.XMLLibXSLT: update from 1.87 to 1.89 2014-04-08 13:25:13 +02:00
Peter Simons abdd1e4ce5 perlPackages.XMLLibXML: update from 2.0014 to 2.0115 2014-04-08 13:25:13 +02:00
Peter Simons 3aec099b90 perlPackages.X11GUITest: update from 0.21 to 0.28 2014-04-08 13:25:13 +02:00
Peter Simons 0d2fb0040c perlPackages.Wx: update from 0.9922 to 0.9923 2014-04-08 13:25:13 +02:00
Peter Simons 81f0e185f0 perlPackages.WWWMechanize: update from 1.72 to 1.73 2014-04-08 13:25:13 +02:00
Peter Simons c0048552ff perlPackages.WWWCurl: update from 4.15 to 4.17 2014-04-08 13:25:13 +02:00
Peter Simons e4559ba436 perlPackages.URIFromHash: update from 0.03 to 0.04 2014-04-08 13:25:12 +02:00
Peter Simons 8ae221d621 perlPackages.TreeSimpleVisitorFactory: update from 0.10 to 0.12 2014-04-08 13:25:12 +02:00
Peter Simons 0600586913 perlPackages.TimeDuration: update from 1.1 to 1.06 2014-04-08 13:25:12 +02:00
Peter Simons 7f1aa495ca perlPackages.TimeDate: update from 1.16 to 2.30 2014-04-08 13:25:12 +02:00
Peter Simons c6b1a953e1 perlPackages.TieIxHash: update from 1.22 to 1.23 2014-04-08 13:25:12 +02:00
Peter Simons 684245d61e perlPackages.TextWikiFormat: update from 0.80 to 0.81 2014-04-08 13:25:12 +02:00
Peter Simons ad5b3a3b1a perlPackages.TextTable: update from 1.128 to 1.129 2014-04-08 13:25:12 +02:00
Peter Simons 53778344ef perlPackages.TextMicroTemplate: update from 0.19 to 0.20 2014-04-08 13:25:12 +02:00
Peter Simons b2fa401f59 perlPackages.TextCSV: update from 1.10 to 1.32 2014-04-08 13:25:12 +02:00
Peter Simons 9b26002d06 perlPackages.TextBibTeX: update from 0.66 to 0.69 2014-04-08 13:25:12 +02:00
Peter Simons 167a636e5c perlPackages.TextAligner: update from 0.07 to 0.10 2014-04-08 13:25:12 +02:00
Peter Simons 9dbec03dde perlPackages.TestWWWMechanizeCatalyst: update from 0.58 to 0.59 2014-04-08 13:25:11 +02:00
Peter Simons 64c178f2c4 perlPackages.TestSynopsis: update from 0.06 to 0.10 2014-04-08 13:25:11 +02:00
Peter Simons 781d9a0185 perlPackages.TestRoutine: update from 0.015 to 0.018 2014-04-08 13:25:11 +02:00
Peter Simons 7f6a6111b7 perlPackages.TestMost: update from 0.31 to 0.33 2014-04-08 13:25:11 +02:00
Peter Simons a36bb367f1 perlPackages.TestMojibake: update from 0.8 to 0.9 2014-04-08 13:25:11 +02:00
Peter Simons 8c51e9cadc perlPackages.TestMockTime: update from 0.09 to 0.12 2014-04-08 13:25:11 +02:00
Peter Simons 1b9a23e355 perlPackages.TestMinimumVersion: update from 0.101080 to 0.101081 2014-04-08 13:25:11 +02:00
Peter Simons 6794e6c6c5 perlPackages.TestException: update from 0.31 to 0.32 2014-04-08 13:25:11 +02:00
Peter Simons f2d9a7231e perlPackages.TestDifferences: update from 0.61 to 0.4801 2014-04-08 13:25:11 +02:00
Peter Simons 0c65639e50 perlPackages.TestDeep: update from 0.110 to 0.112 2014-04-08 13:25:11 +02:00
Peter Simons 702568c6b0 perlPackages.TestBase: update from 0.60 to 0.62 2014-04-08 13:25:11 +02:00
Peter Simons 1ac32ce082 perlPackages.TermReadKey: update from 2.30 to 2.31 2014-04-08 13:25:11 +02:00
Peter Simons df775c9f0c perlPackages.TermProgressBar: update from 2.13 to 2.14 2014-04-08 13:25:11 +02:00
Peter Simons 63b750c257 perlPackages.TAPParserSourceHandlerpgTAP: update from 3.29 to 3.30 2014-04-08 13:25:11 +02:00
Peter Simons f8da8e1b54 perlPackages.SyntaxKeywordJunction: update from 0.003006 to 0.003007 2014-04-08 13:25:11 +02:00
Peter Simons f3ceb45292 perlPackages.Switch: update from 2.16 to 2.17 2014-04-08 13:25:10 +02:00
Peter Simons bf37d845a4 perlPackages.SubName: update from 0.05 to 0.0502 2014-04-08 13:25:10 +02:00
Peter Simons 2443fb656b perlPackages.SubExporterProgressive: update from 0.001006 to 0.001011 2014-04-08 13:25:10 +02:00
Peter Simons 515e5a3bee perlPackages.SubExporterGlobExporter: update from 0.003 to 0.004 2014-04-08 13:25:10 +02:00
Peter Simons 38f98cb4f9 perlPackages.SubExporterForMethods: update from 0.100050 to 0.100051 2014-04-08 13:25:10 +02:00
Peter Simons dfac5cabce perlPackages.StringTruncate: update from 1.100601 to 1.100602 2014-04-08 13:25:10 +02:00
Peter Simons 2c6ece8bad perlPackages.StringToIdentifierEN: update from 0.10 to 0.11 2014-04-08 13:25:10 +02:00
Peter Simons ba3e8121b7 perlPackages.StringRewritePrefix: update from 0.006 to 0.007 2014-04-08 13:25:10 +02:00
Peter Simons 8a1d56b8fc perlPackages.StringMkPasswd: update from 0.02 to 0.05 2014-04-08 13:25:10 +02:00
Peter Simons 9bac327a0d perlPackages.StringFormat: update from 1.16 to 1.17 2014-04-08 13:25:10 +02:00
Peter Simons 110a78818e perlPackages.StringErrf: update from 0.006 to 0.007 2014-04-08 13:25:10 +02:00
Peter Simons 83e8666cdd perlPackages.StringCRC32: update from 1.4 to 1.5 2014-04-08 13:25:10 +02:00
Peter Simons 872ff90fd1 perlPackages.SpreadsheetParseExcel: update from 0.58 to 0.2603 2014-04-08 13:25:10 +02:00
Peter Simons ffba45324f perlPackages.Socket6: update from 0.23 to 0.25 2014-04-08 13:25:10 +02:00
Peter Simons e79643d5ea perlPackages.SetScalar: update from 1.26 to 1.29 2014-04-08 13:25:10 +02:00
Peter Simons a0bf9e77f3 perlPackages.SetObject: update from 1.26 to 1.34 2014-04-08 13:25:09 +02:00
Peter Simons 481cb54816 perlPackages.ScopeUpper: update from 0.21 to 0.24 2014-04-08 13:25:09 +02:00
Peter Simons 4578679a41 perlPackages.SafeIsa: update from 1.000002 to 1.000004 2014-04-08 13:25:09 +02:00
Peter Simons 9f4358e8d5 perlPackages.SOAPLite: update from 0.716 to 1.11 2014-04-08 13:25:09 +02:00
Peter Simons 290b3b42c8 perlPackages.RpcXML: update from 0.73 to 0.78 2014-04-08 13:25:09 +02:00
Peter Simons 36e00c99bc perlPackages.RoleTiny: update from 1.002004 to 1.003003 2014-04-08 13:25:09 +02:00
Peter Simons 53a801d569 perlPackages.RoleIdentifiable: update from 0.005 to 0.007 2014-04-08 13:25:09 +02:00
Peter Simons 9ca920edd4 perlPackages.RoleHasMessage: update from 0.005 to 0.006 2014-04-08 13:25:09 +02:00
Peter Simons a051b5a491 perlPackages.ReturnValue: update from 1.302 to 1.666004 2014-04-08 13:25:09 +02:00
Peter Simons 4c6399941c perlPackages.Redis: update from 1.961 to 1.2001 2014-04-08 13:25:09 +02:00
Peter Simons b587ad6d82 perlPackages.ProbePerl: update from 0.01 to 0.03 2014-04-08 13:25:09 +02:00
Peter Simons 4ee3b69644 perlPackages.PodMarkdown: update from 1.322 to 2.000 2014-04-08 13:25:09 +02:00
Peter Simons 61db692996 perlPackages.PodEscapes: update from 1.04 to 1.06 2014-04-08 13:25:09 +02:00
Peter Simons de844a8a78 perlPackages.PodElemental: update from 0.102362 to 0.103000 2014-04-08 13:25:09 +02:00
Peter Simons c7298cceb5 perlPackages.PodCoverage: update from 0.19 to 0.23 2014-04-08 13:25:09 +02:00
Peter Simons 0dc0068ac9 perlPackages.Plack: update from 1.0024 to 1.0030 2014-04-08 13:25:08 +02:00
Peter Simons 5ba155ff1c perlPackages.PerlPrereqScanner: update from 1.018 to 1.019 2014-04-08 13:25:08 +02:00
Peter Simons 16baef6c4f perlPackages.PerlOSType: update from 1.002 to 1.007 2014-04-08 13:25:08 +02:00
Peter Simons f85e0bf18d perlPackages.PerlMagick: update from 6.86 to 6.87 2014-04-08 13:25:08 +02:00
Peter Simons 3594bdb508 perlPackages.PerlIOviadynamic: update from 0.12 to 0.14 2014-04-08 13:25:08 +02:00
Peter Simons ef5891c1fb perlPackages.PerlCritic: update from 1.118 to 1.121 2014-04-08 13:25:08 +02:00
Peter Simons 09c37dbe2e perlPackages.PathTiny: update from 0.026 to 0.052 2014-04-08 13:25:08 +02:00
Peter Simons 745dd43b05 perlPackages.PathClass: update from 0.29 to 0.33 2014-04-08 13:25:08 +02:00
Peter Simons 0f845d8e8b perlPackages.ParseRecDescent: update from 1.965001 to 1.967009 2014-04-08 13:25:08 +02:00
Peter Simons 2c967e872e perlPackages.ParamsValidate: update from 1.07 to 1.08 2014-04-08 13:25:08 +02:00
Peter Simons 5a410b1a9d perlPackages.PadWalker: update from 1.96 to 1.98 2014-04-08 13:25:07 +02:00
Peter Simons 3aed6ef4e9 perlPackages.PackageStashXS: update from 0.26 to 0.28 2014-04-08 13:25:07 +02:00
Peter Simons 5adbf4d447 perlPackages.PackageStash: update from 0.34 to 0.36 2014-04-08 13:25:07 +02:00
Peter Simons fcec9de869 perlPackages.PSGI: update from 1.03 to 1.102 2014-04-08 13:25:07 +02:00
Peter Simons c07679d2ef perlPackages.PPIxRegexp: update from 0.034 to 0.036 2014-04-08 13:25:07 +02:00
Peter Simons ab6accf891 perlPackages.ObjectSignature: update from 1.05 to 1.07 2014-04-08 13:25:07 +02:00
Peter Simons 68dd97208c perlPackages.ObjectInsideOut: update from 3.97 to 3.98 2014-04-08 13:25:07 +02:00
Peter Simons 630586c605 perlPackages.NumberCompare: update from 0.01 to 0.03 2014-04-08 13:25:07 +02:00
Peter Simons 0c5d9983bf perlPackages.NetSSLeay: update from 1.52 to 1.58 2014-04-08 13:25:07 +02:00
Peter Simons 97e5d3c0d0 perlPackages.NetSMTP: update from 1.22 to 1.25 2014-04-08 13:25:07 +02:00
Peter Simons 2a1b8bc26a perlPackages.NetOpenIDConsumer: update from 1.13 to 1.15 2014-04-08 13:25:06 +02:00
Peter Simons d94a1ee167 perlPackages.NetOpenIDCommon: update from 1.14 to 1.18 2014-04-08 13:25:06 +02:00
Peter Simons acf86052dd perlPackages.NetLDAP: update from 0.43 to 0.4001 2014-04-08 13:25:06 +02:00
Peter Simons c168ae1bbf perlPackages.NetHTTP: update from 6.05 to 6.06 2014-04-08 13:25:06 +02:00
Peter Simons 8da8abba86 perlPackages.NetDNS: update from 0.63 to 0.74 2014-04-08 13:25:06 +02:00
Peter Simons 470adc4acf perlPackages.NetAmazonS3Policy: update from 0.1.2 to 0.1.6 2014-04-08 13:25:06 +02:00
Peter Simons 11979f6cfa perlPackages.NetAddrIP: update from 4.071 to 4.072 2014-04-08 13:25:06 +02:00
Peter Simons f4b043b8e0 perlPackages.MooseXTypesURI: update from 0.03 to 0.05 2014-04-08 13:25:06 +02:00
Peter Simons e6b6a0d4fc perlPackages.MooseXTypesStructured: update from 0.28 to 0.30 2014-04-08 13:25:06 +02:00
Peter Simons 1538094756 perlPackages.MooseXTypesStringlike: update from 0.001 to 0.002 2014-04-08 13:25:06 +02:00
Peter Simons cd94d0198f perlPackages.MooseXTypesPerl: update from 0.101341 to 0.101343 2014-04-08 13:25:06 +02:00
Peter Simons 49df464bf4 perlPackages.MooseXTraitsPluggable: update from 0.10 to 0.12 2014-04-08 13:25:06 +02:00
Peter Simons 48cf24ace0 perlPackages.MooseXRoleParameterized: update from 1.00 to 1.02 2014-04-08 13:25:06 +02:00
Peter Simons 6bfd49596c perlPackages.MooseXOneArgNew: update from 0.003 to 0.004 2014-04-08 13:25:06 +02:00
Peter Simons 6678e8e1a3 perlPackages.MooseXNonMoose: update from 0.22 to 0.26 2014-04-08 13:25:06 +02:00
Peter Simons 82457b53b4 perlPackages.MooseXConfigFromFile: update from 0.11 to 0.13 2014-04-08 13:25:05 +02:00
Peter Simons f7a2bc48dd perlPackages.MooseXAliases: update from 0.10 to 0.11 2014-04-08 13:25:05 +02:00
Peter Simons 0e7425ce28 perlPackages.MooseAutobox: update from 0.13 to 0.15 2014-04-08 13:25:05 +02:00
Peter Simons aa1a352064 perlPackages.ModuleRuntime: update from 0.013 to 0.014 2014-04-08 13:25:05 +02:00
Peter Simons c6dc49d29b perlPackages.ModulePluggableFast: update from 0.18 to 0.19 2014-04-08 13:25:05 +02:00
Peter Simons bce3f0f708 perlPackages.ModulePluggable: update from 4.8 to 5.1 2014-04-08 13:25:05 +02:00
Peter Simons f6eb58826f perlPackages.ModulePath: update from 0.09 to 0.13 2014-04-08 13:25:05 +02:00
Peter Simons 7b89b37781 perlPackages.ModuleImplementation: update from 0.06 to 0.07 2014-04-08 13:25:05 +02:00
Peter Simons ea1fcba63c perlPackages.ModuleFind: update from 0.11 to 0.12 2014-04-08 13:25:05 +02:00
Peter Simons 8b8a07ed17 perlPackages.ModuleBuildWithXSpp: update from 0.13 to 0.14 2014-04-08 13:25:05 +02:00
Peter Simons f79624df5a perlPackages.MathPlanePath: update from 101 to 114 2014-04-08 13:25:05 +02:00
Peter Simons 4c217a5094 perlPackages.MailTools: update from 2.04 to 2.13 2014-04-08 13:25:05 +02:00
Peter Simons 96fb4dbb5b perlPackages.MailIMAPClient: update from 2.2.9 to 3.35 2014-04-08 13:25:05 +02:00
Peter Simons 7bc7132ddf perlPackages.LogDispatchouli: update from 2.006 to 2.009 2014-04-08 13:25:05 +02:00
Peter Simons b79bfc7de1 perlPackages.LogDispatchArray: update from 1.002 to 1.003 2014-04-08 13:25:04 +02:00
Peter Simons 21d3c04e80 perlPackages.LogContextual: update from 0.005003 to 0.006003 2014-04-08 13:25:04 +02:00
Peter Simons 70c85b5d7a perlPackages.Log4Perl: update from 1.41 to 1.43 2014-04-08 13:25:04 +02:00
Peter Simons f52121cab0 perlPackages.LockFileSimple: update from 0.207 to 0.208 2014-04-08 13:25:04 +02:00
Peter Simons 7d76f2c4b0 perlPackages.LocaleMaketextSimple: update from 0.18 to 0.21 2014-04-08 13:25:04 +02:00
Peter Simons 25f3995666 perlPackages.LocaleMaketext: update from 1.13 to 1.23 2014-04-08 13:25:04 +02:00
Peter Simons 34e0eb81be perlPackages.LinguaENTagger: update from 0.23 to 0.24 2014-04-08 13:25:04 +02:00
Peter Simons eaf4f0c7c7 perlPackages.LWPxParanoidAgent: update from 1.07 to 1.10 2014-04-08 13:25:04 +02:00
Peter Simons b4c012700f perlPackages.LWPUserAgent: update from 6.04 to 6.05 2014-04-08 13:25:04 +02:00
Peter Simons 02fce7df41 perlPackages.JSONXS: update from 2.33 to 2.34 2014-04-08 13:25:04 +02:00
Peter Simons 67b484af45 perlPackages.IPCRun3: update from 0.046 to 0.048 2014-04-08 13:25:04 +02:00
Peter Simons 798a139bd3 perlPackages.IOTieCombine: update from 1.002 to 1.004 2014-04-08 13:25:04 +02:00
Peter Simons 5a74c9e87a perlPackages.IODigest: update from 0.10 to 0.11 2014-04-08 13:25:04 +02:00
Peter Simons 811474227f perlPackages.IOCaptureOutput: update from 1.1102 to 1.1103 2014-04-08 13:25:04 +02:00
Peter Simons 6d394b5177 perlPackages.IOAll: update from 0.50 to 0.60 2014-04-08 13:25:04 +02:00
Peter Simons 8aef65dc04 perlPackages.HookLexWrap: update from 0.22 to 0.24 2014-04-08 13:25:04 +02:00
Peter Simons aa3278dd1f perlPackages.HashUtilFieldHashCompat: update from 0.03 to 0.07 2014-04-08 13:25:03 +02:00
Peter Simons 771c5e5658 perlPackages.HashMultiValue: update from 0.13 to 0.15 2014-04-08 13:25:03 +02:00
Peter Simons 3dd6683cb2 perlPackages.HashMerge: update from 0.12 to 0.200 2014-04-08 13:25:03 +02:00
Peter Simons b8487aeb80 perlPackages.HTTPParserXS: update from 0.14 to 0.16 2014-04-08 13:25:03 +02:00
Peter Simons 8d185a638b perlPackages.HTTPLite: update from 2.4 to 2.43 2014-04-08 13:25:03 +02:00
Peter Simons dfd408338c perlPackages.HTMLTemplate: update from 2.9 to 2.95 2014-04-08 13:25:03 +02:00
Peter Simons c9e26b0632 perlPackages.HTMLSelectorXPath: update from 0.15 to 0.16 2014-04-08 13:25:03 +02:00
Peter Simons 21cbb9eede perlPackages.HTMLFormHandler: update from 0.40055 to 0.40056 2014-04-08 13:25:03 +02:00
Peter Simons 08be8f66ec perlPackages.Graph: update from 0.94 to 0.96 2014-04-08 13:25:03 +02:00
Peter Simons 223edd8fe4 perlPackages.GoogleProtocolBuffers: update from 0.08 to 0.11 2014-04-08 13:25:03 +02:00
Peter Simons 0799fc8cb2 perlPackages.FreezeThaw: update from 0.43 to 0.5001 2014-04-08 13:25:03 +02:00
Peter Simons 17fd0cc414 perlPackages.ForksSuper: update from 0.67 to 0.72 2014-04-08 13:25:03 +02:00
Peter Simons f964d637f7 perlPackages.FontTTF: update from 0.43 to 0.48 2014-04-08 13:25:03 +02:00
Peter Simons 93e50bec8c perlPackages.FileShareDirInstall: update from 0.04 to 0.08 2014-04-08 13:25:03 +02:00
Peter Simons 70e0d0a921 perlPackages.FileShare: update from 0.02 to 0.03 2014-04-08 13:25:02 +02:00
Peter Simons e297787704 perlPackages.FileChangeNotify: update from 0.23 to 0.24 2014-04-08 13:25:02 +02:00
Peter Simons 19cca58cd4 perlPackages.FatalException: update from 0.05 to 0.0204 2014-04-08 13:25:02 +02:00
Peter Simons 7b13fd4a4e perlPackages.ExtUtilsParseXS: update from 3.22 to 3.24 2014-04-08 13:25:02 +02:00
Peter Simons 3a8fbfda11 perlPackages.ExtUtilsInstallPaths: update from 0.009 to 0.010 2014-04-08 13:25:02 +02:00
Peter Simons ae520cd465 perlPackages.ExtUtilsHelpers: update from 0.021 to 0.022 2014-04-08 13:25:02 +02:00
Peter Simons 05ff444d56 perlPackages.ExtUtilsDepends: update from 0.304 to 0.306 2014-04-08 13:25:02 +02:00
Peter Simons d644332491 perlPackages.ExtUtilsCBuilder: update from 0.280212 to 0.280216 2014-04-08 13:25:02 +02:00
Peter Simons 055cf38d58 perlPackages.ExporterLite: update from 0.02 to 0.04 2014-04-08 13:25:02 +02:00
Peter Simons b602b53964 perlPackages.ExceptionBase: update from 0.25 to 0.2401 2014-04-08 13:25:02 +02:00
Peter Simons 9c90b4faf6 perlPackages.EvalClosure: update from 0.08 to 0.11 2014-04-08 13:25:02 +02:00
Peter Simons d2187ff378 perlPackages.Error: update from 0.17019 to 0.17022 2014-04-08 13:25:02 +02:00
Peter Simons 0e01506bf6 perlPackages.EmailSimple: update from 2.102 to 2.203 2014-04-08 13:25:01 +02:00
Peter Simons 8e5416e01f perlPackages.EmailMessageID: update from 1.402 to 1.404 2014-04-08 13:25:01 +02:00
Peter Simons e5e0ba713b perlPackages.EmailAddress: update from 1.897 to 1.901 2014-04-08 13:25:01 +02:00
Peter Simons 293a26e46a perlPackages.EmailAbstract: update from 3.004 to 3.007 2014-04-08 13:25:01 +02:00
Peter Simons c8e83e4882 perlPackages.DistZillaPluginTestEOL: update from 0.07 to 0.10 2014-04-08 13:25:01 +02:00
Peter Simons 531c1e65c5 perlPackages.DistZillaPluginPodWeaver: update from 3.101642 to 3.102000 2014-04-08 13:25:01 +02:00
Peter Simons c07739c247 perlPackages.DistZillaPluginBundleTestingMania: update from 0.20 to 0.21 2014-04-08 13:25:01 +02:00
Peter Simons adbe515602 perlPackages.DistZilla: update from 4.300036 to 4.300039 2014-04-08 13:25:01 +02:00
Peter Simons b8b23dd843 perlPackages.DigestMD4: update from 1.5 to 1.9 2014-04-08 13:25:01 +02:00
Peter Simons b053b81d4c perlPackages.DevelStackTraceAsHTML: update from 0.11 to 0.14 2014-04-08 13:25:01 +02:00
Peter Simons a0a50476c0 perlPackages.DevelStackTrace: update from 1.30 to 1.31 2014-04-08 13:25:01 +02:00
Peter Simons 22e43904c3 perlPackages.DevelHide: update from 0.0008 to 0.0009 2014-04-08 13:25:01 +02:00
Peter Simons 697b169bd4 perlPackages.DevelGlobalDestruction: update from 0.09 to 0.12 2014-04-08 13:25:01 +02:00
Peter Simons 1531d17512 perlPackages.DevelChecklib: update from 0.98 to 1.01 2014-04-08 13:25:01 +02:00
Peter Simons 5aeb9b3c61 perlPackages.DebugShowStuff: update from 1.14 to 1.16 2014-04-08 13:25:00 +02:00
Peter Simons 55ca4f0135 perlPackages.DateTimeSet: update from 0.31 to 0.3400 2014-04-08 13:25:00 +02:00
Peter Simons de72951544 perlPackages.DateTime: update from 1.07 to 1.08 2014-04-08 13:25:00 +02:00
Peter Simons ebb5c742d7 perlPackages.DateManip: update from 6.42 to 6.43 2014-04-08 13:25:00 +02:00
Peter Simons f9e3f4f4af perlPackages.DataVisitor: update from 0.28 to 0.30 2014-04-08 13:25:00 +02:00
Peter Simons 4594bd017b perlPackages.DataSerializer: update from 0.59 to 0.60 2014-04-08 13:25:00 +02:00
Peter Simons bab9a16e50 perlPackages.version: update from 0.9902 to 0.9908 2014-04-08 13:25:00 +02:00
Peter Simons c7c65daf32 Merge pull request #2167 from ocharles/remove-aeson-lens
Remove haskellPackages.aesonLens
2014-04-08 12:50:30 +02:00
Peter Simons d9332659d2 haskell-Elm: require a recent version of binary 2014-04-08 12:48:22 +02:00
Oliver Charles 1e7c38920d Remove haskellPackages.aesonLens
This doesn't build, has no reverse dependencies, and the lens library
itself now provides this functionality.
2014-04-08 11:44:41 +01:00
Rob Vermaas a4ebaa61e4 Update dd-agent to 4.2.0 2014-04-08 09:27:09 +02:00
Jaka Hudoklin ff836a6f15 pythonPackages: ipdb, use ipythonLight by default 2014-04-08 00:19:33 +02:00
Austin Seipp 4dc15c087a musl: version 1.0.0
NB: This currently doesn't add a working musl-wrapper around musl-gcc to
allow it to work properly (musl has its own dynamic linker as well as
libc too which must be accounted for). But at the moment it builds fine,
and I plan on working more on it in the future. So lets get it
integrated and building on Hydra.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-07 10:31:31 -05:00
Peter Simons a29b90b4c7 haskell-language-javascript: update to version 0.5.12 2014-04-07 17:06:37 +02:00
Austin Seipp 5aa4495cb5 boolector: add version 1.5 and 1.6
There are two versions here because beginning with 1.6.0, Boolector has
a more restrictive, unfree license which disallows commercial use.

As a result, Boolector 1.5 is the default 'boolector' expression.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-07 09:17:05 -05:00
Ricardo M. Correia 807fad571a grsecurity: Update stable and test patches
stable: 3.0-3.2.56-201404012135 -> 3.0-3.2.56-201404062126
test:   3.0-3.13.8-201404011912 -> 3.0-3.13.9-201404062127
2014-04-07 15:31:12 +02:00
Peter Simons 53d7a1c882 haskell-criterion: downgrade to hastache 0.5.1 to fix the build
Closes <https://github.com/NixOS/nixpkgs/pull/2133>.
2014-04-07 11:54:57 +02:00
vi 3d3648f261 Added a derivation for Ozgun's's retry (Haskell.) 2014-04-07 12:15:33 +08:00
Shea Levy 9949d0255e Merge branch 'make-the-kernel-build-repeatable' of git://github.com/alexanderkjeldaas/nixpkgs
Make the kernel build and initrd generation binary repeatable (#2128)
2014-04-06 17:02:16 -04:00
Peter Simons 2a0a12f333 Upgrade hashable to version 1.2.x.
This change in the GHC 7.6.3 profile violates Haskell Platform, but it fixes
many builds that would not succeed otherwise (such as Trifecta). Overriding
hashable locally in an expression is out of question: the package is used
virtually everywhere.
2014-04-06 21:54:45 +02:00
Peter Simons 267a1692f3 haskell-fdo-notify: add version 0.3.1 2014-04-06 21:53:16 +02:00
Austin Seipp 8d3d50191d spiped: version 1.3.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-06 11:07:35 -05:00
Shea Levy 79c9d556e0 Add sproxy-web 2014-04-06 11:10:01 -04:00
Shea Levy 331d234ef6 Add sproxy 2014-04-06 10:54:44 -04:00
Shea Levy 0bab5319cc Merge branch 'pastebinit' of git://github.com/lethalman/nixpkgs
pastebinit: new package
2014-04-06 07:16:46 -04:00
Mathijs Kwik 6249cc729e add haskell-syntactic-1.11 2014-04-06 11:47:47 +02:00
Mathijs Kwik 773ce7aa32 add haskell-tree-view-0.4 2014-04-06 11:47:46 +02:00
Mathijs Kwik cdc4c7039d add haskell-data-hash-0.2.0.0 2014-04-06 11:47:46 +02:00
Mathijs Kwik c01cc1a0e4 add haskell-cheapskate-0.1.0.1 (markdown processor) 2014-04-06 11:47:45 +02:00
Luca Bruno 1653c118bd pastebinit: new package
A software that lets you send anything you want directly to a pastebin from the command line

https://launchpad.net/pastebinit
2014-04-06 11:10:24 +02:00
Shea Levy d35619429a Merge branch 'cache.su' of git://github.com/wkennington/nixpkgs
su: Make the su package a provider of only the su binary

Fixes #1877
2014-04-05 18:49:30 -04:00
Shea Levy add2fafffb Merge branch 'master.nmap' of git://github.com/wkennington/nixpkgs
nmap: Build the non-graphical version by default
2014-04-05 18:40:18 -04:00
William A. Kennington III 28ab3acb58 su: Make the su package a provider of only the su binary
Additionally, provide su with the base system and remove su from the
util-linux package as it is now provided by shadow.
2014-04-05 16:01:52 -05:00
William A. Kennington III 47f0f34fca nmap: Build the non-graphical version by default 2014-04-05 14:58:49 -05:00
Shea Levy bd1a95ee60 Remove superfluous newline 2014-04-05 15:01:05 -04:00
Shea Levy 0fda39ee3e Merge branch 'mtpfs' of git://github.com/qknight/nixpkgs
added mtpfs to mount MTP devices via usb using FUSE
2014-04-05 15:00:38 -04:00
Sander van der Burg dc614aff92 libresample: Add package 2014-04-05 20:54:47 +02:00
Shea Levy ea9c8d6a13 Merge branch 'rippled' of git://github.com/ehmry/nixpkgs
rippled: initial pkg and module expressions

Had to change the rippled uid.

Conflicts:
	nixos/modules/misc/ids.nix
2014-04-05 14:23:29 -04:00
Shea Levy decd2feb0a Merge branch 'pd' of git://github.com/iyzsong/nixpkgs into test-1515
tcl/tk: update to 8.5.15, fix #1479
2014-04-05 14:01:07 -04:00
Jaka Hudoklin 413ebfb246 virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1

[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
  (instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
  virt-manager. Without it:
  GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
  feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-04-05 18:37:05 +02:00
Alexander Kjeldaas f67015cae4 Make initrd and the kernel builds repeatable. 2014-04-05 08:41:06 +02:00
Peter Simons 7b7d06f91e Merge pull request #2123 from jagajaga/haskell_add_pkgs
Haskell add pkgs
2014-04-04 23:52:13 +02:00
Vladimír Čunát 10147beecf Merge branch vcunat@NixOS:p/stdenv (close #1840)
This branch contains a collection of stdenv-changing updates.
There's glibc 2.18 -> .19 bump and many non-intrusive PRs.

The grsecurity branch #1187 got removed at Eelco's request,
see https://github.com/NixOS/nixpkgs/issues/1840#issuecomment-39327023
2014-04-04 21:33:55 +02:00
Domen Kožar 9f96b8e43d Merge pull request #2125 from lethalman/gnome-disk-utility
Gnome disk utility, libpwquality, libdvdread
2014-04-04 19:04:33 +02:00
Bjørn Forsman d2ca851c04 python-autopep8: new package
autopep8 is a tool that automatically formats Python code to conform to
the PEP 8 style guide.

https://pypi.python.org/pypi/autopep8/
2014-04-04 16:48:10 +02:00
Luca Bruno 13f40aea33 libpwquality: factor out from gnome-control-center 2014-04-04 16:14:59 +02:00
Arseniy Seroka ece01ad65f vacuum-graphviz: add pkg 2014-04-04 16:35:44 +04:00
Matej Cotman 7df1ce5088 syncthing: new package and nixos module 2014-04-04 10:46:29 +02:00
Oliver Charles c4339a029e haskellPackages.twitterConduit: New expression
I've had to patch authenticate-oauth to get this working. The patch
comes from a commit that's already in master, so future versions will
have this and it's ok if cabal2nix ends up discarding this information.
2014-04-03 14:25:37 +01:00
Shea Levy 9a396b3840 Merge branch 'haskell-ftphs' of git://github.com/fmap/nixpkgs
Added a derivation for Goerzen's `ftphs`
2014-04-03 05:08:47 -04:00
Evgeny Egorochkin 91dd38ab79 perlPackages.TermReadLineGnu: update from 1.20 to 1.24 2014-04-03 10:42:27 +03:00
Evgeny Egorochkin dd01251657 perlPackages.TestWarn: update from 0.24 to 0.30 2014-04-03 10:40:05 +03:00
vi 5150da8a5c Added a derivation for Goerzen's `ftphs`. 2014-04-03 13:41:36 +08:00
Evgeny Egorochkin 8654b6b51c perlPackages.GD: update from 2.50 to 2.53 2014-04-03 07:36:35 +03:00
Evgeny Egorochkin 7973471c7b perlPackages.IOSocketInet6: update from 2.71 to 2.72 2014-04-03 07:03:26 +03:00
Cillian de Róiste 0119561d99 nodePackages: add react.js and update node-packages-generated.nix 2014-04-02 21:07:30 +02:00
Vladimír Čunát 8146737127 Merge #2090: add new lockdep tool from Linux 3.14 2014-04-02 20:55:30 +02:00
Vladimír Čunát 457fdb3842 texinfo: move ncurses support into texinfoInteractive
This, for example, drops the stdenv dependency on ncurses.
2014-04-02 19:05:56 +02:00
Vladimír Čunát 11d4c257c1 Merge branch glibc-2.19, see #1840 2014-04-02 19:03:49 +02:00
Domen Kožar 80a03f665d Merge branch 'x-updates' 2014-04-02 15:30:52 +02:00
Ricardo M. Correia 52d233af22 grsecurity: Update stable patch from 3.0-3.2.55-201403300851 -> 3.0-3.2.56-201404012135 2014-04-02 15:11:33 +02:00
Ricardo M. Correia 407a6857c6 grsecurity: Update stable and test patches
stable: 3.0-3.2.55-201403252026 -> 3.0-3.2.55-201403300851
test:   3.0-3.13.7-201403252047 -> 3.0-3.13.8-201404011912
2014-04-02 02:16:59 +02:00
Domen Kožar 75fb34eb6d add pythonPackages.gunicorn 2014-04-01 13:44:37 +00:00
Vladimír Čunát 6445ac90ad Merge master into x-updates 2014-04-01 10:49:31 +02:00
Austin Seipp 4202a9315a grsecurity: add myself to maintainer list
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-01 02:59:53 -05:00
Austin Seipp bdff718c5b kernel: add lockdep expression
Lockdep is the kernel's locking validation/debugging tool and has seen
heavy pro-active usage and development. In Linux 3.14, it's now
available directly to userspace for the same purpose. It comes with a
convenient utility to LD_PRELOAD a shared library for validation, or a
user-space API to link to directly.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-01 01:20:46 -05:00
Austin Seipp 9493159017 kernel: remove 3.11 series (EOL)
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-01 00:56:23 -05:00
Shea Levy 304fd16d95 Merge branch 'concurrencykit' of git://github.com/thoughtpolice/nixpkgs
concurrencykit: version 0.4.1
2014-03-31 21:50:42 -04:00
Austin Seipp 92192847fc concurrencykit: version 0.4.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-31 20:49:50 -05:00
Shea Levy 2d4ce25b5b Add linux 3.14 2014-03-31 20:54:47 -04:00
Jaka Hudoklin c3524a8dd6 optipng: use system libpng & zlib, fix cross builds and add support for static builds 2014-04-01 01:43:56 +02:00
Sander van der Burg 073eab850a slasp: Add nodejs package + update other nodejs packages 2014-04-01 00:28:23 +02:00
Peter Simons a20d5da92e Merge pull request #2084 from thoughtpolice/security
Add tools: p0f & hashcat
2014-03-31 23:06:10 +02:00
Peter Simons c6da40c42f haskell-haddock: add version 2.14.1 2014-03-31 21:39:24 +02:00
Peter Simons 305531cbd9 haskell-case-insensitive: add version 1.2.0.0 2014-03-31 21:39:24 +02:00
Peter Simons 98b82062b0 haskell-stm: add version 2.4.3 2014-03-31 21:39:24 +02:00
Peter Simons 372e6f7f83 haskell-conduit-extra: add version 1.0.0 2014-03-31 21:39:24 +02:00
Peter Simons 9109cff1a1 haskell-streaming-commons: add version 0.1.0.2 2014-03-31 21:39:24 +02:00
Peter Simons 4a70bdf5e4 haskell-mtl: update to version 2.1.3.1 2014-03-31 21:39:24 +02:00
Domen Kožar c6ebbd29e5 add v4l2loopback: a kernel module to create V4L2 loopback devices 2014-03-31 20:02:53 +02:00
Austin Seipp 3ef0a880cb p0f: version 3.06b
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-31 11:22:50 -05:00
Austin Seipp cff179f829 hashcat: version 0.47
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-31 10:56:02 -05:00
Vladimir Kirillov f733eb899a remove the unbreak-syntax-highlight hack 2014-03-31 15:52:44 +08:00
Vladimir Kirillov 46ef4f6910 import thumbor and dependencies:
derpconf, backports_ssl_match_hostname_3_4_0_2, thumborPexif,
upgrade tornado to 3.2 (that contains security fixes)
2014-03-31 15:41:55 +08:00
Peter Simons e825c6ac38 haskell-cake3: add version 0.3.0.1 2014-03-30 23:26:21 +02:00
Peter Simons aa86cc8a7c haskell-monadloc: add version 0.7.1 2014-03-30 23:26:11 +02:00
Evgeny Egorochkin d084be9965 perlPackages.HTMLTiny: update from 1.03 to 1.05 2014-03-30 19:29:17 +03:00
Joachim Schiele b894dfffb3 added mtpfs to mount MTP devices via usb using FUSE 2014-03-30 13:00:25 +02:00
Vladimir Kirillov bad9de86b6 buildLocalCabal: do not set LANG/LOCALE_ARCHIVE on non-linux machines 2014-03-30 14:51:36 +08:00
Vladimir Kirillov 9186f0b5dd haskell: import persistent-mysql 1.3.0.2 2014-03-30 14:51:36 +08:00
Vladimir Kirillov 390a4b9164 haskell: import git-date 0.2.1 2014-03-30 14:51:36 +08:00
Rickard Nilsson 61ecf919e1 New package: wal-e
A Postgres WAL-shipping disaster recovery and replication toolkit
2014-03-30 04:34:38 +02:00
Shea Levy fd5d6044c0 Merge branch 'printrun' of git://github.com/ambrop72/nixpkgs
Add Printrun.
2014-03-29 22:19:29 -04:00
宋文武 6e7fe59bb1 uzbl: build with webkitgtk2, cleanup 2014-03-30 09:52:36 +08:00
宋文武 d14b9e9850 get rid of old webkit and webkit_gtk2 packages 2014-03-30 09:02:07 +08:00
Austin Seipp 925cce304f cb0cat is now cb1cat
Submissions for CAESAR are now over, so CBEAMr0 has become CBEAMr1 with
some minor alterations.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-29 18:48:16 -05:00
ambrop7@gmail.com 9a2758f98d Add Printrun. 2014-03-29 23:17:56 +01:00
ambrop7@gmail.com 090ee41e6b gvfs: Fix build with lightWeight=false (close #2068)
Needed for SMB backend.
2014-03-29 21:51:16 +01:00
Emery Hemingway 6c77690b28 rippled: initial pkg and module expressions
rippled is the Ripple P2P payment network reference server
https://ripple.com
2014-03-29 15:31:37 -04:00
宋文武 5668a70a49 widelands: update to build-18 (close #2062)
@vcunat enabled parallelBuilding.
2014-03-29 18:38:46 +01:00
Shea Levy ee65278d54 Merge branch 'add_n-djbdns' of git://github.com/msackman/nixpkgs
Add New-DJBDNS
2014-03-29 13:06:08 -04:00
ambrop7@gmail.com 8b94e22f33 Add gcc-arm-embedded.
These are packages for precompiled ARM microcontroller compilers from
https://launchpad.net/gcc-arm-embedded.

[Bjørn: modify commit message (add paragraph).]
2014-03-29 17:57:45 +01:00
Shea Levy ac68dc6dc6 Merge branch 'minecraft-server' of git://github.com/thoughtpolice/nixpkgs
nixpkgs: add Minecraft Server & a service module
2014-03-29 12:51:49 -04:00
Matthew Sackman be6a16ccbc Add New-DJBDNS 2014-03-29 16:47:23 +00:00
Maxim Ivanov f949a71aac add libmsgpack C/C++ library (close #2059) 2014-03-29 14:38:53 +01:00
Austin Seipp d60af7f34d minecraft-server: version 1.7.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-29 05:31:24 -05:00
Shea Levy f6ca125548 buildLocalCabal: Jailbreak by default.
buildLocalCabal is for local convenience anyway
2014-03-29 05:01:50 -04:00
Michael Raskin 1eb42d9d79 Merge pull request #2048 from echaozh/master
add julia 0.2.1 release
2014-03-28 23:03:04 -07:00
Shea Levy 1d0eb1ae47 Merge branch 'pitivi' of git://github.com/iyzsong/nixpkgs
add pitivi, gstreamer powered non-linear video editor
2014-03-29 00:43:36 -04:00
Shea Levy 4428ed66a2 Merge branch 'webkit' of git://github.com/iyzsong/nixpkgs
webkit: update to 2.4.0, add gtk2 version
2014-03-29 00:41:34 -04:00
Shea Levy a0a135d5ef Merge branch 'z3' of git://github.com/thoughtpolice/nixpkgs
z3: version 4.3.1
2014-03-28 23:54:43 -04:00
Shea Levy 701cb6b099 Merge branch 'nixos/containers/fix1' of git://github.com/offlinehacker/nixpkgs
nixos: fix linux containers (systemd-nspawn, lxc, lxc-libvirt)
2014-03-28 23:39:01 -04:00
Shea Levy f3e9e3dea5 Merge branch 'u/icedtea' of git://github.com/wizeman/nixpkgs
icedtea7, icedtea7_web: New packages
2014-03-28 23:25:25 -04:00
Shea Levy e0341475dc Merge branch 'master' of git://github.com/fmap/nixpkgs
Add Mnemosyne 2.2.1
2014-03-28 23:09:25 -04:00
Shea Levy 8a15cfdaec Merge branch 'mps' of git://github.com/thoughtpolice/nixpkgs
Add mps 1.113.0, fix usage of Sleepycat license
2014-03-28 23:03:20 -04:00
Sander van der Burg 7c2d4be437 deepmerge: Add nodejs package 2014-03-28 15:17:17 +01:00
Zhang Yichao 10511b4712 add julia 0.2.1 release 2014-03-28 18:39:26 +08:00
Thomas Tuegel 5554d9c688 Add zotero 4.0.19 (close #2043)
@vcunat simplied the expression a little.
2014-03-27 22:42:47 +01:00
Vladimír Čunát 576e9289dd Merge master into x-updates 2014-03-27 21:34:06 +01:00
Peter Simons e5725d35c1 haskell-bmp: require a recent version of 'binary' 2014-03-27 13:13:14 +01:00
Peter Simons a46352aad1 haskell-bmp: use version 1.2.5.2 on all platforms 2014-03-27 13:12:54 +01:00
Peter Simons 7f9558896f haskell-tls: update to version 1.2.6 2014-03-27 13:12:51 +01:00
Peter Simons da7fe3fe8a haskell-QuickCheck: update to version 2.7.3 2014-03-27 13:12:51 +01:00
宋文武 2cf7678fc0 webkitgtk: add gtk2 version 2014-03-27 17:16:15 +08:00
宋文武 96d78a2804 pitivi: fix icons 2014-03-27 11:01:24 +08:00
Shea Levy e16595f149 Build all ghcs on hydra 2014-03-26 22:46:05 -04:00
Ricardo M. Correia 897bbc3702 grsecurity: Add myself as a maintainer 2014-03-26 23:07:57 +00:00
Ricardo M. Correia 911f332279 grsecurity: Update stable and test patches
stable: 3.0-3.2.55-201403202347 -> 3.0-3.2.55-201403252026
test:   3.0-3.13.6-201403202349 -> 3.0-3.13.7-201403252047
2014-03-26 23:07:57 +00:00
Cillian de Róiste de3b5b4500 Add simplescreenrecorder: an excellent screen recorder for linux 2014-03-26 23:02:33 +01:00
Ricardo M. Correia 5fbc63be35 icedtea7_web: New package
Java web browser plugin and an implementation of Java Web Start.
2014-03-26 21:07:36 +01:00
Ricardo M. Correia 2d821edb92 npapi-sdk: New package
NPAPI-SDK is a bundle of NPAPI headers by Mozilla.
2014-03-26 21:07:36 +01:00
Ricardo M. Correia 72d457de2f icedtea7: New package
Free Java environment based on OpenJDK 7.0 and the IcedTea project.
2014-03-26 21:07:36 +01:00
_1126 34301c89e1 ncmcp: New expression 2014-03-26 12:15:01 +01:00
Peter Simons 637a571b4e Merge pull request #2029 from ashalkhakov/master
Adding ATS1, updating ATS2 package.
2014-03-26 11:22:04 +01:00
Peter Simons 0cbf18a1c2 Merge pull request #2037 from ambrop72/cura
Add Cura.
2014-03-26 11:11:56 +01:00
Peter Simons aaf414cb09 Merge pull request #2034 from ambrop72/pyopengl
pyopengl: Bump to 3.0.2 and hack the library loading to make it work.
2014-03-26 11:10:48 +01:00
Peter Simons 078f064e9c Merge pull request #2036 from ambrop72/wxpython3
Add wxPython-3.0 with OpenGL support.
2014-03-26 11:10:15 +01:00
Shea Levy 97a733ae57 Merge branch 'submit/sloane' of git://github.com/akc/nixpkgs
Add sloane -- a command line interface to OEIS
2014-03-26 02:42:22 -04:00
Jaka Hudoklin 72d8c4225b Add seyren, an alerting dashboard for Graphite 2014-03-25 23:45:11 +00:00
ambrop7@gmail.com 4121f9d745 python-packages: Add power-1.2. 2014-03-25 23:38:25 +00:00
ambrop7@gmail.com 5f2167627e Add Cura. 2014-03-25 23:17:17 +01:00
ambrop7@gmail.com 93d313c0ed Add wxPython-3.0 with OpenGL support. 2014-03-25 22:35:25 +01:00
ambrop7@gmail.com be46ca4882 pyopengl: Bump to 3.0.2 and hack the library loading to make it work. 2014-03-25 22:20:21 +01:00
vi b5acc84ff3 Mnemosyne: provide capacity to override dependencies at the fidelity of a Python package. 2014-03-26 00:37:14 +08:00
Artyom Shalkhakov 0242b3c6ac Adding ATS1, updating ATS2 package. 2014-03-25 04:53:13 +01:00
Austin Seipp 33e4adc325 mps: version 1.113.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-24 20:32:39 -05:00
Jaka Hudoklin 70a4c7b1df nixos: fix linux containers (systemd-nspawn, lxc, lxc-libvirt)
- Make dhcp work, use dhcpcd without udev in container
- Make login shell work, patch getty to not wait for /dev/tty0
- Make ssh work, sshd/pam do not start session
2014-03-24 23:59:50 +01:00
vi ed7c311876 Include Mnemosyne in nix packages collection. 2014-03-25 02:58:21 +08:00
Shea Levy 84fba566f1 quickcheck-instances: jailbreak to work with newer QuickCheck 2014-03-24 09:48:23 -04:00
Shea Levy 5221cfdda9 Add memcached php module.
Yes, it's different from memcache. Yes, we need both
2014-03-24 09:23:10 -04:00
Shea Levy d4c711ee1d Add memcache php module 2014-03-24 08:37:36 -04:00
Shea Levy d4b28df8a2 Merge branch 'mplayer_vdpau' of git://github.com/matejc/nixpkgs
mplayer: add option config.mplayer.vdpauSupport
2014-03-23 20:54:59 -04:00
Vladimír Čunát 11492176d5 xorg: add "intel-testing" video driver, currently 2.99.911 2014-03-23 22:10:56 +01:00
Matej Cotman 6c9ecc1573 mplayer: add option config.mplayer.vdpauSupport 2014-03-23 17:27:55 +01:00
Emery Hemingway e91daf327d electrum: initial expression
Electrum is a Bitcoin thin-wallet.
https://electrum.org
2014-03-23 11:22:57 -04:00
Shea Levy ae8a8b5deb Add buildLocalCabal helper function 2014-03-22 22:40:35 -04:00
Shea Levy be821ba0bf Merge branch 'f2fs-tools' of git://github.com/ehmry/nixpkgs
f2fs-tools: initial expression
2014-03-22 21:53:07 -04:00