pathtype: added initial version 0.5.2

svn path=/nixpkgs/trunk/; revision=26471
This commit is contained in:
Peter Simons 2011-03-23 15:57:58 +00:00
parent 789f14c0b7
commit 2e24a92971
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{cabal, QuickCheck2}:
cabal.mkDerivation (self : {
pname = "pathtype";
version = "0.5.2";
sha256 = "0rbmq6kzz2l07q9a5k888scpn62hnw2hmzz4ysprhfgdnn5b2cvi";
propagatedBuildInputs = [QuickCheck2];
meta = {
license = "BSD";
description = "Type-safe file path manipulations";
maintainer = [self.stdenv.lib.maintainers.simons];
};
})

View file

@ -672,6 +672,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
parsimony = callPackage ../development/libraries/haskell/parsimony {};
pathtype = callPackage ../development/libraries/haskell/pathtype {};
pcreLight = callPackage ../development/libraries/haskell/pcre-light {
inherit (pkgs) pcre;
};