-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
haskell: add a callStack2nix function #61067
Conversation
callStack2nix is a function similar to callCabal2nix, but instead of just creating a .nix file for a single Haskell package, it creates a whole overlay based on an Stackage LTS resolver. This makes it very easy to build a Stack-based Haskell project with Nix.
There is a lot to dislike about this approach:
In general, I think that the advantages brought by |
peti, I see that you have removed yourself as a Haskell code-owner. Sorry for pinging you above! |
No problem. You'll probably want to ping @domenkozar, who is making the decisions about the future development of the Haskell infrastructure these days. |
# environment. However, callStack2nix should not be used if you want to | ||
# hack on the PureScript compiler itself. | ||
# | ||
# TODO: Currently this doesn't work for stack.yaml files that have extra-deps |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cdepillabout what is the unfortunate interaction? I'd be interested to using your work but need to address this restriction :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't look at this super deeply, but I think what happens is the following:
stack2nix
calls into thestack
codebase to do a bunch of stuff. Part of this process involvesstack
downloading all of theextra-deps
defined in thestack.yaml
.extra-deps
can be packages that are up on Hackage. They can also be Haskell packages that are specified as URLs, git repos, etc. These packages are downloaded to the.stack-work/downloaded/
directory.stack2nix
then calls into thecabal2nix
codebase to actually create nix derivations for each Haskell package defined in the stackage LTS, as well as all the packages defined inextra-deps
.- For
extra-deps
that can be fetched from Hackage, I thinkcabal2nix
just downloads the .cabal file for the package from Hackage and runs on that. For packages that can't be fetched from Hackage (for instance, Haskell packages that are only available on Github),cabal2nix
downloads the repo using tools likenix-prefetch-git
, and then runs on the .cabal file contained in the repo. However, using prefetchers likenix-prefetch-git
doesn't work when running undernix-build
.
Ideally, I'd like to get this PR merged in, since it does still work in many instances (specifically, for any stack project that doesn't contain Git repos as extra-deps
).
After that, I'd like to send a PR to the stack2nix
repo fixing it up so that it doesn't cause cabal2nix
to try to call tools like nix-prefetch-git
. I think that this can be done by calling cabal2nix
on the copy of the repo downloaded to .stack-work/downloaded/
, instead of passing the URL of the repo to cabal2nix
as done currently.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a better way is to add support to all those prefetchers not to use nix-store --add
as populating nix store isn't really needed.
I'm not entirely sure to merge this before that's done, as it will give a lot of failed builds and bug reports. I do see it brings value to you though, I'm a bit undecisive to be honest.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a better way is to add support to all those prefetchers not to use nix-store --add as populating nix store isn't really needed.
I don't know if this change would be accepted to those prefetchers, since putting stuff into /nix/store
is basically why they exist.
However, I think you're on the right track. It might be a good idea to open up an issue against cabal2nix
that stops it from using the prefetchers, and instead just downloads things directly with tools like git
. There is no reason for it to need to use the prefetchers, aside from the fact that the prefetchers make it easy to calculate the sha256 hash. Although I don't know how easy it would be to get this change into cabal2nix
. It may be simpler to just work around it in stack2nix
.
I'm not entirely sure to merge this before that's done, as it will give a lot of failed builds and bug reports.
Yeah, I think I agree with you here. I think we need to determine whether we value having this (somewhat?) useful function in nixpkgs, even though we know it won't work for some people, or whether we value reducing bug reports.
When working on this PR, I searched for Haskell repos online I could test it on, and I actually couldn't find even one that used non-Hackage extra-deps
(granted, I only searched for about 5 minutes). To me, this pushes it over the line of usefulness, so I'm slightly in favor of merging it in.
But I definitely agree that it would be ideal to have it working fully in all cases before merging it in.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if this change would be accepted to those prefetchers, since putting stuff into /nix/store is basically why they exist.
Maybe we could have "hash generators" that prefetchers would use, but I'm not entirely sure that it's worth the effort than just adding something like --no-store-add
toggle to existing prefetchers.
I think we need to determine whether we value having this (somewhat?) useful function in nixpkgs
Maybe with revised documentation that clearly states the limitations (I had to ask a question why this TODO means), it would add value while documenting where it won't work. Bonus would be actually parsing extra-deps
and check if it uses anything else than cabal package and fail with a good error. But then energy is better spent just getting fetchers to be more generic :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we could have "hash generators" that prefetchers would use, but I'm not entirely sure that it's worth the effort than just adding something like --no-store-add toggle to existing prefetchers.
I created an issue about either having a hash generator, or adding a --no-store-add
flag to the nix-prefetch-url
command:
I haven't updated the documentation yet on this PR, but I will let you know when I do.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@domenkozar I just added a commit that changes the documentation to explain in more detail when callStack2nix
cannot be used currently:
I think PR should now be ready for a final review and merge.
One passing comment on names: the name of all these functions follow the same [call]Foo2nix convention, but they produce very different things. Some produce .nix files, some produce whole packages. Plus, the call* variants often do very different things than the tool they call. It's impossible to keep them straight. I'm not sure there's anything to be done about it in this issue, but since I was in the neighborhood, I thought I'd throw it out there. |
@chreekat I definitely agree with you. The If you have any suggestions on how better name the two functions I've added here (
|
I think this is too hacky to really end up in nixpkgs. Also since stack2nix is not really being maintained, it doesn't make sense to ever merge this. |
callStack2nix
is a function similar tocallCabal2nix
, but instead of just creating a .nix file for a single Haskell package, it creates a whole overlay based on an Stackage LTS resolver.This makes it very easy to build a Stack-based Haskell project with Nix.
callStack2nix
uses thestack2nix
tool to produce a.nix
file as output. You can see an example of what one of these files look like in thestack2nix
repo:https://raw.githubusercontent.com/input-output-hk/stack2nix/1143ceb8b395478d4e5bc8d2b0b0dee19e2f140a/stack2nix.nix
There is another function,
callStack2nixPkgSet
, that actually does the import-from-derivation so that the package set produced fromcallStack2nix
is usable.There is an example in the documentation, but here is a another example:
This example demonstrates using
callStack2nixPkgSet
to easily build the intero tool.Motivation for this change
I wanted an easy way to build a stack-based Haskell project with nix.
Every once in a while it comes up on the issue tracker or IRC that someone wants an easy way to build a Stack-based Haskell project with nix, and there is currently no way to do this. I think it would be nice to have a short-and-sweet method for doing this in nixpkgs.
There are a few alternatives (like using
stack2nix
by hand to generate a package set, usinghaskell.nix
, etc), but they all require more work and additional understanding to use.Pinging @peti. I opened this as a PR against
master
, because it doesn't really affect any of the other Haskell stuff, but I can always rebase it against thehaskell-updates
branch if this is easier.Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)