2012-02-14 09:00:37 -08:00
|
|
|
{ cabal, Cabal }:
|
2010-04-15 11:10:42 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 11:10:42 -07:00
|
|
|
pname = "unix-compat";
|
2012-01-06 05:30:08 -08:00
|
|
|
version = "0.3.0.1";
|
|
|
|
sha256 = "09y2iih741l4jpi83c15zap94phfms4mavzg04r9rjgbav0ns2c4";
|
2012-02-14 09:00:37 -08:00
|
|
|
buildDepends = [ Cabal ];
|
2010-04-15 11:10:42 -07:00
|
|
|
meta = {
|
2011-08-07 12:34:08 -07:00
|
|
|
homepage = "http://github.com/jystic/unix-compat";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Portable POSIX-compatibility layer";
|
2011-08-07 12:34:08 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-09 16:00:20 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-04-15 11:10:42 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|