-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
alive2-regehr: 0-unstable-2024-12-25 -> 0-unstable-2025-01-10
rewrites alive2-regehr to be in terms of alive2-aslp, after the aslp features have been merged into regehr's branch
- Loading branch information
1 parent
56dedb7
commit f638b74
Showing
2 changed files
with
10 additions
and
11 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
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 |
---|---|---|
@@ -1,22 +1,19 @@ | ||
{ lib | ||
, alive2 | ||
, alive2-aslp | ||
, stdenv | ||
, llvmPackages | ||
, fetchFromGitHub | ||
}: | ||
|
||
(alive2.override { inherit llvmPackages; }).overrideAttrs (prev: { | ||
(alive2-aslp.override { inherit llvmPackages; }).overrideAttrs (prev: { | ||
pname = "alive2-regehr"; | ||
version = "0-unstable-2024-12-25"; | ||
version = "0-unstable-2025-01-10"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "regehr"; | ||
repo = "alive2"; | ||
rev = "2728ecaafd0572174150652f9910b73b778c2c1e"; | ||
hash = "sha256-OQw0GYw0PNYtb/d9ZQfHVAhuxi1k6IQJs/pY8IHBxac="; | ||
rev = "a5642ad047a69dcf318a8c4396dc68f668b5d0a1"; | ||
hash = "sha256-qW1w/M0pfHwRupd1J+PHe1rzEc+9kkXSuOyHmsBPgrE="; | ||
}; | ||
|
||
patches = [ ]; | ||
CXXFLAGS = (prev.CXXFLAGS or "") | ||
+ lib.optionalString (!stdenv.isDarwin) " -Wno-error=maybe-uninitialized"; | ||
}) |