On Mon, Jan 16, 2012 at 01:06:33AM +0400, Sergey Mironov wrote:
> What should I write to override this setting? Could you please give me an
> example (sorry, my nix-skill is still weak)? Or maybe should we write
> something like this:
> 
>   subversion = callPackage
> ../applications/version-management/subversion/default.nix {
>     neon = pkgs.neon029;
>     ...
>     saslSupport = getConfig [ "subversion" "saslSupport" ] false;
>     ...
>   };

If you write that saslSupport with getConfig, in your ~/.nixpkgs/config.nix,
write:
{
    subversion.saslSupport = true;
}

Otherwise, you'll have to go like:
{ pkgs, ... }: 
{
    packageOverrides = pkgs: {
        subversion = pkgs.subversion.override {
            saslSupport = true;
        };
    };
}
_______________________________________________
nix-dev mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-dev

Reply via email to