mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
15 lines
479 B
Nix
15 lines
479 B
Nix
{ cabal, transformers, transformersCompat }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "distributive";
|
|
version = "0.3";
|
|
sha256 = "0z6vwak2n91vpx9ps9j1pbiw0zlh9jmds84yx1yqssbqx8npi32f";
|
|
buildDepends = [ transformers transformersCompat ];
|
|
meta = {
|
|
homepage = "http://github.com/ekmett/distributive/";
|
|
description = "Haskell 98 Distributive functors -- Dual to Traversable";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|