On 16/12/2014 04:58, Carlo Nucera wrote:
> Hi Bruno,
> I don't know how to do that mantaing my ~/.nixpkgs/config.nix, which looks 
> like:
>
> {
>   packageOverrides = pkgs: rec {
>     haskellPackages = pkgs.recurseIntoAttrs (
>       pkgs.haskellPackages.override {
>         extension = self: super:
>           let callPackage = self.callPackage;
>           in {
>             prettify = callPackage
> /home/carlo/code/nix-
> packaging/prettify/default.nix {};
>           };
>       }
>     );
>   };
> }
>
>
> Do you have any suggestion?
Ok if you don't want to put yourself in nixpkgs, you can try this:

packageOverrides = pkgs: {
  ...
  stdenv = pkgs.stdenv // {
    lib.maintainers = pkgs.stdenv.lib.maintainers // {
      yournamehere = "yournamehere";
    };
  };
  ...
}

Not sure if it will work for you.
_______________________________________________
nix-dev mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-dev

Reply via email to