mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
400333b9f8
Signed-off-by: Ricky Elrod <ricky@elrod.me>
14 lines
382 B
Nix
14 lines
382 B
Nix
{ cabal, mtl, unorderedContainers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "monad-unify";
|
|
version = "0.2.2";
|
|
sha256 = "1icl4jaa4vc4lb75m6wv4vjvf8b2xx7aziqhsg2pshizdkfxmgwp";
|
|
buildDepends = [ mtl unorderedContainers ];
|
|
meta = {
|
|
description = "Generic first-order unification";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|