3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
19 lines
550 B
Nix
19 lines
550 B
Nix
{ cabal, bifunctors, deepseq, liftedBase, monadControl, mtl
|
|
, profunctors, random, semigroups, tagged, time, vectorSpace
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "netwire";
|
|
version = "4.0.7";
|
|
sha256 = "035jz7j19c7n4za9xi8vj6yl9m2b2v6d53mp711gf8609wv0cx0c";
|
|
buildDepends = [
|
|
bifunctors deepseq liftedBase monadControl mtl profunctors random
|
|
semigroups tagged time vectorSpace
|
|
];
|
|
meta = {
|
|
description = "Flexible wire arrows for FRP";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|