dhall-haskell/nix/memory.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

18 lines
611 B
Nix

{ mkDerivation, base, basement, bytestring, deepseq, foundation
, ghc-prim, stdenv
}:
mkDerivation {
pname = "memory";
version = "0.14.18";
sha256 = "f5458d170a291788ac8da896bb44b0cc84021c99dd596c52adf2f7a7f6c03507";
revision = "1";
editedCabalFile = "0h4d0avv8kv3my4rim79lcamv2dyibld7w6ianq46nhwgr0h2lzm";
libraryHaskellDepends = [
base basement bytestring deepseq ghc-prim
];
testHaskellDepends = [ base basement bytestring foundation ];
homepage = "https://github.com/vincenthz/hs-memory";
description = "memory and related abstraction stuff";
license = stdenv.lib.licenses.bsd3;
}