-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35a94ea
commit 1c7fd15
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,32 @@ | ||
{ stdenv, buildDunePackage, fetchFromGitHub, ocplib-endian, cmdliner, afl-persistent | ||
, calendar, fpath, pprint, uutf, uunf, uucp }: | ||
|
||
buildDunePackage rec { | ||
pname = "crowbar"; | ||
version = "0.2"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "stedolan"; | ||
repo = pname; | ||
rev = "v${version}"; | ||
sha256 = "0wjfc9irvirfkic32ivvj6qb7r838w08b0d3vmngigbjpjyc9b14"; | ||
}; | ||
|
||
minimumOCamlVersion = "4.08"; | ||
|
||
# disable xmldiff tests, so we don't need to package unmaintained and legacy pkgs | ||
postPatch = "rm -rf examples/xmldiff"; | ||
|
||
propagatedBuildInputs = [ ocplib-endian cmdliner afl-persistent ]; | ||
checkInputs = [ calendar fpath pprint uutf uunf uucp ]; | ||
# uunf is broken on aarch64 | ||
doCheck = !stdenv.isAarch64; | ||
|
||
meta = with stdenv.lib; { | ||
description = "Property fuzzing for OCaml"; | ||
homepage = "https://github.com/stedolan/crowbar"; | ||
license = licenses.mit; | ||
maintainers = [ maintainers.sternenseemann ]; | ||
}; | ||
} | ||
|
This file contains 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