dhall-haskell/nix/lens-family-core.nix
Gabriel Gonzalez dc5493d87f
Test build against ghc-8.6 (#669)
This ensures that all of the `dhall-*` libraries build against
GHC 8.6.1, but still generates tarballs using GHC 8.4.3 and
uses GHC 8.4.3 for development
2018-11-03 07:27:12 -07:00

10 lines
347 B
Nix

{ mkDerivation, base, containers, stdenv, transformers }:
mkDerivation {
pname = "lens-family-core";
version = "1.2.3";
sha256 = "914f5f077d7bed8a93866ac696e69c35bb8d0fbe81314236288b057941703901";
libraryHaskellDepends = [ base containers transformers ];
description = "Haskell 98 Lens Families";
license = stdenv.lib.licenses.bsd3;
}