Skip to content

haskell-primitive/primitive-overlay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 

Repository files navigation

A nixpkgs overlay for the haskell-primitive ecosystem.

An example where you can enter a shell suitable for hacking on vector with the overlay:

# shell.nix

let
  pkgs = import <nixpkgs> {};
  overrides = import (pkgs.fetchFromGitHub {
    owner = "haskell-primitive";
    repo = "primitive-overlay";
    rev = "...";
    sha256 = "...";
  }) { hlib = pkgs.haskell.lib; fetchFromGitHub = pkgs.fetchFromGitHub };
  hPkgs = pkgs.haskell.packages.ghc865.override { inherit overrides; };
in hPkgs.shellFor {
  packages = ps: with ps; [ vector ];
}

About

nixpkgs overlay for the haskell-primitive ecosystem.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages