8a7a2c4e6c
Test/Runner.hs:5:8: Could not find module `Language.Haskell.Exts.Annotated' Use -v to see a list of the files searched for. Setup: Pattern match failure in do expression at Setup.hs:6:5-15
18 lines
569 B
Nix
18 lines
569 B
Nix
{ cabal, cpphs, happy }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haskell-src-exts";
|
|
version = "1.11.1";
|
|
sha256 = "1jqf8l81zw7x5ryf8h2n0b2636yhxkfp3j4ndbqw6hc7i5q581m6";
|
|
buildDepends = [ cpphs ];
|
|
buildTools = [ happy ];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "http://code.haskell.org/haskell-src-exts";
|
|
description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|