08dfbebbf1
Haddock's are disabled for the singletons library as it can't yet understand some of the extensions that this library uses.
15 lines
484 B
Nix
15 lines
484 B
Nix
{ cabal, mtl, syb }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "th-desugar";
|
|
version = "1.2.1";
|
|
sha256 = "12a8m1vzfbn728psaiqxwngmksrbybci3g7a47z04rjbsjf3cy4v";
|
|
buildDepends = [ mtl syb ];
|
|
meta = {
|
|
homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar";
|
|
description = "Functions to desugar Template Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
};
|
|
})
|