summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/minimorph/default.nix
blob: 06dcfaa11390e469bc7cb72f7a3f0856fa6df4ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, HUnit, testFramework, testFrameworkHunit, text }:

cabal.mkDerivation (self: {
  pname = "minimorph";
  version = "0.1.4.0";
  sha256 = "16ri9hfriszrgqcm111b1pp5x65s034hrc35kjz5qax32mnc9rn6";
  buildDepends = [ text ];
  testDepends = [ HUnit testFramework testFrameworkHunit text ];
  meta = {
    homepage = "http://darcsden.com/kowey/minimorph";
    description = "English spelling functions with an emphasis on simplicity";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})