Add expression for the Haskell posix-paths library

This commit is contained in:
John Wiegley 2014-04-30 17:19:34 -04:00
parent 0ea20bef3c
commit 3988f438ef
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal, doctest, HUnit, QuickCheck }:
cabal.mkDerivation (self: {
pname = "posix-paths";
version = "0.2.0.3";
sha256 = "16r0sd2m9xzzkrvj6qvc7z3yc8r83kpx724v5wifphcri3scvznv";
testDepends = [ doctest HUnit QuickCheck ];
meta = {
description = "POSIX filepath/directory functionality";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2065,6 +2065,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
libc = pkgs.stdenv.gcc.libc;
};
posixPaths = callPackage ../development/libraries/haskell/posix-paths {};
postgresqlLibpq = callPackage ../development/libraries/haskell/postgresql-libpq {
inherit (pkgs) postgresql;
};