-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
haskellPackages.glualint: init at 1.24.3 #233112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| { mkDerivation | ||
| , aeson | ||
| , base | ||
| , bytestring | ||
| , containers | ||
| , deepseq | ||
| , directory | ||
| , effectful | ||
| , fetchFromGitHub | ||
| , filemanip | ||
| , filepath | ||
| , lib | ||
| , MissingH | ||
| , optparse-applicative | ||
| , parsec | ||
| , pretty | ||
| , signal | ||
| , uu-parsinglib | ||
| , uuagc | ||
| , uuagc-cabal | ||
| }: | ||
| mkDerivation rec { | ||
| pname = "glualint"; | ||
| version = "1.24.3"; | ||
|
|
||
| src = fetchFromGitHub { | ||
| owner = "FPtje"; | ||
| repo = "GLuaFixer"; | ||
| rev = version; | ||
| hash = "sha256-FmgQYONm1UciYa4Grmn+y1uVh9RSL90hO2rWusya0C0="; | ||
| }; | ||
|
|
||
| isLibrary = true; | ||
| isExecutable = true; | ||
| libraryToolDepends = [ uuagc uuagc-cabal ]; | ||
| libraryHaskellDepends = [ | ||
| aeson | ||
| base | ||
| bytestring | ||
| containers | ||
| MissingH | ||
| parsec | ||
| pretty | ||
| uu-parsinglib | ||
| uuagc | ||
| uuagc-cabal | ||
| ]; | ||
| executableHaskellDepends = [ | ||
| aeson | ||
| base | ||
| bytestring | ||
| containers | ||
| deepseq | ||
| directory | ||
| effectful | ||
| filemanip | ||
| filepath | ||
| optparse-applicative | ||
| signal | ||
| ]; | ||
|
|
||
| preBuild = '' | ||
| echo "Generating attribute grammar haskell files" | ||
| uuagc --haskellsyntax --data src/GLua/AG/AST.ag | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It appears that the When |
||
| uuagc --haskellsyntax --data --strictdata src/GLua/AG/Token.ag | ||
| uuagc --catas --haskellsyntax --semfuns --wrappers --signatures src/GLua/AG/PrettyPrint.ag | ||
| uuagc --catas --haskellsyntax --semfuns --wrappers --signatures --optimize src/GLuaFixer/AG/LexLint.ag | ||
| uuagc --catas --haskellsyntax --semfuns --wrappers --signatures --optimize src/GLuaFixer/AG/ASTLint.ag | ||
| ''; | ||
|
|
||
| homepage = "https://github.com/FPtje/GLuaFixer"; | ||
| description = "Linter for Garry's mod Lua"; | ||
| license = lib.licenses.lgpl21; | ||
| maintainers = with lib.maintainers; [ ruby0b ]; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo in date.