forked from mirrors/nixpkgs
haskell: add minimorph-0.1.4.0 and miniutter-0.4.0
This commit is contained in:
parent
1612d80354
commit
72a16af4b3
14
pkgs/development/libraries/haskell/minimorph/default.nix
Normal file
14
pkgs/development/libraries/haskell/minimorph/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ cabal, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "minimorph";
|
||||
version = "0.1.4.0";
|
||||
sha256 = "16ri9hfriszrgqcm111b1pp5x65s034hrc35kjz5qax32mnc9rn6";
|
||||
buildDepends = [ 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;
|
||||
};
|
||||
})
|
14
pkgs/development/libraries/haskell/miniutter/default.nix
Normal file
14
pkgs/development/libraries/haskell/miniutter/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ cabal, minimorph, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "miniutter";
|
||||
version = "0.4.0";
|
||||
sha256 = "1l275aad8svrqp22jv9s0mmlam7wbdlf6m4m97658rm8ks4j2mbx";
|
||||
buildDepends = [ minimorph text ];
|
||||
meta = {
|
||||
homepage = "https://github.com/Mikolaj/miniutter";
|
||||
description = "Simple English clause creation from arbitrary words";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1161,6 +1161,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
mersenneRandomPure64 = callPackage ../development/libraries/haskell/mersenne-random-pure64 {};
|
||||
|
||||
minimorph = callPackage ../development/libraries/haskell/minimorph {};
|
||||
|
||||
miniutter = callPackage ../development/libraries/haskell/miniutter {};
|
||||
|
||||
mimeMail = callPackage ../development/libraries/haskell/mime-mail {};
|
||||
|
||||
mimeTypes = callPackage ../development/libraries/haskell/mime-types {};
|
||||
|
|
Loading…
Reference in a new issue