1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 03:48:57 +00:00
nixpkgs/pkgs/development/libraries/haskell/snowball/default.nix
2014-03-15 00:07:18 +01:00

22 lines
669 B
Nix

{ 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;
};
})