nixpkgs/pkgs
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
..
applications idea 13.1.1 -> 13.1.2 2014-05-05 21:30:25 +02:00
build-support debian: Update to 7.5 2014-05-03 10:55:26 -05:00
data tzdata: use symlinks instead of hardlinks 2014-04-29 16:25:10 +02:00
desktops xfce: fix typo introduced in recent commit (s/gtk/gtk3/) 2014-04-29 19:13:43 +02:00
development haskell-cabal-bounds: update to version 0.5 2014-05-05 10:46:40 +02:00
games tibia: version 10.39 2014-05-02 20:38:42 +02:00
misc mate-themes: update from 1.6.2 to 1.6.3 2014-05-02 21:31:05 +02:00
os-specific systemd-journal-flush: Require /var/log/journal rather than all filesystems 2014-05-05 16:47:43 +02:00
servers rethinkdb: upgrade to 1.12.4 2014-05-05 07:32:37 +02:00
shells
stdenv s/config.allowUnfree = true/allowUnfree = true/ 2014-05-03 15:13:01 +02:00
test
tools cabal-install: update to version 1.20.0.1 2014-05-05 10:46:40 +02:00
top-level buildLocalCabal: allow cabalDrvArgs in buildLocalCabalWithArgs 2014-05-06 11:00:48 +03:00