mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
New Haskell library: haskell-acid-state
This commit is contained in:
parent
8a3f6e8e76
commit
6e8404a7cb
21
pkgs/development/libraries/haskell/acid-state/default.nix
Normal file
21
pkgs/development/libraries/haskell/acid-state/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ cabal, cereal, safecopy, stm, extensibleExceptions, mtl, network
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "acid-state";
|
||||
version = "0.8.3";
|
||||
sha256 = "1n7vafw3jz7kmlp5jqn1wv0ip2rcbyfx0cdi2m1a2lvpi6dh97gc";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
cereal safecopy stm extensibleExceptions mtl network
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://acid-state.seize.it/";
|
||||
description = "Add ACID guarantees to any serializable Haskell data structure.";
|
||||
license = self.stdenv.lib.licenses.publicDomain;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
];
|
||||
};
|
||||
})
|
@ -440,6 +440,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
# Haskell libraries.
|
||||
|
||||
acidState = callPackage ../development/libraries/haskell/acid-state {};
|
||||
|
||||
Agda = callPackage ../development/libraries/haskell/Agda {};
|
||||
|
||||
accelerate = callPackage ../development/libraries/haskell/accelerate {};
|
||||
|
Loading…
Reference in New Issue
Block a user