summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unix-compat/0.3.nix
blob: da13c9313ac2b269a892e1aaabd906b01cc0dd07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal }:

cabal.mkDerivation (self: {
  pname = "unix-compat";
  version = "0.3";
  sha256 = "0zgz9s5z2kca37sgnf4dyfdw90435h20bznx485y1ggvh377jan7";
  meta = {
    homepage = "http://github.com/jystic/unix-compat";
    description = "Portable POSIX-compatibility layer";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})