Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 6.0% dependent packages on hackage.haskell.org

hackage.haskell.org : purenix

[Index] [Quick Jump] Package maintainers For package maintainers and hackage trustees Candidates PureNix is a Nix backend for PureScript. Sometimes, you find yourself having to write Nix code that's more complicated than what the language was designed for. PureNix allows you to write that code in a fully-featured, strongly-typed language instead, and then compile to Nix. A typical example is parsing of configuration files, like the port of cabal2nix that inspired PureNix. PureNix has full support for all of PureScript's features, including data types, type classes, and calling back into Nix using the FFI. On the organization page for PureNix you will find a number of packages intended to be used with PureNix, including ports of libraries like purescript-prelude. The easiest way to use PureNix is through Spago. Simply set backend = "purenix", make sure purenix is available in the PATH, and build as normal. When you run purenix, manually or through Spago, it will look for the Purescript output directory ./output in the current working directory. It then traverses this directory structure, looks for Purescript's intermediate corefn.json files, transpiles the corefn.json files to the equivalent Nix code, and writes the output Nix code to default.nix. See the Getting Started Guide for more in-depth instructions. PureScript source, Main.purs: Nix FFI file, Main.nix: Generated Nix: There are a couple things to notice here: You can launch a development shell with the command nix develop (as long as you have flakes support enabled in Nix). This puts you in a Nix shell with cabal-install and GHC setup to compile PureNix, as well as other helpful tools like HLint, HLS, PureScript, Spago, etc. From here you should be able to run commands like cabal build in order to build PureNix. PureNix allows you to write code in PureScript, and then compile to Nix. The degree to which you can replace existing Nix code depends on how well you can express that code in PureScript. For some things, that's pretty easy, but there are many things in Nix and nixpkgs that are much harder to provide (useful) types for. As such, PureNix is not a complete typed replacement for Nix. The goal for now is simply to allow you to take code that's tricky to write in an untyped language, and write it in a typed language instead. The ecosystem around PureNix is currently focused on providing PureNix ports of existing PureScript libraries. Over time, we hope to expand in the other direction as well, with libraries that provide typed versions of Nix-only constructs, thereby expanding the amount of Nix you can feasibly replace with PureNix, but there's still a lot to be done. Any help is welcome! PureScript generally assumes that its backends perform strict evaluation, and some degree of memory management. Nix is a lazy language however, and is happy to leak memory. For most use cases this doesn't cause any issues, and in fact the laziness allows you to write more Haskell-like code than you usually would in PureScript. Still, it's good to keep these things in mind: Like in every lazy language, you need to watch out for space leaks caused by accidentally building up large thunks. PureScript does not natively have tools to deal with laziness, like bang patterns or seq, but you can define them yourself by e.g. pulling in builtins.seq through the FFI. Long-running programs may run out of memory due to the lack of garbage collection and tail recursion. If you end up writing long-running programs, like a parser that needs to process very large files, you might have to rewrite it in a way that minimizes recursion and allocation.

Registry - Source - JSON
purl: pkg:hackage/purenix
Keywords: bsd3, library, program, unclassified, hacktoberfest, haskell, nix, purescript, transpiler
License: BSD-3-Clause
Latest release: over 1 year ago
First release: over 2 years ago
Dependent packages: 1
Downloads: 170 total
Stars: 281 on GitHub
Forks: 7 on GitHub
Total Commits: 152
Committers: 3
Average commits per author: 50.667
Development Distribution Score (DDS): 0.342
More commit stats: commits.ecosyste.ms
See more repository details: repos.ecosyste.ms
Last synced: 24 days ago

    Loading...
    Readme
    Loading...