mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
15 lines
487 B
Nix
15 lines
487 B
Nix
{ cabal, monoidExtras, newtype, semigroups }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "dual-tree";
|
|
version = "0.1.0.2";
|
|
sha256 = "0ys50m8yjksxi33qyk6ql4ldpdzb0fvxqvywi3y46xi16w5yrkb0";
|
|
buildDepends = [ monoidExtras newtype semigroups ];
|
|
meta = {
|
|
description = "Rose trees with cached and accumulating monoidal annotations";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
|
};
|
|
})
|