mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{lib, 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";
|
|
hash = "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 lib; {
|
|
description = "Parser generator like bison, but it generates C++ code";
|
|
mainProgram = "bisonc++";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
homepage = "https://fbb-git.gitlab.io/bisoncpp/";
|
|
};
|
|
}
|