]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame_incremental - shell.nix
Add maintenance status badge
[github/fretlink/hmacaroons.git] / shell.nix
... / ...
CommitLineData
1{ pkgs ? import <nixpkgs> {}, compiler ? "ghc7102" }:
2let hspkgs = pkgs.haskell.packages.${compiler}.override {
3 overrides = self: super: {
4 this = self.callPackage ./. {};
5 };
6};
7 hsWithTools = pkgs.lib.overrideDerivation hspkgs.this (attrs: with pkgs; {
8 buildInputs = [ /* Other deps */ ] ++ attrs.buildInputs;
9 });
10in
11 hsWithTools.env