3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
442 B
Nix
15 lines
442 B
Nix
{ cabal, haskellSrcMeta, QuickCheck }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "alex-meta";
|
|
version = "0.3.0.5";
|
|
sha256 = "0f41q5l6z1dcpfx8rxacv4f544zcw7pgvq935mnzzha9fvsxqzk4";
|
|
buildDepends = [ haskellSrcMeta QuickCheck ];
|
|
meta = {
|
|
description = "Quasi-quoter for Alex lexers";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|