nixpkgs/pkgs/development/libraries/haskell/unix-compat/0.2.2.1.nix
Peter Simons 6295090cc6 haskell-unix-compat: added version 0.3
svn path=/nixpkgs/trunk/; revision=28984
2011-09-02 18:24:27 +00:00

18 lines
480 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "unix-compat";
version = "0.2.2.1";
sha256 = "009dg6mxjmdkcmr2d1qq9r3f4qfx4d362lyxj9vvgwrzcdnsgzqi";
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
];
};
})