-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
A language security tool called Hammer is added #4714
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
23819bf
A language security tool called Hammer is added
d625f62
kickstart travis after upstream patch landed
be9f3af
derp'ed the sha256 for hammer after patch landed
c98ecd1
added git revision to nix hammer pkg to prevent nix build breaks on h…
61d7aae
format changes + meta data changes to hammer package
5d5fa6a
changed version = e7aa734
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| { stdenv, fetchgit, glib, pkgconfig, python, scons, pythonPackages }: | ||
|
|
||
| stdenv.mkDerivation rec { | ||
| name = "hammer-${version}"; | ||
| version = "e7aa734"; | ||
|
|
||
| src = fetchgit { | ||
| url = "git://github.com/UpstandingHackers/hammer"; | ||
| sha256 = "1v8f2a6bgjgdkhbqz751bqjlwb9lmqn5x63xcskwcl2b9n36vqi9"; | ||
| rev = "e7aa73446e23f4af2fce5f88572aae848f212c16"; | ||
| }; | ||
|
|
||
| buildInputs = [ glib pkgconfig python scons ]; | ||
| buildPhase = "scons prefix=$out"; | ||
| installPhase = "scons prefix=$out install"; | ||
|
|
||
| meta = with stdenv.lib; { | ||
| description = "Hammer is a parsing library"; | ||
| longDescription = "Hammer is a parsing library. Like many modern parsing libraries, | ||
| it provides a parser combinator interface for writing grammars | ||
| as inline domain-specific languages, but Hammer also provides a | ||
| variety of parsing backends. It's also bit-oriented rather than | ||
| character-oriented, making it ideal for parsing binary data such | ||
| as images, network packets, audio, and executables."; | ||
|
Member
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.
|
||
| homepage = https://github.com/UpstandingHackers/hammer; | ||
| license = licenses.gpl2; | ||
| platforms = platforms.linux; | ||
| }; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'd prefer to use fetchurl and download https://github.com/UpstandingHackers/hammer/archive/v1.0.0-rc3.tar.gz