mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Merge pull request #5232 from joachifm/haskell-mvc
haskell-packages: add mvc and mvc-updates
This commit is contained in:
commit
efccab0cf2
15
pkgs/development/libraries/haskell/mvc-updates/default.nix
Normal file
15
pkgs/development/libraries/haskell/mvc-updates/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, async, foldl, mvc }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "mvc-updates";
|
||||
version = "1.2.0";
|
||||
sha256 = "125bwc79qcmwb8dn8yqkrxlbqf3vwdzhjx66c69j2jbrp70061n6";
|
||||
buildDepends = [ async foldl mvc ];
|
||||
meta = {
|
||||
description = "Concurrent and combinable updates";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
20
pkgs/development/libraries/haskell/mvc/default.nix
Normal file
20
pkgs/development/libraries/haskell/mvc/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, async, contravariant, managed, mmorph, pipes
|
||||
, pipesConcurrency, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "mvc";
|
||||
version = "1.0.2";
|
||||
sha256 = "1hah38hzy0d12b3vk7m6wfzx6hbm79zl4a9mx8bk9825c0g9qy0z";
|
||||
buildDepends = [
|
||||
async contravariant managed mmorph pipes pipesConcurrency
|
||||
transformers
|
||||
];
|
||||
meta = {
|
||||
description = "Model-view-controller";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1762,6 +1762,10 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
murmurHash = callPackage ../development/libraries/haskell/murmur-hash {};
|
||||
|
||||
mvc = callPackage ../development/libraries/haskell/mvc {};
|
||||
|
||||
mvcUpdates = callPackage ../development/libraries/haskell/mvc-updates {};
|
||||
|
||||
mwcRandom = callPackage ../development/libraries/haskell/mwc-random {};
|
||||
|
||||
mysql = callPackage ../development/libraries/haskell/mysql {
|
||||
|
Loading…
Reference in New Issue
Block a user