mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
Add haskell-remote.
This commit is contained in:
parent
9786a98261
commit
823f7d012b
18
pkgs/development/libraries/haskell/remote/default.nix
Normal file
18
pkgs/development/libraries/haskell/remote/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ cabal, binary, filepath, mtl, network, pureMD5, stm, syb, time
|
||||
, utf8String
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "remote";
|
||||
version = "0.1.1";
|
||||
sha256 = "14awzhpc21pp4iq53vz4ib81ygxsnlnfppv723zy77z6jja08gf0";
|
||||
buildDepends = [
|
||||
binary filepath mtl network pureMD5 stm syb time utf8String
|
||||
];
|
||||
meta = {
|
||||
description = "Cloud Haskell";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
@ -1233,6 +1233,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
regular = callPackage ../development/libraries/haskell/regular {};
|
||||
|
||||
remote = callPackage ../development/libraries/haskell/remote {};
|
||||
|
||||
repa = callPackage ../development/libraries/haskell/repa {};
|
||||
repaAlgorithms = callPackage ../development/libraries/haskell/repa-algorithms {};
|
||||
repaExamples = callPackage ../development/libraries/haskell/repa-examples {};
|
||||
|
Loading…
Reference in New Issue
Block a user