-
-
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.
* bobcat: 4.08.03 -> 5.05.00; switch homepage * bisoncpp: init at 6.04.00 Co-authored-by: Sandro <[email protected]>
- Loading branch information
1 parent
823c7b3
commit 83992fd
Showing
3 changed files
with
64 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{stdenv, fetchurl, fetchFromGitLab | ||
, yodl, icmake, flexcpp, bobcat | ||
}: | ||
stdenv.mkDerivation rec { | ||
pname = "bisonc++"; | ||
version = "6.04.00"; | ||
|
||
src = fetchFromGitLab { | ||
domain = "gitlab.com"; | ||
owner = "fbb-git"; | ||
repo = "bisoncpp"; | ||
rev = "6.04.00"; | ||
sha256 = "sha256:0aa9bij4g08ilsk6cgrbgi03vyhqr9fn6j2164sjin93m63212wl"; | ||
}; | ||
|
||
buildInputs = [ bobcat ]; | ||
|
||
nativeBuildInputs = [ yodl icmake flexcpp ]; | ||
|
||
setSourceRoot = '' | ||
sourceRoot="$(echo */bisonc++)" | ||
''; | ||
|
||
gpl = fetchurl { | ||
url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt"; | ||
sha256 = "sha256:0hq6i0dm4420825fdm0lnnppbil6z67ls67n5kgjcd912dszjxw1"; | ||
}; | ||
|
||
postPatch = '' | ||
substituteInPlace INSTALL.im --replace /usr $out | ||
patchShebangs . | ||
for file in $(find documentation -type f); do | ||
substituteInPlace "$file" --replace /usr/share/common-licenses/GPL ${gpl} | ||
substituteInPlace "$file" --replace /usr $out | ||
done | ||
''; | ||
|
||
buildPhase = '' | ||
./build program | ||
./build man | ||
./build manual | ||
''; | ||
|
||
installPhase = '' | ||
./build install x | ||
''; | ||
|
||
meta = with stdenv.lib; { | ||
inherit version; | ||
description = "A parser generator like bison, but it generates C++ code"; | ||
license = licenses.gpl2Plus; | ||
maintainers = with maintainers; [ raskin ]; | ||
platforms = platforms.linux; | ||
homepage = "https://fbb-git.gitlab.io/bisoncpp/"; | ||
}; | ||
} |
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