Merge branch 'haskell-snowball' of git://github.com/hrdinka/nixpkgs

haskell-snowball: add version 1.0.0.1
This commit is contained in:
Shea Levy 2014-03-14 20:08:58 -04:00
commit e742265234
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ cabal, HUnit, QuickCheck, quickcheckInstances, testFrameworkHunit
, testFrameworkQuickcheck2, testFrameworkTh, text, textIcu
}:
cabal.mkDerivation (self: {
pname = "snowball";
version = "1.0.0.1";
doCheck = false;
sha256 = "0fvxzm14ffjqq6n51bi5cmq5yrlggpkbb9rbbw522l6cjgv0apbx";
buildDepends = [ text textIcu ];
testDepends = [
HUnit QuickCheck quickcheckInstances testFrameworkHunit
testFrameworkQuickcheck2 testFrameworkTh text
];
meta = {
homepage = "http://hub.darcs.net/dag/snowball";
description = "Bindings to the Snowball library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2195,6 +2195,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
snapServer = callPackage ../development/libraries/haskell/snap/server.nix {};
snowball = callPackage ../development/libraries/haskell/snowball {};
socks = callPackage ../development/libraries/haskell/socks {};
sparse = callPackage ../development/libraries/haskell/sparse {};