summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/mmap/default.nix
blob: 5861d7d6760320378e59a0016a2d9deaaf1e0638 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal }:

cabal.mkDerivation (self: {
  pname = "mmap";
  version = "0.5.7";
  sha256 = "0f08x9kmv3a03kz5a6dpxr30nks55cs9sp55qpn2jnw31qx6hg6p";
  isLibrary = true;
  isExecutable = true;
  meta = {
    description = "Memory mapped files for POSIX and Windows";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})