a540dd5650
The test-suite stanza is incomplete.
19 lines
530 B
Nix
19 lines
530 B
Nix
{ cabal, perl }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "alex";
|
|
version = "2.3.5";
|
|
sha256 = "0lyjiq4lmii2syk6838ln32qvn8c0ljf1ypsggahy748k05x79if";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildTools = [ perl ];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "http://www.haskell.org/alex/";
|
|
description = "Alex is a tool for generating lexical analysers in Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|