Merge pull request #2457 from jwiegley/posix-paths
Add expression for the Haskell posix-paths library
This commit is contained in:
commit
038645ad97
13
pkgs/development/libraries/haskell/posix-paths/default.nix
Normal file
13
pkgs/development/libraries/haskell/posix-paths/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user