about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/mueval/default.nix
blob: f4b3b4a78edbe29ba72c3e8efab3cfb05e675731 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, Cabal, extensibleExceptions, filepath, hint, mtl, show
, simpleReflect, utf8String
}:

cabal.mkDerivation (self: {
  pname = "mueval";
  version = "0.9.1";
  sha256 = "1f668z7rpdj2m239f5i54v7kd7wsvx3qvvhwyiavf28cmk32mxpq";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    Cabal extensibleExceptions filepath hint mtl show simpleReflect
    utf8String
  ];
  meta = {
    homepage = "http://code.haskell.org/mubot/";
    description = "Safely evaluate pure Haskell expressions";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})