mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
commit
0de3106a4b
19
pkgs/development/libraries/haskell/haxl/default.nix
Normal file
19
pkgs/development/libraries/haskell/haxl/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ cabal, aeson, filepath, hashable, HUnit, text, time
|
||||
, unorderedContainers, vector
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "haxl";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "1spkcvsy0p3ksxapaz93db09y2jsswr5k6qs6cvxmwxxhbnswv36";
|
||||
buildDepends = [
|
||||
aeson filepath hashable HUnit text time unorderedContainers vector
|
||||
];
|
||||
testDepends = [ aeson hashable HUnit text unorderedContainers ];
|
||||
meta = {
|
||||
homepage = "https://github.com/facebook/Haxl";
|
||||
description = "A Haskell library for efficient, concurrent, and concise data access";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1079,6 +1079,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
haskellForMaths = callPackage ../development/libraries/haskell/HaskellForMaths {};
|
||||
|
||||
haxl = callPackage ../development/libraries/haskell/haxl {};
|
||||
|
||||
haxr = callPackage ../development/libraries/haskell/haxr {};
|
||||
|
||||
haxr_th = callPackage ../development/libraries/haskell/haxr-th {};
|
||||
|
Loading…
Reference in New Issue
Block a user